pythonweb2

Results 14 comments of pythonweb2

@iudeen your example is not the same, unfortunately. The OpenAPI document generated is different, and this would not support recursive Pydantic models, nor would it support Pydantic custom validators. The...

Finally found the issue here, I opened this [discussion](https://github.com/tiangolo/fastapi/discussions/10481) with the same issue.

@tiangolo from what I can see, this doesn't seem like a new feature, since the schema generation with Pydantic v2 is not the same as v1, and is not correct...

Nginx would be the preferred method to stream content like videos, using features like X-Accel-Redirect (sometimes known as X-SendFile) if authentication is needed. Is there any reason why you would...

My use case in particular is a Django application. In some cases, it may be desired to package a django app, but in most cases, the root project will never...

Yeah I'm not quite sure how it got into this state, but this is what was happening: ``` PS> Get-Command uvx CommandType Name Version Source ----------- ---- ------- ------ Application...

Well that is less painful of a workaround than I was expecting. I was thinking I would need to export the dependencies, then install them with `uv pip install`.

My apologies, I didn't quite understand. Are you saying that running `uv sync --frozen --inexact` won't install the packages that are in the lockfile into the project venv?

Ok, that is more clear now. Yes I think having something like `--only-install-package` would be nice, that way I could add the `no-manylinux` package to my dependencies, and just run...