Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Peeters (0.18 sec)

  1. docs/en/data/external_links.yml

      - author: Abhinav Tripathi - Microsoft Blogs
        link: https://devblogs.microsoft.com/cosmosdb/azure-cosmos-db-python-and-fastapi/
        title: Write a Python data layer with Azure Cosmos DB and FastAPI
      - author: Donny Peeters
        author_link: https://github.com/Donnype
        link: https://bitestreams.com/blog/fastapi-sqlalchemy/
        title: 10 Tips for adding SQLAlchemy to FastAPI
      - author: Jessica Temporal
    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)
  2. docs/en/docs/release-notes.md

    this release is **compatibility** with Pydantic v1 and v2, to make sure your current apps keep working. Later there will be more focus on refactors, correctness, code improvements, and then **performance** improvements. Some third-party early beta testers that ran benchmarks on the beta releases of FastAPI reported improvements of **2x - 3x**. Which is not bad for just doing `pip install --upgrade fastapi pydantic`. This was not an official benchmark and I didn't check it myself, but it's a good sign....
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Apr 28 00:28:00 GMT 2024
    - 385.5K bytes
    - Viewed (1)
  3. docs/en/docs/tutorial/header-params.md

    Also, HTTP headers are case-insensitive, so, you can declare them with standard Python style (also known as "snake_case").
    
    So, you can use `user_agent` as you normally would in Python code, instead of needing to capitalize the first letters as `User_Agent` or something similar.
    
    If for some reason you need to disable automatic conversion of underscores to hyphens, set the parameter `convert_underscores` of `Header` to `False`:
    
    === "Python 3.10+"
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Oct 17 05:59:11 GMT 2023
    - 5.8K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/security/http-basic-auth.md

    But then the attackers try with username `stanleyjobsox` and password `love123`.
    
    And your application code does something like:
    
    ```Python
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Jan 11 14:33:05 GMT 2024
    - 5.9K bytes
    - Viewed (0)
Back to top