- Sort Score
- Num 10 results
- Language All
Results 631 - 640 of 705 for imagem (0.04 seconds)
-
docs/es/docs/tutorial/security/first-steps.md
``` </div> ## Revisa { #check-it } Ve a la documentación interactiva en: [http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs). Verás algo así: <img src="/img/tutorial/security/image01.png"> /// check | ¡Botón de autorización! Ya tienes un nuevo y brillante botón de "Authorize". Y tu *path operation* tiene un pequeño candado en la esquina superior derecha que puedes pulsar. ///Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 8.8K bytes - Click Count (0) -
docs/en/docs/tutorial/dependencies/index.md
So, the interactive docs will have all the information from these dependencies too: <img src="/img/tutorial/dependencies/image01.png"> ## Simple usage { #simple-usage }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 9.5K bytes - Click Count (0) -
docs/en/docs/tutorial/path-params.md
## Documentation { #documentation } And when you open your browser at [http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs), you will see an automatic, interactive, API documentation like: <img src="/img/tutorial/path-params/image01.png"> /// check Again, just with that same Python type declaration, **FastAPI** gives you automatic, interactive documentation (integrating Swagger UI). Notice that the path parameter is declared to be an integer.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 8.8K bytes - Click Count (0) -
docs/en/docs/tutorial/schema-extra-example.md
### Example in the docs UI { #example-in-the-docs-ui } With any of the methods above it would look like this in the `/docs`: <img src="/img/tutorial/body-fields/image01.png"> ### `Body` with multiple `examples` { #body-with-multiple-examples } You can of course also pass multiple `examples`: {* ../../docs_src/schema_extra_example/tutorial004_an_py310.py hl[23:38] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 8.7K bytes - Click Count (0) -
docs/ru/docs/advanced/generate-clients.md
<img src="/img/tutorial/generate-clients/image02.png"> Вы также получите автозавершение для отправляемой полезной нагрузки: <img src="/img/tutorial/generate-clients/image03.png"> /// tip | Совет Обратите внимание на автозавершение для `name` и `price`, это было определено в приложении FastAPI, в модели `Item`. ///
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 15.5K bytes - Click Count (0) -
docs/pt/docs/tutorial/security/first-steps.md
``` </div> ## Verifique-o { #check-it } Vá até a documentação interativa em: [http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs). Você verá algo deste tipo: <img src="/img/tutorial/security/image01.png"> /// check | Botão Autorizar! Você já tem um novo botão 'Authorize'. E sua operação de rota tem um pequeno cadeado no canto superior direito em que você pode clicar. ///Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 8.7K bytes - Click Count (0) -
docs/tr/docs/advanced/custom-response.md
Ama `response_class` içinde `HTMLResponse` da verdiğiniz için **FastAPI**, bunu OpenAPI’de ve interaktif dokümanlarda `text/html` ile HTML olarak nasıl dokümante edeceğini bilir: <img src="/img/tutorial/custom-response/image01.png"> ## Mevcut Response'lar { #available-responses } Mevcut response'lardan bazıları aşağıdadır. Unutmayın: `Response` ile başka herhangi bir şeyi döndürebilir, hatta özel bir alt sınıf da oluşturabilirsiniz.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 11.9K bytes - Click Count (0) -
scripts/doc_parsing_utils.py
HEADER_LINE_RE = re.compile(r"^(#{1,6}) (.+?)(?:\s*\{\s*(#.*)\s*\})?\s*$") TIANGOLO_COM = "https://fastapi.tiangolo.com" ASSETS_URL_PREFIXES = ("/img/", "/css/", "/js/") MARKDOWN_LINK_RE = re.compile( r"(?<!\\)(?<!\!)" # not an image ![...] and not escaped \[...] r"\[(?P<text>.*?)\]" # link text (non-greedy) r"\(" r"(?P<url>[^)\s]+)" # url (no spaces and `)`) r'(?:\s+["\'](?P<title>.*?)["\'])?' # optional title in "" or '' r"\)"
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:37:41 GMT 2026 - 23.5K bytes - Click Count (0) -
CHANGELOG.md
attempt multiple TLS handshakes for the same call concurrently. * Fix: Don't crash loading the public suffix database in GraalVM native images. The function `HttpUrl.topPrivateDomain()` uses a resource file to identify private domains, but we didn't include this file on GraalVM. ## Version 5.0.0-alpha.4 _2022-02-01_
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Feb 15 11:57:47 GMT 2026 - 36.2K bytes - Click Count (2) -
docs/ko/docs/tutorial/dependencies/classes-as-dependencies.md
...다음과 같이요: {* ../../docs_src/dependencies/tutorial003_an_py310.py hl[19] *} 하지만 타입을 선언하는 것을 권장합니다. 그러면 에디터가 매개변수 `commons`에 무엇이 전달되는지 알 수 있고, 코드 완성, 타입 체크 등에서 도움을 받을 수 있습니다: <img src="/img/tutorial/dependencies/image02.png"> ## 단축 { #shortcut } 하지만 `CommonQueryParams`를 두 번 작성하는 코드 반복이 있다는 것을 볼 수 있습니다: //// tab | Python 3.10+ ```Python commons: Annotated[CommonQueryParams, Depends(CommonQueryParams)] ```Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:57:01 GMT 2026 - 8K bytes - Click Count (0)