Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 60 of 3,214 for requis (0.07 seconds)

  1. docs/tr/docs/tutorial/request-forms-and-files.md

    # Request Formları ve Dosyalar { #request-forms-and-files }
    
    `File` ve `Form` kullanarak aynı anda hem dosyaları hem de form alanlarını tanımlayabilirsiniz.
    
    /// info | Bilgi
    
    Yüklenen dosyaları ve/veya form verisini almak için önce [`python-multipart`](https://github.com/Kludex/python-multipart) paketini kurun.
    
    Bir [sanal ortam](../virtual-environments.md) oluşturduğunuzdan, onu aktive ettiğinizden ve ardından paketi kurduğunuzdan emin olun, örneğin:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 1.6K bytes
    - Click Count (0)
  2. .github/ISSUE_TEMPLATE/tflite-op-request.md

    ---
    name: TensorFlow Lite Op Request
    about: Use this template for reporting Lite ops you are using or missing
    labels: 'comp:lite'
    
    ---
    
    **System information**
    - OS Platform and Distribution (e.g., Linux Ubuntu 16.04):
    - TensorFlow installed from (source or binary):
    - TensorFlow version (or github SHA if from source):
    
    
    **Provide the text output from tflite_convert**
    
    ```
    # Copy and paste here
    ```
    
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Wed Jun 15 03:35:58 GMT 2022
    - 879 bytes
    - Click Count (0)
  3. 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)
  4. docs/ru/docs/how-to/custom-request-and-route.md

    /// note | Технические детали
    
    У `Request` есть атрибут `request.scope` — это просто Python-`dict`, содержащий метаданные, связанные с HTTP-запросом.
    
    У `Request` также есть `request.receive` — функция для «получения» тела запроса.
    
    И `dict` `scope`, и функция `receive` являются частью спецификации ASGI.
    
    Именно этих двух компонентов — `scope` и `receive` — достаточно, чтобы создать новый экземпляр `Request`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 7.1K bytes
    - Click Count (0)
  5. docs/zh/docs/how-to/custom-request-and-route.md

    /// note | 技术细节
    
    `Request` 拥有 `request.scope` 属性,它就是一个 Python `dict`,包含与请求相关的元数据。
    
    `Request` 还包含 `request.receive`,它是一个用于“接收”请求体的函数。
    
    `scope` 字典和 `receive` 函数都是 ASGI 规范的一部分。
    
    创建一个新的 `Request` 实例需要这两样:`scope` 和 `receive`。
    
    想了解更多关于 `Request` 的信息,请查看 [Starlette 的 Request 文档](https://www.starlette.dev/requests/)。
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 4.1K bytes
    - Click Count (0)
  6. docs/en/docs/tutorial/request-form-models.md

    **FastAPI** will **extract** the data for **each field** from the **form data** in the request and give you the Pydantic model you defined.
    
    ## Check the Docs { #check-the-docs }
    
    You can verify it in the docs UI at `/docs`:
    
    <div class="screenshot">
    <img src="/img/tutorial/request-form-models/image01.png">
    </div>
    
    ## Forbid Extra Form Fields { #forbid-extra-form-fields }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 2.1K bytes
    - Click Count (0)
  7. docs/ko/docs/how-to/custom-request-and-route.md

    /// note | 기술 세부사항
    
    `Request`에는 `request.scope` 속성이 있는데, 이는 요청과 관련된 메타데이터를 담고 있는 Python `dict`입니다.
    
    `Request`에는 또한 `request.receive`가 있는데, 이는 요청의 바디를 "받기(receive)" 위한 함수입니다.
    
    `scope` `dict`와 `receive` 함수는 모두 ASGI 명세의 일부입니다.
    
    그리고 이 두 가지, `scope`와 `receive`가 새로운 `Request` 인스턴스를 만드는 데 필요한 것들입니다.
    
    `Request`에 대해 더 알아보려면 [Starlette의 Requests 문서](https://www.starlette.dev/requests/)를 확인하세요.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 5.2K bytes
    - Click Count (0)
  8. docs/es/docs/how-to/custom-request-and-route.md

    * Descomprimir cuerpos de requests comprimidos con gzip.
    * Registrar automáticamente todos los request bodies.
    
    ## Manejo de codificaciones personalizadas de request body { #handling-custom-request-body-encodings }
    
    Veamos cómo hacer uso de una subclase personalizada de `Request` para descomprimir requests gzip.
    
    Y una subclase de `APIRoute` para usar esa clase de request personalizada.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  9. docs/zh/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:06:37 GMT 2026
    - 6.8K bytes
    - Click Count (0)
  10. docs/ru/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
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 11.4K bytes
    - Click Count (0)
Back to Top