- Sort Score
- Num 10 results
- Language All
Results 521 - 530 of 588 for imagem (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
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) -
docs/es/docs/advanced/generate-clients.md
Ahora puedes importar y usar el código del cliente. Podría verse así, nota que tienes autocompletado para los métodos: <img src="/img/tutorial/generate-clients/image02.png"> También obtendrás autocompletado para el payload a enviar: <img src="/img/tutorial/generate-clients/image03.png"> /// tip | Consejo Nota el autocompletado para `name` y `price`, que fue definido en la aplicación de FastAPI, en el modelo `Item`. ///
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 10.4K bytes - Click Count (0) -
docs/ko/docs/tutorial/body.md
<img src="/img/tutorial/body/image01.png"> 이를 필요로 하는 각각의 *경로 처리* 내부의 API 문서에도 사용됩니다: <img src="/img/tutorial/body/image02.png"> ## 편집기 지원 { #editor-support } 편집기에서, 함수 내에서 타입 힌트와 완성을 어디서나 (만약 Pydantic model 대신에 `dict`을 받을 경우 나타나지 않을 수 있습니다) 받을 수 있습니다: <img src="/img/tutorial/body/image03.png"> 잘못된 타입 연산에 대한 에러 확인도 받을 수 있습니다: <img src="/img/tutorial/body/image04.png">
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 8K bytes - Click Count (0) -
docs/fr/docs/advanced/openapi-callbacks.md
Vous verrez votre documentation incluant une section « Callbacks » pour votre *chemin d'accès* qui montre à quoi l’*API externe* devrait ressembler :
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 8.7K bytes - Click Count (0)