riziles
riziles
I got MDsveX *sort of* functional. Committed all my stuff here: https://github.com/riziles/presveltation01. It's just a clone of this repo. I tried scaffolding from scratch, but the process was arduous. A...
Figured out the Typography issues! Also turned off adapter static to speed things up.
Here is my real hacky workaround (no idea if it is right): ```python import pandas as pd import pandera as pa from pandera.typing import DataFrame as _DataFrame, Series from pydantic_core...
@ragrawal , you're welcome to take a swing at figuring out why some tests are failing. I don't have the bandwidth to work on this right now.
@ragrawal , This works: ```python import pandas as pd import pandera as pa from pandera.typing import DataFrame as DataFrame, Series from pydantic import BaseModel, WithJsonSchema from typing import Annotated from...
...if you specify a `to_format` in your Panera config then you can output a dataframe, too: ```python import pandas as pd import pandera as pa from pandera.typing import DataFrame as...
... also, you can just use `Annotated` directly with FastAPI. You don't need to nest it in a Pydantic object: ```python import pandas as pd import pandera as pa from...
@ragrawal , I'd recommend creating your own custom Pydantic class to read in whatever format you want if you don't want to use Pandera's default config. For example, something like...
@ragrawal , can we close this issue?
Wait a second. Just realizing that I opened this issue. I'm closing it as resolved because this project is awesome and @cosmicBboy probably has better things to work on.