Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for harb (0.17 sec)

  1. docs/tr/docs/python-types.md

    Bu tür tip belirteçlerini desteklemek için özel olarak mevcuttur.
    
    #### `List`
    
    Örneğin `str` değerlerden oluşan bir `list` tanımlayalım.
    
    From `typing`, import `List` (büyük harf olan `L` ile):
    
    ```Python hl_lines="1"
    {!../../../docs_src/python_types/tutorial006.py!}
    ```
    
    Değişkenin tipini yine iki nokta üstüste (`:`) ile belirleyin.
    
    tip olarak `List` kullanın.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 9.7K bytes
    - Viewed (0)
  2. docs/es/docs/python-types.md

    Lo importante es que usando los tipos de Python estándar en un único lugar (en vez de añadir más clases, decorator, etc.) **FastAPI** hará mucho del trabajo por ti.
    
    !!! info "Información"
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 9.2K bytes
    - Viewed (0)
  3. docs/tr/docs/tutorial/query-params.md

    ```
    
    veya
    
    ```
    http://127.0.0.1:8000/items/foo?short=on
    ```
    
    veya
    
    ```
    http://127.0.0.1:8000/items/foo?short=yes
    ```
    
    veya adres, herhangi farklı bir harf varyasyonu içermesi durumuna rağmen (büyük harf, sadece baş harfi büyük kelime, vb.) fonksiyonunuz, `bool` tipli `short` parametresini `True` olarak algılayacaktır. Aksi halde `False` olarak algılanacaktır.
    
    
    ## Çoklu Yol ve Sorgu Parametreleri
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  4. docs/en/data/external_links.yml

      - author: prostomarkeloff
        author_link: https://github.com/prostomarkeloff
        link: https://habr.com/ru/post/478620/
        title: Почему Вы должны попробовать FastAPI?
      - author: Andrey Korchak
        author_link: https://habr.com/ru/users/57uff3r/
        link: https://habr.com/ru/post/454440/
        title: 'Мелкая питонячая радость #2: Starlette - Солидная примочка – FastAPI'
      Vietnamese:
    Others
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Mar 21 20:57:27 GMT 2024
    - 21.3K bytes
    - Viewed (2)
  5. docs/en/data/github_sponsors.yml

      - login: DMantis
        avatarUrl: https://avatars.githubusercontent.com/u/9536869?v=4
        url: https://github.com/DMantis
      - login: hard-coders
        avatarUrl: https://avatars.githubusercontent.com/u/9651103?u=95db33927bbff1ed1c07efddeb97ac2ff33068ed&v=4
        url: https://github.com/hard-coders
      - login: supdann
        avatarUrl: https://avatars.githubusercontent.com/u/9986994?u=9671810f4ae9504c063227fee34fd47567ff6954&v=4
    Others
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Mon Apr 01 23:12:23 GMT 2024
    - 26.4K bytes
    - Viewed (0)
  6. docs/es/docs/async.md

    ---
    
    Si simplemente no lo sabes, usa `def` normal.
    
    ---
    
    **Nota**: puedes mezclar `def` y `async def` en tus *path operation functions* tanto como lo necesites y definir cada una utilizando la mejor opción para ti. FastAPI hará lo correcto con ellos.
    
    De todos modos, en cualquiera de los casos anteriores, FastAPI seguirá funcionando de forma asíncrona y será extremadamente rápido.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 24.9K bytes
    - Viewed (0)
  7. docs/en/docs/deployment/docker.md

    **available machines** taking into account the amount of memory needed by them, and the amount available in the machines in the cluster.
    
    If your application is **simple**, this will probably **not be a problem**, and you might not need to specify hard memory limits. But if you are **using a lot of memory** (for example with **machine learning** models), you should check how much memory you are consuming and adjust the **number of containers** that runs in **each machine** (and maybe add more machines...
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 34.3K bytes
    - Viewed (0)
  8. docs/en/data/people.yml

      url: https://github.com/AlertRED
    - login: hard-coders
      count: 10
      avatarUrl: https://avatars.githubusercontent.com/u/9651103?u=95db33927bbff1ed1c07efddeb97ac2ff33068ed&v=4
      url: https://github.com/hard-coders
    - login: alejsdev
      count: 10
      avatarUrl: https://avatars.githubusercontent.com/u/90076947?u=1ee3a9fbef27abc9448ef5951350f99c7d76f7af&v=4
    Others
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Mon Apr 01 23:12:23 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/query-params-str-validations.md

    * `fixedquery`: has the exact value `fixedquery`.
    * `$`: ends there, doesn't have any more characters after `fixedquery`.
    
    If you feel lost with all these **"regular expression"** ideas, don't worry. They are a hard topic for many people. You can still do a lot of stuff without needing regular expressions yet.
    
    But whenever you need them and go and learn them, know that you can already use them directly in **FastAPI**.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 25.7K bytes
    - Viewed (0)
  10. docs/es/docs/advanced/response-directly.md

    !!! tip "Consejo"
        `JSONResponse` en sí misma es una subclase de `Response`.
    
    Y cuando devuelves una `Response`, **FastAPI** la pasará directamente.
    
    No hará ninguna conversión de datos con modelos Pydantic, no convertirá el contenido a ningún tipo, etc.
    
    Esto te da mucha flexibilidad. Puedes devolver cualquier tipo de dato, sobrescribir cualquier declaración de datos o validación, etc.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Jan 13 11:57:27 GMT 2024
    - 3.2K bytes
    - Viewed (0)
Back to top