Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 10 for __aiter__ (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs_src/dependencies/tutorial010_py310.py

    class MySuperContextManager:
        def __init__(self):
            self.db = DBSession()
    
        def __enter__(self):
            return self.db
    
        def __exit__(self, exc_type, exc_value, traceback):
            self.db.close()
    
    
    async def get_db():
        with MySuperContextManager() as db:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 12 13:19:43 GMT 2026
    - 292 bytes
    - Click Count (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. docs/de/docs/tutorial/dependencies/dependencies-with-yield.md

    Wenn Sie gerade erst mit **FastAPI** beginnen, möchten Sie das vielleicht vorerst überspringen.
    
    ///
    
    In Python können Sie Kontextmanager erstellen, indem Sie [eine Klasse mit zwei Methoden erzeugen: `__enter__()` und `__exit__()`](https://docs.python.org/3/reference/datamodel.html#context-managers).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 14.4K bytes
    - Click Count (0)
  10. docs/ko/docs/tutorial/dependencies/dependencies-with-yield.md

    /// 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 14:06:26 GMT 2026
    - 14.3K bytes
    - Click Count (0)
Back to Top