Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 61 - 70 of 273 for tangelo (0.3 seconds)

  1. scripts/tests/test_translation_fixer/test_html_links/data/translated_doc_number_lt.md

    # Заголовок 1 { #header-1 }
    
    Немного текста со ссылкой на <a href="https://fastapi.tiangolo.com">FastAPI</a>.
    
    ## Заголовок 2 { #header-2 }
    
    Две ссылки здесь: <a href="https://fastapi.tiangolo.com/how-to/">How to</a> и <a href="project-generation.md" class="internal-link" target="_blank">Project Generators</a>.
    
    ### Заголовок 3 { #header-3 }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 21:48:08 GMT 2026
    - 820 bytes
    - Click Count (0)
  2. docs/zh-hant/docs/help-fastapi.md

    ## 與作者連結 { #connect-with-the-author }
    
    你可以與作者 [我(Sebastián Ramírez / `tiangolo`)](https://tiangolo.com) 建立連結。
    
    你可以:
    
    * [在 **GitHub** 關注我](https://github.com/tiangolo)。
        * 看看我建立的其他開源專案,可能對你有幫助。
        * 關注我以便知道我何時建立新的開源專案。
    * [在 **X(Twitter)**](https://x.com/tiangolo) 或 [Mastodon](https://fosstodon.org/@tiangolo) 關注我。
        * 告訴我你如何使用 FastAPI(我很愛聽這些)。
        * 接收我發布公告或釋出新工具時的消息。
    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)
  3. docs/zh-hant/docs/project-generation.md

    你可以使用此範本快速起步,裡面已替你完成大量初始設定、安全性、資料庫,以及部分 API 端點。
    
    GitHub 儲存庫:[全端 FastAPI 範本](https://github.com/tiangolo/full-stack-fastapi-template)
    
    ## 全端 FastAPI 範本 - 技術堆疊與功能 { #full-stack-fastapi-template-technology-stack-and-features }
    
    - ⚡ [**FastAPI**](https://fastapi.tiangolo.com/zh-hant) 作為 Python 後端 API。
      - 🧰 [SQLModel](https://sqlmodel.tiangolo.com) 作為 Python 與 SQL 資料庫互動(ORM)。
      - 🔍 [Pydantic](https://docs.pydantic.dev)(由 FastAPI 使用)用於資料驗證與設定管理。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 1.8K bytes
    - Click Count (0)
  4. docs/uk/docs/project-generation.md

    Репозиторій GitHub: [Шаблон Full Stack FastAPI](https://github.com/tiangolo/full-stack-fastapi-template)
    
    ## Шаблон Full Stack FastAPI - стек технологій і можливості { #full-stack-fastapi-template-technology-stack-and-features }
    
    - ⚡ [**FastAPI**](https://fastapi.tiangolo.com/uk) для бекенд API на Python.
      - 🧰 [SQLModel](https://sqlmodel.tiangolo.com) для взаємодії з SQL-базою даних у Python (ORM).
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  5. docs/fr/docs/features.md

    ![Swagger UI interaction](https://fastapi.tiangolo.com/img/index/index-03-swagger-02.png)
    
    * Documentation d'API alternative avec [**ReDoc**](https://github.com/Rebilly/ReDoc).
    
    ![ReDoc](https://fastapi.tiangolo.com/img/index/index-06-redoc-02.png)
    
    ### Uniquement du Python moderne { #just-modern-python }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 10.7K bytes
    - Click Count (0)
  6. docs/ko/docs/project-generation.md

    GitHub 저장소: [Full Stack FastAPI 템플릿](https://github.com/tiangolo/full-stack-fastapi-template)
    
    ## Full Stack FastAPI 템플릿 - 기술 스택과 기능들 { #full-stack-fastapi-template-technology-stack-and-features }
    
    - ⚡ Python 백엔드 API를 위한 [**FastAPI**](https://fastapi.tiangolo.com/ko).
        - 🧰 Python SQL 데이터베이스 상호작용을 위한 [SQLModel](https://sqlmodel.tiangolo.com) (ORM).
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 2.3K bytes
    - Click Count (0)
  7. docs/ru/docs/project-generation.md

    Репозиторий GitHub: [Full Stack FastAPI Template](https://github.com/tiangolo/full-stack-fastapi-template)
    
    ## Шаблон Full Stack FastAPI — Технологический стек и возможности { #full-stack-fastapi-template-technology-stack-and-features }
    
    - ⚡ [**FastAPI**](https://fastapi.tiangolo.com/ru) для бэкенд‑API на Python.
        - 🧰 [SQLModel](https://sqlmodel.tiangolo.com) для взаимодействия с SQL‑базой данных на Python (ORM).
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 3K bytes
    - Click Count (0)
  8. fastapi/exceptions.py

        This is for client errors, invalid authentication, invalid data, etc. Not for server
        errors in your code.
    
        Read more about it in the
        [FastAPI docs for Handling Errors](https://fastapi.tiangolo.com/tutorial/handling-errors/).
    
        ## Example
    
        ```python
        from fastapi import FastAPI, HTTPException
    
        app = FastAPI()
    
        items = {"foo": "The Foo Wrestlers"}
    
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Feb 11 18:41:21 GMT 2026
    - 7.3K bytes
    - Click Count (0)
  9. docs/en/data/members.yml

    members:
    - login: tiangolo
      avatar_url: https://avatars.githubusercontent.com/u/1326112
      url: https://github.com/tiangolo
    - login: Kludex
      avatar_url: https://avatars.githubusercontent.com/u/7353520
      url: https://github.com/Kludex
    - login: alejsdev
      avatar_url: https://avatars.githubusercontent.com/u/90076947
      url: https://github.com/alejsdev
    - login: svlandeg
      avatar_url: https://avatars.githubusercontent.com/u/8796347
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 18 18:44:00 GMT 2025
    - 819 bytes
    - Click Count (0)
  10. scripts/tests/test_translation_fixer/test_html_links/data/en_doc.md

    # Header 1 { #header-1 }
    
    Some text with a link to <a href="https://fastapi.tiangolo.com">FastAPI</a>.
    
    ## Header 2 { #header-2 }
    
    Two links here: <a href="https://fastapi.tiangolo.com/how-to/">How to</a> and <a href="project-generation.md" class="internal-link" target="_blank">Project Generators</a>.
    
    ### Header 3 { #header-3 }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 21:48:08 GMT 2026
    - 644 bytes
    - Click Count (0)
Back to Top