Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 206 for all (0.14 sec)

  1. docs/en/docs/how-to/sql-databases-peewee.md

    !!! tip
        We only need to create one `PeeweeGetterDict` class, and we can use it in all the Pydantic *models* / schemas.
    
    ## CRUD utils
    
    Now let's see the file `sql_app/crud.py`.
    
    ### Create all the CRUD utils
    
    Create all the same CRUD utils as in the SQLAlchemy tutorial, all the code is very similar:
    
    ```Python hl_lines="1  4-5  8-9  12-13  16-20  23-24  27-30"
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Jan 16 13:23:25 GMT 2024
    - 23.6K bytes
    - Viewed (0)
  2. .github/DISCUSSION_TEMPLATE/questions.yml

            I end up not being able to add new features, fix bugs, review pull requests, etc. as fast as I wish because I have to spend too much time handling questions.
    
            All that, on top of all the incredible help provided by a bunch of community members, the [FastAPI Experts](https://fastapi.tiangolo.com/fastapi-people/#experts), that give a lot of their time to come here and help others.
    
    Others
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Aug 03 15:59:41 GMT 2023
    - 5.8K bytes
    - Viewed (1)
  3. docs/en/docs/advanced/response-directly.md

    ## Returning a custom `Response`
    
    The example above shows all the parts you need, but it's not very useful yet, as you could have just returned the `item` directly, and **FastAPI** would put it in a `JSONResponse` for you, converting it to a `dict`, etc. All that by default.
    
    Now, let's see how you could use that to return a custom response.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Aug 29 14:02:58 GMT 2020
    - 3K bytes
    - Viewed (0)
  4. docs/en/docs/async.md

    For a more "real life" example of this, imagine a bank.
    
    Up to recently, most of the banks had multiple cashiers ๐Ÿ‘จโ€๐Ÿ’ผ๐Ÿ‘จโ€๐Ÿ’ผ๐Ÿ‘จโ€๐Ÿ’ผ๐Ÿ‘จโ€๐Ÿ’ผ and a big line ๐Ÿ•™๐Ÿ•™๐Ÿ•™๐Ÿ•™๐Ÿ•™๐Ÿ•™๐Ÿ•™๐Ÿ•™.
    
    All of the cashiers doing all the work with one client after the other ๐Ÿ‘จโ€๐Ÿ’ผโฏ.
    
    And you have to wait ๐Ÿ•™ in the line for a long time or you lose your turn.
    
    You probably wouldn't want to take your crush ๐Ÿ˜ with you to do errands at the bank ๐Ÿฆ.
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 23K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/security/oauth2-scopes.md

        ```
    
    ## Use the `scopes`
    
    The parameter `security_scopes` will be of type `SecurityScopes`.
    
    It will have a property `scopes` with a list containing all the scopes required by itself and all the dependencies that use this as a sub-dependency. That means, all the "dependants"... this might sound confusing, it is explained again later below.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Jan 11 21:21:35 GMT 2024
    - 20.5K bytes
    - Viewed (0)
  6. scripts/netlify-docs.sh

    #!/usr/bin/env bash
    set -x
    set -e
    # Install pip
    cd /tmp
    curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
    python3.6 get-pip.py --user
    cd -
    # Install Flit to be able to install all
    python3.6 -m pip install --user flit
    # Install with Flit
    python3.6 -m flit install --user --extras doc
    # Finally, run mkdocs
    Shell Script
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Jan 17 08:51:03 GMT 2020
    - 337 bytes
    - Viewed (0)
  7. docs_src/path_operation_advanced_configuration/tutorial002.py

    
    def use_route_names_as_operation_ids(app: FastAPI) -> None:
        """
        Simplify operation IDs so that generated API clients have simpler function
        names.
    
        Should be called only after all routes have been added.
        """
        for route in app.routes:
            if isinstance(route, APIRoute):
                route.operation_id = route.name  # in this case, 'read_items'
    
    
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Mar 26 19:09:53 GMT 2020
    - 572 bytes
    - Viewed (0)
  8. docs/de/docs/history-design-future.md

    Aber irgendwann gab es keine andere Mรถglichkeit, als etwas zu schaffen, das all diese Funktionen bereitstellte, die besten Ideen frรผherer Tools aufnahm und diese auf die bestmรถgliche Weise kombinierte, wobei Sprachfunktionen verwendet wurden, die vorher noch nicht einmal verfรผgbar waren (Python 3.6+ Typhinweise).
    
    </blockquote>
    
    ## Investigation
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 30 18:10:48 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  9. docs_src/sql_databases/sql_app/main.py

    from typing import List
    
    from fastapi import Depends, FastAPI, HTTPException
    from sqlalchemy.orm import Session
    
    from . import crud, models, schemas
    from .database import SessionLocal, engine
    
    models.Base.metadata.create_all(bind=engine)
    
    app = FastAPI()
    
    
    # Dependency
    def get_db():
        db = SessionLocal()
        try:
            yield db
        finally:
            db.close()
    
    
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun May 17 10:14:14 GMT 2020
    - 1.6K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/index.md

    # Advanced User Guide
    
    ## Additional Features
    
    The main [Tutorial - User Guide](../tutorial/index.md){.internal-link target=_blank} should be enough to give you a tour through all the main features of **FastAPI**.
    
    In the next sections you will see other options, configurations, and additional features.
    
    !!! tip
        The next sections are **not necessarily "advanced"**.
    
        And it's possible that for your use case, the solution is in one of them.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Mar 31 23:52:53 GMT 2024
    - 1.8K bytes
    - Viewed (0)
Back to top