Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 13 for __aiter__ (0.29 seconds)

  1. scripts/people.py

            self.reset_at: datetime = datetime.fromtimestamp(0, timezone.utc)
            self.last_request_start_time: datetime = datetime.fromtimestamp(0, timezone.utc)
            self.speed_multiplier: float = 1.0
    
        def __enter__(self) -> "RateLimiter":
            now = datetime.now(tz=timezone.utc)
    
            # Handle primary rate limits
            primary_limit_wait_time = 0.0
            if self.remaining_points <= self.last_query_cost:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Mar 23 13:51:24 GMT 2026
    - 15K bytes
    - Click Count (0)
  2. docs/tr/docs/tutorial/dependencies/dependencies-with-yield.md

    Bu, az çok "ileri seviye" bir fikirdir.
    
    **FastAPI**'ye yeni başlıyorsanız şimdilik bunu atlamak isteyebilirsiniz.
    
    ///
    
    Python'da Context Manager'ları, [iki method'a sahip bir class oluşturarak: `__enter__()` ve `__exit__()`](https://docs.python.org/3/reference/datamodel.html#context-managers) yaratabilirsiniz.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 13.4K bytes
    - Click Count (0)
  3. docs/uk/docs/tutorial/dependencies/dependencies-with-yield.md

    Це, загалом, «просунута» ідея.
    
    Якщо ви тільки починаєте з **FastAPI**, можливо, варто наразі пропустити це.
    
    ///
    
    У Python ви можете створювати Менеджери контексту, [створивши клас із двома методами: `__enter__()` і `__exit__()`](https://docs.python.org/3/reference/datamodel.html#context-managers).
    
    Ви також можете використовувати їх усередині залежностей **FastAPI** з `yield`, використовуючи
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 18.4K bytes
    - Click Count (0)
  4. docs/es/docs/tutorial/dependencies/dependencies-with-yield.md

    Esto es, más o menos, una idea "avanzada".
    
    Si apenas estás comenzando con **FastAPI**, podrías querer omitirlo por ahora.
    
    ///
    
    En Python, puedes crear Context Managers [creando una clase con dos métodos: `__enter__()` y `__exit__()`](https://docs.python.org/3/reference/datamodel.html#context-managers).
    
    También puedes usarlos dentro de las dependencias de **FastAPI** con `yield` usando
    `with` o `async with` en la función de dependencia:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 13.3K bytes
    - Click Count (0)
  5. docs/zh-hant/docs/tutorial/dependencies/dependencies-with-yield.md

    ### 在含 `yield` 的相依中使用情境管理器 { #using-context-managers-in-dependencies-with-yield }
    
    /// warning
    
    這大致算是一個「進階」概念。
    
    如果你剛開始學習 **FastAPI**,此處可以先跳過。
    
    ///
    
    在 Python 中,你可以透過[建立一個擁有 `__enter__()` 與 `__exit__()` 兩個方法的類別](https://docs.python.org/3/reference/datamodel.html#context-managers)來建立情境管理器。
    
    你也可以在 **FastAPI** 的含 `yield` 相依中,於相依函式內使用 `with` 或 `async with` 陳述式來使用它們:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  6. docs/ru/docs/tutorial/dependencies/dependencies-with-yield.md

    Это, более или менее, «продвинутая» идея.
    
    Если вы только начинаете работать с **FastAPI**, то лучше пока пропустить этот пункт.
    
    ///
    
    В Python можно создавать менеджеры контекста, [создав класс с двумя методами: `__enter__()` и `__exit__()`](https://docs.python.org/3/reference/datamodel.html#context-managers).
    
    Их также можно использовать внутри зависимостей **FastAPI** с `yield`, применяя операторы
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 19.4K bytes
    - Click Count (0)
  7. docs/en/docs/tutorial/dependencies/dependencies-with-yield.md

    This is, more or less, an "advanced" idea.
    
    If you are just starting with **FastAPI** you might want to skip it for now.
    
    ///
    
    In Python, you can create Context Managers by [creating a class with two methods: `__enter__()` and `__exit__()`](https://docs.python.org/3/reference/datamodel.html#context-managers).
    
    You can also use them inside of **FastAPI** dependencies with `yield` by using
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 12.6K bytes
    - Click Count (0)
  8. docs/zh/docs/tutorial/dependencies/dependencies-with-yield.md

    ### 在带有 `yield` 的依赖中使用上下文管理器 { #using-context-managers-in-dependencies-with-yield }
    
    /// warning | 警告
    
    这算是一个“高级”概念。
    
    如果你刚开始使用 **FastAPI**,现在可以先跳过。
    
    ///
    
    在 Python 中,你可以通过[创建一个带有 `__enter__()` 和 `__exit__()` 方法的类](https://docs.python.org/3/reference/datamodel.html#context-managers)来创建上下文管理器。
    
    你也可以在 **FastAPI** 的带有 `yield` 的依赖中,使用依赖函数内部的 `with` 或 `async with` 语句来使用它们:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 12.1K bytes
    - Click Count (0)
  9. docs/fr/docs/tutorial/dependencies/dependencies-with-yield.md

    Si vous débutez avec **FastAPI**, vous voudrez peut-être l'ignorer pour le moment.
    
    ///
    
    En Python, vous pouvez créer des gestionnaires de contexte en [créant une classe avec deux méthodes : `__enter__()` et `__exit__()`](https://docs.python.org/3/reference/datamodel.html#context-managers).
    
    Vous pouvez également les utiliser dans des dépendances **FastAPI** avec `yield` en utilisant
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 13.9K bytes
    - Click Count (0)
  10. docs/pt/docs/tutorial/dependencies/dependencies-with-yield.md

    Se você está apenas iniciando com o **FastAPI** você pode querer pular isso por enquanto.
    
    ///
    
    Em Python, você pode criar Gerenciadores de Contexto ao [criar uma classe com dois métodos: `__enter__()` e `__exit__()`](https://docs.python.org/3/reference/datamodel.html#context-managers).
    
    Você também pode usá-los dentro de dependências com `yield` do **FastAPI** ao utilizar
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 13.8K bytes
    - Click Count (0)
Back to Top