Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for individual (0.17 sec)

  1. .github/actions/people/app/main.py

            contributors=contributors,
            commenters=commenters,
            reviewers=reviewers,
            translation_reviewers=translation_reviewers,
            authors=authors,
        )
    
    
    def get_individual_sponsors(settings: Settings):
        nodes: List[SponsorshipAsMaintainerNode] = []
        edges = get_graphql_sponsor_edges(settings=settings)
    
        while edges:
            for edge in edges:
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Mar 26 17:38:21 GMT 2024
    - 19.2K bytes
    - Viewed (1)
  2. docs/en/docs/tutorial/bigger-applications.md

    !!! tip
        Having `dependencies` in the `APIRouter` can be used, for example, to require authentication for a whole group of *path operations*. Even if the dependencies are not added individually to each one of them.
    
    !!! check
        The `prefix`, `tags`, `responses`, and `dependencies` parameters are (as in many other cases) just a feature from **FastAPI** to help you avoid code duplication.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 18.6K bytes
    - Viewed (0)
Back to top