- Sort Score
- Num 10 results
- Language All
Results 51 - 60 of 1,037 for requestID (0.06 seconds)
-
docs/en/docs/tutorial/request-files.md
# Request Files { #request-files } You can define files to be uploaded by the client using `File`. /// info To receive uploaded files, first install [`python-multipart`](https://github.com/Kludex/python-multipart). Make sure you create a [virtual environment](../virtual-environments.md), activate it, and then install it, for example: ```console $ pip install python-multipart ``` This is because uploaded files are sent as "form data".Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 7K bytes - Click Count (0) -
docs/en/docs/how-to/custom-request-and-route.md
Some use cases include: * Converting non-JSON request bodies to JSON (e.g. [`msgpack`](https://msgpack.org/index.html)). * Decompressing gzip-compressed request bodies. * Automatically logging all request bodies. ## Handling custom request body encodings { #handling-custom-request-body-encodings } Let's see how to make use of a custom `Request` subclass to decompress gzip requests.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 4.4K bytes - Click Count (0) -
.ci/jobs.t/elastic+elasticsearch+pull-request+part-2-fips.yml
--- - job: name: "elastic+elasticsearch+pull-request+part-2-fips" display-name: "elastic / elasticsearch - pull request part-2 fips" description: "Testing of Elasticsearch pull requests - part-2 fips" workspace: "/dev/shm/elastic+elasticsearch+pull-request+part-2-fips" scm: - git: refspec: "+refs/pull/${ghprbPullId}/*:refs/remotes/origin/pr/${ghprbPullId}/*" branches: - "${ghprbActualCommit}"Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu Sep 16 01:16:48 GMT 2021 - 1.4K bytes - Click Count (0) -
.ci/jobs.t/elastic+elasticsearch+pull-request+packaging-upgrade-tests.yml
--- - job: name: "elastic+elasticsearch+pull-request+packaging-upgrade-tests" display-name: "elastic / elasticsearch - pull request packaging-upgrade-tests" description: "Testing of Elasticsearch pull requests - packaging-upgrade-tests" project-type: matrix node: master child-workspace: "/dev/shm/elastic+elasticsearch+pull-request+packaging-upgrade-tests" scm: - git:Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Aug 10 19:43:38 GMT 2021 - 1.9K bytes - Click Count (0) -
docs/ko/docs/help-fastapi.md
## Pull Request 리뷰하기 { #review-pull-requests } 다른 사람들이 만든 pull request를 리뷰하는 데 저를 도와줄 수 있습니다. 다시 한번 말하지만, 최대한 친절하게 리뷰해 주세요. 🤗 --- Pull request를 리뷰할 때 고려해야 할 사항과 방법은 다음과 같습니다: ### 문제 이해하기 { #understand-the-problem } * 먼저, 해당 pull request가 해결하려는 **문제를 이해하는지** 확인하세요. GitHub Discussion 또는 이슈에서 더 긴 논의가 있었을 수도 있습니다.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 15.4K bytes - Click Count (0) -
docs/en/docs/reference/request.md
# `Request` class You can declare a parameter in a *path operation function* or dependency to be of type `Request` and then you can access the raw request object directly, without any validation, etc. Read more about it in the [FastAPI docs about using Request directly](https://fastapi.tiangolo.com/advanced/using-request-directly/) You can import it directly from `fastapi`: ```python from fastapi import Request ``` /// tip
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 04 12:41:54 GMT 2026 - 652 bytes - Click Count (0) -
fastapi/requests.py
from starlette.requests import HTTPConnection as HTTPConnection # noqa: F401
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Aug 09 20:17:08 GMT 2020 - 142 bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/SocksProxyTest.kt
.newClientBuilder() .proxy(socksProxy.proxy()) .build() val request1 = Request.Builder().url(server.url("/")).build() val response1 = client.newCall(request1).execute() assertThat(response1.body.string()).isEqualTo("abc") val request2 = Request.Builder().url(server.url("/")).build() val response2 = client.newCall(request2).execute() assertThat(response2.body.string()).isEqualTo("def")
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Jun 18 12:28:21 GMT 2025 - 3.6K bytes - Click Count (0) -
docs/pt/docs/tutorial/request-files.md
# Arquivos de Requisição { #request-files } Você pode definir arquivos para serem enviados pelo cliente usando `File`. /// info | Informação Para receber arquivos enviados, primeiro instale [`python-multipart`](https://github.com/Kludex/python-multipart). Garanta que você criou um [ambiente virtual](../virtual-environments.md), o ativou e então o instalou, por exemplo: ```console $ pip install python-multipart ```Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 7.8K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/request-files.md
# 請求中的檔案 { #request-files } 你可以使用 `File` 定義由用戶端上傳的檔案。 /// info 若要接收上傳的檔案,請先安裝 [`python-multipart`](https://github.com/Kludex/python-multipart)。 請先建立並啟用一個[虛擬環境](../virtual-environments.md),然後安裝,例如: ```console $ pip install python-multipart ``` 因為上傳的檔案是以「表單資料」送出的。 /// ## 匯入 `File` { #import-file } 從 `fastapi` 匯入 `File` 與 `UploadFile`: {* ../../docs_src/request_files/tutorial001_an_py310.py hl[3] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 6.6K bytes - Click Count (0)