- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 11 for month (0.06 sec)
-
docs/en/docs/fastapi-people.md
/// You can see the **FastAPI Experts** for: * [Last Month](#fastapi-experts-last-month) 🤓 * [3 Months](#fastapi-experts-3-months) 😎 * [6 Months](#fastapi-experts-6-months) 🧐 * [1 Year](#fastapi-experts-1-year) 🧑🔬 * [**All Time**](#fastapi-experts-all-time) 🧙 ### FastAPI Experts - Last Month
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 9.7K bytes - Viewed (0) -
docs/en/docs/management-tasks.md
* Feel free to comment in the PR to ask for more information, to suggest changes, etc. * Once you think the PR is ready, move it in the internal GitHub project for me to review it. ## FastAPI People PRs Every month, a GitHub Action updates the FastAPI People data. Those PRs look like this one: <a href="https://github.com/fastapi/fastapi/pull/11669" class="external-link" target="_blank">👥 Update FastAPI People</a>.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Aug 16 21:56:33 UTC 2024 - 14.2K bytes - Viewed (0) -
docs/en/docs/history-design-future.md
For example, it was clear that ideally it should be based on standard Python type hints. Also, the best approach was to use already existing standards. So, before even starting to code **FastAPI**, I spent several months studying the specs for OpenAPI, JSON Schema, OAuth2, etc. Understanding their relationship, overlap, and differences. ## Design
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Jul 29 23:35:07 UTC 2024 - 4.1K bytes - Viewed (0) -
docs/en/docs/release-notes.md
* ⬆ Bump dawidd6/action-download-artifact from 3.0.0 to 3.1.4. PR [#11310](https://github.com/tiangolo/fastapi/pull/11310) by [@dependabot[bot]](https://github.com/apps/dependabot). * ♻️ Refactor computing FastAPI People, include 3 months, 6 months, 1 year, based on comment date, not discussion date. PR [#11304](https://github.com/tiangolo/fastapi/pull/11304) by [@tiangolo](https://github.com/tiangolo).
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Nov 01 11:25:57 UTC 2024 - 460.3K bytes - Viewed (0) -
docs/pt/docs/advanced/dataclasses.md
/// info | Informação Lembre-se de que dataclasses não podem fazer tudo o que os modelos Pydantic podem fazer. Então, você ainda pode precisar usar modelos Pydantic. Mas se você tem um monte de dataclasses por aí, este é um truque legal para usá-las para alimentar uma API web usando FastAPI. 🤓 /// ## Dataclasses em `response_model` Você também pode usar `dataclasses` no parâmetro `response_model`:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Oct 22 17:33:53 UTC 2024 - 4.4K bytes - Viewed (0) -
docs/en/docs/deployment/https.md
It is a project from the Linux Foundation. It provides **HTTPS certificates for free**, in an automated way. These certificates use all the standard cryptographic security, and are short-lived (about 3 months), so the **security is actually better** because of their reduced lifespan. The domains are securely verified and the certificates are generated automatically. This also allows automating the renewal of these certificates.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 12K bytes - Viewed (0) -
docs/pt/docs/async.md
Então, para equilibrar tudo, imagine a seguinte historinha: > Você tem que limpar uma grande casa suja. *Sim, essa é toda a história*. --- Não há espera em lugar algum, apenas um monte de trabalho para ser feito, em múltiplos cômodos da casa.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 22.2K bytes - Viewed (0) -
docs/pt/docs/advanced/sub-applications.md
Essa sub-aplicação é apenas outra aplicação FastAPI padrão, mas esta é a que será "montada": ```Python hl_lines="11 14-16" {!../../docs_src/sub_applications/tutorial001.py!} ``` ### Monte a sub-aplicação Na sua aplicação de nível superior, `app`, monte a sub-aplicação, `subapi`. Neste caso, ela será montada no caminho `/subapi`: ```Python hl_lines="11 19" {!../../docs_src/sub_applications/tutorial001.py!} ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 3.2K bytes - Viewed (0) -
docs/pt/docs/how-to/custom-docs-ui-assets.md
│ ├── __init__.py │ ├── main.py └── static ├── redoc.standalone.js ├── swagger-ui-bundle.js └── swagger-ui.css ``` ### Prover os arquivos estáticos * Importe `StaticFiles`. * "Monte" a instância `StaticFiles()` em um caminho específico. ```Python hl_lines="7 11" {!../../docs_src/custom_docs_ui/tutorial002.py!} ``` ### Teste os arquivos estáticos
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Oct 18 12:02:35 UTC 2024 - 8.4K bytes - Viewed (0) -
docs/pt/docs/tutorial/static-files.md
# Arquivos Estáticos Você pode servir arquivos estáticos automaticamente de um diretório usando `StaticFiles`. ## Use `StaticFiles` * Importe `StaticFiles`. * "Monte" uma instância de `StaticFiles()` em um caminho específico. ```Python hl_lines="2 6" {!../../docs_src/static_files/tutorial001.py!} ``` /// note | "Detalhes técnicos" Você também pode usar `from starlette.staticfiles import StaticFiles`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 1.7K bytes - Viewed (0)