Dev Mukherjee

Results 24 comments of Dev Mukherjee

@tolgap I added some thoughts to this [ticket](https://github.com/ferdikoomen/openapi-typescript-codegen/issues/1262#issuecomment-1251982905) ticket, we use Python and achieved this by transforming the output in the OpenAPI schema on the server. A detailed description of...

We use Python on the server which uses `snake_case` and following standards we like `JSON` responses to be in `camelCase`, turns out that this isn't the responsibility of the api...

Not sure if the `openapi` client can ignore certificate validation, we have used tools like `curl` to download the schema to a file and then use the generator to process...

@0anton I came across this ticket while researching how to do this in `gunicorn` and passing `--root-path=/api` as so works for `uvicorn` here's an excerpt from our `docker-compose` file: ```...

@spawn-guy @dvarrazzo have you guys managed to work around this at all? I am in a fix where I migrated our new stack with SQLAlchemy and FastAPI and everything else...

> > @devraj we are successfully using https://github.com/kai3341/celery-pool-asyncio for a few years now. not with `sqlalchemy` but with raw `asyncpg`/`cassandra` and `fastapi` > > here is minimal example repo (not...

To be able to use `Enum` instead of `tuples` for `Choice` values, i.e define it as such ``` from enum import Enum, unique @unique class ConfigFormat(Enum): yaml = 0 json...

@GusBeare I've been experiencing this while integrating hooks on a Firebase project. The pattern is almost the same for my use case as well, a few `500` and then `200`,...

Hey all, I am seeing this to be the case in pydantic `2.1.1` installed with `fastapi` version `0.101.0`, wondering if this was resolved when using pydantic with fastapi. Thank you.

@hramezani thank you for responding to me, I think I found where I am coming unstuck. I am using `pydantic` to serialise SQLALchemy models. My `model_config` looks like so: ```python...