Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for italic (0.03 sec)

  1. tests/test_tutorial/test_static_files/test_tutorial001.py

        static_dir.rmdir()
    
    
    def test_static_files(client: TestClient):
        response = client.get("/static/sample.txt")
        assert response.status_code == 200, response.text
        assert response.text == "This is a sample static file."
    
    
    def test_static_files_not_found(client: TestClient):
        response = client.get("/static/non_existent_file.txt")
        assert response.status_code == 404, response.text
    
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 10:43:02 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  2. scripts/translate.py

            «««
            <a href="https://fastapi.tiangolo.com/es/tutorial/path-params/#documentation" class="external-link" target="_blank">Documentación</a>
            »»»
    
    3.1) Do not add language codes for URLs that point to static assets (e.g., images, CSS, JavaScript).
    
    Example:
    
        Source (English):
    
            «««
            <a href="https://fastapi.tiangolo.com/img/something.jpg" class="external-link" target="_blank">Something</a>
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:05:53 UTC 2025
    - 34.1K bytes
    - Viewed (0)
  3. docs/en/docs/release-notes.md

        * To use it, declare the path in the *path operation* as the empty string (`""`).
        * PR [#415](https://github.com/tiangolo/fastapi/pull/415) by [@vitalik](https://github.com/vitalik).
    * Fix mypy error after merging PR #415. PR [#462](https://github.com/tiangolo/fastapi/pull/462).
    
    ## 0.35.0
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:06:15 UTC 2025
    - 586.7K bytes
    - Viewed (0)
Back to top