fastapi icon indicating copy to clipboard operation
fastapi copied to clipboard

FastAPI framework, high performance, easy to learn, fast to code, ready for production

Results 724 fastapi issues
Sort by recently updated
recently updated
newest added

This PR translates tutorial/sql-databases.md in Korean. related: #2017

lang-all
awaiting-review
lang-ko

Test complete related: #2017

lang-all
awaiting-review
lang-ko

- Add Korean translation for docs/ko/docs/tutorial/security/first-steps.md - Related [FEATURE] Korean translations https://github.com/tiangolo/fastapi/issues/2017

lang-all
awaiting-review
lang-ko

- Add Korean translation for docs/ko/docs/tutorial/security/index.md - Related [FEATURE] Korean translations https://github.com/tiangolo/fastapi/issues/2017

lang-all
awaiting-review
lang-ko

Traducción al español del archivo Create body.md, quizás sea útil. Sé que ya está en curso la traducción y quizás esto es redundante. También sé que debe haber unos parámetros...

lang-all
lang-es
awaiting-review

Support the `schema_generator` argument to allow users to utilize their own custom implementations.

refactor

Description: Update documentation for deprecated on_startup and on_shutdown parameters. Details: This PR addresses the deprecation of the `on_startup` and `on_shutdown` parameters in the annotated type within FastAPI and APIRouter. The...

p4

### Discussed in https://github.com/tiangolo/fastapi/discussions/11250 Originally posted by **ThirVondukr** March 5, 2024 ### First Check - [X] I added a very descriptive title here. - [X] I used the GitHub search...

question

I consistently changed the status code in docs_src/app_testing/ from 400 to 409. Previously, it was inconsistently set to 400 in some places and 409 in others. I believe that 409...

docs
p3

## Fix issues with `Optional` and `Union` for `list, set, tuple, etc...` in `Form`: ```python3 a: Optional[list[int]] = Form(None) b: Union[list[int], list[float]] = Form(None) ``` which lead to a validation...

bug
p2