From: Sebastián Ramírez
Date: Mon, 29 Jul 2024 23:35:07 +0000 (-0500)
Subject: 🚚 Rename GitHub links from tiangolo/fastapi to fastapi/fastapi (#11913)
X-Git-Tag: 0.112.0~19
X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=221e59b0d16e81d75261574e39209ffebf249618;p=thirdparty%2Ffastapi%2Ffastapi.git
🚚 Rename GitHub links from tiangolo/fastapi to fastapi/fastapi (#11913)
---
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
index a8f4c4de2d..fd9f3b11c5 100644
--- a/.github/ISSUE_TEMPLATE/config.yml
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -4,13 +4,13 @@ contact_links:
about: Please report security vulnerabilities to security@tiangolo.com
- name: Question or Problem
about: Ask a question or ask about a problem in GitHub Discussions.
- url: https://github.com/tiangolo/fastapi/discussions/categories/questions
+ url: https://github.com/fastapi/fastapi/discussions/categories/questions
- name: Feature Request
about: To suggest an idea or ask about a feature, please start with a question saying what you would like to achieve. There might be a way to do it already.
- url: https://github.com/tiangolo/fastapi/discussions/categories/questions
+ url: https://github.com/fastapi/fastapi/discussions/categories/questions
- name: Show and tell
about: Show what you built with FastAPI or to be used with FastAPI.
- url: https://github.com/tiangolo/fastapi/discussions/categories/show-and-tell
+ url: https://github.com/fastapi/fastapi/discussions/categories/show-and-tell
- name: Translations
about: Coordinate translations in GitHub Discussions.
- url: https://github.com/tiangolo/fastapi/discussions/categories/translations
+ url: https://github.com/fastapi/fastapi/discussions/categories/translations
diff --git a/.github/ISSUE_TEMPLATE/privileged.yml b/.github/ISSUE_TEMPLATE/privileged.yml
index c01e34b6dd..2b85eb310b 100644
--- a/.github/ISSUE_TEMPLATE/privileged.yml
+++ b/.github/ISSUE_TEMPLATE/privileged.yml
@@ -6,7 +6,7 @@ body:
value: |
Thanks for your interest in FastAPI! ð
- If you are not @tiangolo or he didn't ask you directly to create an issue here, please start the conversation in a [Question in GitHub Discussions](https://github.com/tiangolo/fastapi/discussions/categories/questions) instead.
+ If you are not @tiangolo or he didn't ask you directly to create an issue here, please start the conversation in a [Question in GitHub Discussions](https://github.com/fastapi/fastapi/discussions/categories/questions) instead.
- type: checkboxes
id: privileged
attributes:
diff --git a/.github/actions/notify-translations/app/main.py b/.github/actions/notify-translations/app/main.py
index 9ded86da94..716232d49a 100644
--- a/.github/actions/notify-translations/app/main.py
+++ b/.github/actions/notify-translations/app/main.py
@@ -19,7 +19,7 @@ questions_translations_category_id = "DIC_kwDOCZduT84CT5P9"
all_discussions_query = """
query Q($category_id: ID) {
- repository(name: "fastapi", owner: "tiangolo") {
+ repository(name: "fastapi", owner: "fastapi") {
discussions(categoryId: $category_id, first: 100) {
nodes {
title
@@ -41,7 +41,7 @@ query Q($category_id: ID) {
translation_discussion_query = """
query Q($after: String, $discussion_number: Int!) {
- repository(name: "fastapi", owner: "tiangolo") {
+ repository(name: "fastapi", owner: "fastapi") {
discussion(number: $discussion_number) {
comments(first: 100, after: $after) {
edges {
diff --git a/.github/actions/people/app/main.py b/.github/actions/people/app/main.py
index 9f2b9369d0..33156f1ca2 100644
--- a/.github/actions/people/app/main.py
+++ b/.github/actions/people/app/main.py
@@ -17,7 +17,7 @@ questions_category_id = "MDE4OkRpc2N1c3Npb25DYXRlZ29yeTMyMDAxNDM0"
discussions_query = """
query Q($after: String, $category_id: ID) {
- repository(name: "fastapi", owner: "tiangolo") {
+ repository(name: "fastapi", owner: "fastapi") {
discussions(first: 100, after: $after, categoryId: $category_id) {
edges {
cursor
@@ -61,7 +61,7 @@ query Q($after: String, $category_id: ID) {
prs_query = """
query Q($after: String) {
- repository(name: "fastapi", owner: "tiangolo") {
+ repository(name: "fastapi", owner: "fastapi") {
pullRequests(first: 100, after: $after) {
edges {
cursor
@@ -109,7 +109,7 @@ query Q($after: String) {
sponsors_query = """
query Q($after: String) {
- user(login: "tiangolo") {
+ user(login: "fastapi") {
sponsorshipsAsMaintainer(first: 100, after: $after) {
edges {
cursor
diff --git a/.github/workflows/issue-manager.yml b/.github/workflows/issue-manager.yml
index bd0113dc7c..260902e12f 100644
--- a/.github/workflows/issue-manager.yml
+++ b/.github/workflows/issue-manager.yml
@@ -16,7 +16,7 @@ on:
jobs:
issue-manager:
- if: github.repository_owner == 'tiangolo'
+ if: github.repository_owner == 'fastapi'
runs-on: ubuntu-latest
steps:
- name: Dump GitHub context
diff --git a/.github/workflows/label-approved.yml b/.github/workflows/label-approved.yml
index 417e19dad7..63fb7ff239 100644
--- a/.github/workflows/label-approved.yml
+++ b/.github/workflows/label-approved.yml
@@ -7,7 +7,7 @@ on:
jobs:
label-approved:
- if: github.repository_owner == 'tiangolo'
+ if: github.repository_owner == 'fastapi'
runs-on: ubuntu-latest
steps:
- name: Dump GitHub context
diff --git a/.github/workflows/people.yml b/.github/workflows/people.yml
index b0868771dc..c60c63d1b8 100644
--- a/.github/workflows/people.yml
+++ b/.github/workflows/people.yml
@@ -12,7 +12,7 @@ on:
jobs:
fastapi-people:
- if: github.repository_owner == 'tiangolo'
+ if: github.repository_owner == 'fastapi'
runs-on: ubuntu-latest
steps:
- name: Dump GitHub context
diff --git a/CITATION.cff b/CITATION.cff
index 9028248b1d..f147003496 100644
--- a/CITATION.cff
+++ b/CITATION.cff
@@ -12,7 +12,7 @@ authors:
family-names: RamÃrez
email: tiangolo@gmail.com
identifiers:
-repository-code: 'https://github.com/tiangolo/fastapi'
+repository-code: 'https://github.com/fastapi/fastapi'
url: 'https://fastapi.tiangolo.com'
abstract: >-
FastAPI framework, high performance, easy to learn, fast to code,
diff --git a/README.md b/README.md
index c0422ead8a..43cc7198c1 100644
--- a/README.md
+++ b/README.md
@@ -5,11 +5,11 @@
FastAPI framework, high performance, easy to learn, fast to code, ready for production
-
-
+
+
-
-
+
+
@@ -23,7 +23,7 @@
**Documentation**: https://fastapi.tiangolo.com
-**Source Code**: https://github.com/tiangolo/fastapi
+**Source Code**: https://github.com/fastapi/fastapi
---
@@ -72,7 +72,7 @@ The key features are:
"_[...] I'm using **FastAPI** a ton these days. [...] I'm actually planning to use it for all of my team's **ML services at Microsoft**. Some of them are getting integrated into the core **Windows** product and some **Office** products._"
-
Kabir Khan -
Microsoft (ref)
+Kabir Khan -
Microsoft (ref)
---
diff --git a/docs/az/docs/fastapi-people.md b/docs/az/docs/fastapi-people.md
index 60494f1915..9bb7ad6eaa 100644
--- a/docs/az/docs/fastapi-people.md
+++ b/docs/az/docs/fastapi-people.md
@@ -91,7 +91,7 @@ Onlar mÉnbÉ kodu, sÉnÉdlÉmÉ, tÉrcümÉlÉr vÉ s. barÉdÉ ÉmÉk göstÉ
{% endif %}
-Bundan baÅqa bir neÃ§É (yüzdÉn çox) ÉmÉkdaÅ var ki, onları FastAPI GitHub ÆmÉkdaÅlar sÉhifÉsindÉ görÉ bilÉrsiniz. ð·
+Bundan baÅqa bir neÃ§É (yüzdÉn çox) ÉmÉkdaÅ var ki, onları FastAPI GitHub ÆmÉkdaÅlar sÉhifÉsindÉ görÉ bilÉrsiniz. ð·
## Æn çox rÉy verÉnlÉr
@@ -178,7 +178,7 @@ Bu sÉhifÉnin Ésas mÉqsÉdi, icmanın baÅqalarına kömÉk etmÉk üçün g
XüsusilÉ dÉ normalda daha az görünÉn vÉ bir çox hallarda daha çÉtin olan, baÅqalarının suallarına kömÉk etmÉk vÉ tÉrcümÉlÉrlÉ baÄlı Pull Request-lÉrÉ rÉy vermÉk kimi sÉy göstÉrmÉk.
-Bu sÉhifÉnin mÉlumatları hÉr ay hesablanır vÉ siz buradan mÉnbÉ kodunu oxuya bilÉrsiniz.
+Bu sÉhifÉnin mÉlumatları hÉr ay hesablanır vÉ siz buradan mÉnbÉ kodunu oxuya bilÉrsiniz.
Burada sponsorların ÉmÉyini dÉ vurÄulamaq istÉyirÉm.
diff --git a/docs/az/docs/index.md b/docs/az/docs/index.md
index 430295d912..90864a98e4 100644
--- a/docs/az/docs/index.md
+++ b/docs/az/docs/index.md
@@ -5,11 +5,11 @@
FastAPI framework, yüksÉk mÉshuldarlı, öyrÉnmÉsi asan, çevik kodlama, istifadÉyÉ hazırdır
-
-
+
+
-
-
+
+
@@ -23,7 +23,7 @@
**SÉnÉdlÉr**: https://fastapi.tiangolo.com
-**Qaynaq Kodu**: https://github.com/tiangolo/fastapi
+**Qaynaq Kodu**: https://github.com/fastapi/fastapi
---
@@ -63,7 +63,7 @@ FastAPI Python ilÉ API yaratmaq üçün standart Python Kabir Khan - Microsoft (ref)
+Kabir Khan -
Microsoft (ref)
---
diff --git a/docs/bn/docs/index.md b/docs/bn/docs/index.md
index 3105e69c80..042cf93997 100644
--- a/docs/bn/docs/index.md
+++ b/docs/bn/docs/index.md
@@ -5,11 +5,11 @@
FastAPI à¦à¦à§à¦à¦à§à¦·à¦®à¦¤à¦¾ সমà§à¦ªà¦¨à§à¦¨, সহà¦à§ শà§à¦à¦¾à¦° à¦à¦¬à¦ দà§à¦°à§à¦¤ à¦à§à¦¡ à¦à¦°à§ পà§à¦°à§à¦¡à¦¾à¦à¦¶à¦¨à§à¦° à¦à¦¨à§à¦¯ ফà§à¦°à¦¾à¦®à¦à§à¦¾à¦°à§à¦à¥¤
-
-
+
+
-
-
+
+
@@ -20,7 +20,7 @@
**নিরà§à¦¦à§à¦¶à¦¿à¦à¦¾ নথি**: https://fastapi.tiangolo.com
-**সà§à¦°à§à¦¸ à¦à§à¦¡**: https://github.com/tiangolo/fastapi
+**সà§à¦°à§à¦¸ à¦à§à¦¡**: https://github.com/fastapi/fastapi
---
@@ -61,7 +61,7 @@ FastAPI à¦à¦à¦à¦¿ à¦à¦§à§à¦¨à¦¿à¦, দà§à¦°à§à¦¤ ( বà§à¦¶à¦¿ à¦à§
"_à¦à¦®à¦¿ à¦à¦à¦à¦¾à¦² **FastAPI** বà§à¦¯à¦¬à¦¹à¦¾à¦° à¦à¦°à¦à¦¿à¥¤ [...] à¦à¦®à¦°à¦¾ à¦à¦¾à¦¬à¦à¦¿ মাà¦à¦à§à¦°à§à¦¸à¦«à§à¦à§ **ML সারà§à¦à¦¿à¦¸** ঠসà¦à¦² দলà§à¦° à¦à¦¨à§à¦¯ à¦à¦à¦¿ বà§à¦¯à¦¬à¦¹à¦¾à¦° à¦à¦°à¦¬à¥¤ যার মধà§à¦¯à§ à¦à¦¿à¦à§ পণà§à¦¯ **Windows** ঠসà¦à¦¯à§à¦¯à¦¨ হৠà¦à¦¬à¦ à¦à¦¿à¦à§ **Office** à¦à¦° সাথৠসà¦à¦¯à§à¦¯à¦¨ হà¦à§à¦à§à¥¤_"
-
à¦à¦¬à¦¿à¦° à¦à¦¾à¦¨ -
মাà¦à¦à§à¦°à§à¦¸à¦«à§à¦à§ (ref)
+à¦à¦¬à¦¿à¦° à¦à¦¾à¦¨ -
মাà¦à¦à§à¦°à§à¦¸à¦«à§à¦à§ (ref)
---
diff --git a/docs/de/docs/contributing.md b/docs/de/docs/contributing.md
index 07a3c9a788..b1bd624966 100644
--- a/docs/de/docs/contributing.md
+++ b/docs/de/docs/contributing.md
@@ -4,7 +4,7 @@ Vielleicht möchten Sie sich zuerst die grundlegenden Möglichkeiten anschauen,
## Entwicklung
-Wenn Sie das fastapi Repository bereits geklont haben und tief in den Code eintauchen möchten, hier einen Leitfaden zum Einrichten Ihrer Umgebung.
+Wenn Sie das fastapi Repository bereits geklont haben und tief in den Code eintauchen möchten, hier einen Leitfaden zum Einrichten Ihrer Umgebung.
### Virtuelle Umgebung mit `venv`
@@ -257,7 +257,7 @@ Hier sind die Schritte, die Ihnen bei Ãbersetzungen helfen.
#### Tipps und Richtlinien
-* Schauen Sie nach aktuellen Pull Requests für Ihre Sprache. Sie können die Pull Requests nach dem Label für Ihre Sprache filtern. Für Spanisch lautet das Label beispielsweise `lang-es`.
+* Schauen Sie nach aktuellen Pull Requests für Ihre Sprache. Sie können die Pull Requests nach dem Label für Ihre Sprache filtern. Für Spanisch lautet das Label beispielsweise `lang-es`.
* Sehen Sie diese Pull Requests durch (Review), schlagen Sie Ãnderungen vor, oder segnen Sie sie ab (Approval). Bei den Sprachen, die ich nicht spreche, warte ich, bis mehrere andere die Ãbersetzung durchgesehen haben, bevor ich den Pull Request merge.
@@ -266,7 +266,7 @@ Hier sind die Schritte, die Ihnen bei Ãbersetzungen helfen.
Schauen Sie sich die Dokumentation an, wie man ein Review zu einem Pull Request hinzufügt, welches den PR absegnet oder Ãnderungen vorschlägt.
-* Ãberprüfen Sie, ob es eine GitHub-Diskussion gibt, die Ãbersetzungen für Ihre Sprache koordiniert. Sie können sie abonnieren, und wenn ein neuer Pull Request zum Review vorliegt, wird der Diskussion automatisch ein Kommentar hinzugefügt.
+* Ãberprüfen Sie, ob es eine GitHub-Diskussion gibt, die Ãbersetzungen für Ihre Sprache koordiniert. Sie können sie abonnieren, und wenn ein neuer Pull Request zum Review vorliegt, wird der Diskussion automatisch ein Kommentar hinzugefügt.
* Wenn Sie Seiten übersetzen, fügen Sie einen einzelnen Pull Request pro übersetzter Seite hinzu. Dadurch wird es für andere viel einfacher, ihn zu durchzusehen.
diff --git a/docs/de/docs/external-links.md b/docs/de/docs/external-links.md
index d97f4d39cf..1dfa707678 100644
--- a/docs/de/docs/external-links.md
+++ b/docs/de/docs/external-links.md
@@ -7,10 +7,10 @@ Es gibt viele Beiträge, Artikel, Tools und Projekte zum Thema **FastAPI**.
Hier ist eine unvollständige Liste einiger davon.
!!! tip "Tipp"
- Wenn Sie einen Artikel, ein Projekt, ein Tool oder irgendetwas im Zusammenhang mit **FastAPI** haben, was hier noch nicht aufgeführt ist, erstellen Sie einen Pull Request und fügen Sie es hinzu.
+ Wenn Sie einen Artikel, ein Projekt, ein Tool oder irgendetwas im Zusammenhang mit **FastAPI** haben, was hier noch nicht aufgeführt ist, erstellen Sie einen Pull Request und fügen Sie es hinzu.
!!! note "Hinweis Deutsche Ãbersetzung"
- Die folgenden Ãberschriften und Links werden aus einer anderen Datei gelesen und sind daher nicht ins Deutsche übersetzt.
+ Die folgenden Ãberschriften und Links werden aus einer anderen Datei gelesen und sind daher nicht ins Deutsche übersetzt.
{% for section_name, section_content in external_links.items() %}
diff --git a/docs/de/docs/fastapi-people.md b/docs/de/docs/fastapi-people.md
index 522a4bce55..deaecf2144 100644
--- a/docs/de/docs/fastapi-people.md
+++ b/docs/de/docs/fastapi-people.md
@@ -89,7 +89,7 @@ Sie haben Quellcode, Dokumentation, Ãbersetzungen, usw. beigesteuert. ð¦
{% endif %}
-Es gibt viele andere Mitwirkende (mehr als hundert), Sie können sie alle auf der FastAPI GitHub Contributors-Seite sehen. ð·
+Es gibt viele andere Mitwirkende (mehr als hundert), Sie können sie alle auf der FastAPI GitHub Contributors-Seite sehen. ð·
## Top-Rezensenten
@@ -169,7 +169,7 @@ Der Hauptzweck dieser Seite ist es zu zeigen, wie die Gemeinschaft anderen hilft
Das beinhaltet auch Hilfe, die normalerweise weniger sichtbar und in vielen Fällen mühsamer ist, wie, anderen bei Problemen zu helfen und Pull Requests mit Ãbersetzungen zu überprüfen.
-Diese Daten werden jeden Monat berechnet, Sie können den Quellcode hier lesen.
+Diese Daten werden jeden Monat berechnet, Sie können den Quellcode hier lesen.
Hier weise ich auch auf Beiträge von Sponsoren hin.
diff --git a/docs/de/docs/help-fastapi.md b/docs/de/docs/help-fastapi.md
index bdc07e55f1..d7d7b3359c 100644
--- a/docs/de/docs/help-fastapi.md
+++ b/docs/de/docs/help-fastapi.md
@@ -25,13 +25,13 @@ Sie können den (unregelmäÃig erscheinenden) [**FastAPI and Friends**-Newslett
## **FastAPI** auf GitHub einen Stern geben
-Sie können FastAPI auf GitHub âstarrenâ (durch Klicken auf den Stern-Button oben rechts): https://github.com/tiangolo/fastapi. âï¸
+Sie können FastAPI auf GitHub âstarrenâ (durch Klicken auf den Stern-Button oben rechts): https://github.com/fastapi/fastapi. âï¸
Durch das Hinzufügen eines Sterns können andere Benutzer es leichter finden und sehen, dass es für andere bereits nützlich war.
## Das GitHub-Repository auf Releases beobachten
-Sie können FastAPI in GitHub beobachten (Klicken Sie oben rechts auf den Button âwatchâ): https://github.com/tiangolo/fastapi. ð
+Sie können FastAPI in GitHub beobachten (Klicken Sie oben rechts auf den Button âwatchâ): https://github.com/fastapi/fastapi. ð
Dort können Sie âReleases onlyâ auswählen.
@@ -58,7 +58,7 @@ Insbesondere:
## Ãber **FastAPI** tweeten
-Tweeten Sie über **FastAPI** und teilen Sie mir und anderen mit, warum es Ihnen gefällt. ð
+Tweeten Sie über **FastAPI** und teilen Sie mir und anderen mit, warum es Ihnen gefällt. ð
Ich höre gerne, wie **FastAPI** verwendet wird, was Ihnen daran gefallen hat, in welchem Projekt/Unternehmen Sie es verwenden, usw.
@@ -72,8 +72,8 @@ Ich höre gerne, wie **FastAPI** verwendet wird, was Ihnen daran gefallen hat, i
Sie können versuchen, anderen bei ihren Fragen zu helfen:
-* GitHub-Diskussionen
-* GitHub-Issues
+* GitHub-Diskussionen
+* GitHub-Issues
In vielen Fällen kennen Sie möglicherweise bereits die Antwort auf diese Fragen. ð¤
@@ -124,7 +124,7 @@ Wenn die Person antwortet, besteht eine hohe Chance, dass Sie ihr Problem gelös
## Das GitHub-Repository beobachten
-Sie können FastAPI auf GitHub âbeobachtenâ (Klicken Sie oben rechts auf die Schaltfläche âwatchâ): https://github.com/tiangolo/fastapi. ð
+Sie können FastAPI auf GitHub âbeobachtenâ (Klicken Sie oben rechts auf die Schaltfläche âwatchâ): https://github.com/fastapi/fastapi. ð
Wenn Sie dann âWatchingâ statt âReleases onlyâ auswählen, erhalten Sie Benachrichtigungen, wenn jemand ein neues Issue eröffnet oder eine neue Frage stellt. Sie können auch spezifizieren, dass Sie nur über neue Issues, Diskussionen, PRs, usw. benachrichtigt werden möchten.
@@ -132,7 +132,7 @@ Dann können Sie versuchen, bei der Lösung solcher Fragen zu helfen.
## Fragen stellen
-Sie können im GitHub-Repository eine neue Frage erstellen, zum Beispiel:
+Sie können im GitHub-Repository eine neue Frage erstellen, zum Beispiel:
* Stellen Sie eine **Frage** oder bitten Sie um Hilfe mit einem **Problem**.
* Schlagen Sie eine neue **Funktionalität** vor.
@@ -195,7 +195,7 @@ Und wenn es irgendeinen anderen Stil- oder Konsistenz-Bedarf gibt, bitte ich dir
Sie können zum Quellcode mit Pull Requests [beitragen](contributing.md){.internal-link target=_blank}, zum Beispiel:
* Um einen Tippfehler zu beheben, den Sie in der Dokumentation gefunden haben.
-* Um einen Artikel, ein Video oder einen Podcast über FastAPI zu teilen, den Sie erstellt oder gefunden haben, indem Sie diese Datei bearbeiten.
+* Um einen Artikel, ein Video oder einen Podcast über FastAPI zu teilen, den Sie erstellt oder gefunden haben, indem Sie diese Datei bearbeiten.
* Stellen Sie sicher, dass Sie Ihren Link am Anfang des entsprechenden Abschnitts einfügen.
* Um zu helfen, [die Dokumentation in Ihre Sprache zu übersetzen](contributing.md#ubersetzungen){.internal-link target=_blank}.
* Sie können auch dabei helfen, die von anderen erstellten Ãbersetzungen zu überprüfen (Review).
@@ -226,7 +226,7 @@ Wenn Sie mir dabei helfen können, **helfen Sie mir, FastAPI am Laufen zu erhalt
Treten Sie dem ð¥ Discord-Chatserver ð¥ bei und treffen Sie sich mit anderen Mitgliedern der FastAPI-Community.
!!! tip "Tipp"
- Wenn Sie Fragen haben, stellen Sie sie bei GitHub Diskussionen, es besteht eine viel bessere Chance, dass Sie hier Hilfe von den [FastAPI-Experten](fastapi-people.md#experten){.internal-link target=_blank} erhalten.
+ Wenn Sie Fragen haben, stellen Sie sie bei GitHub Diskussionen, es besteht eine viel bessere Chance, dass Sie hier Hilfe von den [FastAPI-Experten](fastapi-people.md#experten){.internal-link target=_blank} erhalten.
Nutzen Sie den Chat nur für andere allgemeine Gespräche.
diff --git a/docs/de/docs/history-design-future.md b/docs/de/docs/history-design-future.md
index 22597b1f5a..ee917608e4 100644
--- a/docs/de/docs/history-design-future.md
+++ b/docs/de/docs/history-design-future.md
@@ -1,6 +1,6 @@
# Geschichte, Design und Zukunft
-Vor einiger Zeit fragte ein **FastAPI**-Benutzer:
+Vor einiger Zeit fragte ein **FastAPI**-Benutzer:
> Was ist die Geschichte dieses Projekts? Es scheint, als wäre es in ein paar Wochen aus dem Nichts zu etwas GroÃartigem geworden [...]
diff --git a/docs/de/docs/index.md b/docs/de/docs/index.md
index e3c5be3210..3789c59986 100644
--- a/docs/de/docs/index.md
+++ b/docs/de/docs/index.md
@@ -11,11 +11,11 @@
FastAPI Framework, hochperformant, leicht zu erlernen, schnell zu programmieren, einsatzbereit
-
-
+
+
-
-
+
+
@@ -29,7 +29,7 @@
**Dokumentation**: https://fastapi.tiangolo.com
-**Quellcode**: https://github.com/tiangolo/fastapi
+**Quellcode**: https://github.com/fastapi/fastapi
---
@@ -70,7 +70,7 @@ Seine Schlüssel-Merkmale sind:
â_[...] Ich verwende **FastAPI** heutzutage sehr oft. [...] Ich habe tatsächlich vor, es für alle **ML-Dienste meines Teams bei Microsoft** zu verwenden. Einige davon werden in das Kernprodukt **Windows** und einige **Office**-Produkte integriert._â
-
Kabir Khan -
Microsoft (Ref)
+Kabir Khan -
Microsoft (Ref)
---
diff --git a/docs/de/docs/project-generation.md b/docs/de/docs/project-generation.md
index c1ae6512de..c47bcb6d30 100644
--- a/docs/de/docs/project-generation.md
+++ b/docs/de/docs/project-generation.md
@@ -14,7 +14,7 @@ GitHub: **FastAPI**-Backend:
+* Python **FastAPI**-Backend:
* **Schnell**: Sehr hohe Leistung, auf Augenhöhe mit **NodeJS** und **Go** (dank Starlette und Pydantic).
* **Intuitiv**: Hervorragende Editor-Unterstützung. Codevervollständigung überall. Weniger Zeitaufwand für das Debuggen.
* **Einfach**: Einfach zu bedienen und zu erlernen. Weniger Zeit für das Lesen von Dokumentationen.
diff --git a/docs/em/docs/contributing.md b/docs/em/docs/contributing.md
index 748928f88f..08561d8f8a 100644
--- a/docs/em/docs/contributing.md
+++ b/docs/em/docs/contributing.md
@@ -233,14 +233,14 @@ Uvicorn ð¢ ð âï¸ â´ `8000`, ð§¾ ð â´ `8008` ð ð« â.
#### ðââ & ð
-* â
â³ â» ð² ð¨ ð ðªð¸ & ð® ð â ð âï¸ â ð«.
+* â
â³ â» ð² ð¨ ð ðªð¸ & ð® ð â ð âï¸ â ð«.
!!! tip
ð ðª ð® ð¤ â®ï¸ ð ð â» ð² ð¨.
â
𩺠ð â ð² ð¨ ð â â«ï¸ âï¸ ð¨ ð.
-* â
â ð ð¥ ð¤ 1ï¸â£ ð ï¸ â ð ðªð¸.
+* â
â ð ð¥ ð¤ 1ï¸â£ ð ï¸ â ð ðªð¸.
* ð® ð ð² ð¨ ð ð ð¬. ð ð â â«ï¸ ð
â© ð ð â«ï¸.
diff --git a/docs/em/docs/external-links.md b/docs/em/docs/external-links.md
index 5ba668bfac..08db2d4c1e 100644
--- a/docs/em/docs/external-links.md
+++ b/docs/em/docs/external-links.md
@@ -7,7 +7,7 @@
ð¥ â ð ð«.
!!! tip
- ð¥ ð âï¸ ð, ð, ð§°, âï¸ ð³ ð **FastAPI** ð ð« ð ð¥, â ð² ð¨ â â«ï¸.
+ ð¥ ð âï¸ ð, ð, ð§°, âï¸ ð³ ð **FastAPI** ð ð« ð ð¥, â ð² ð¨ â â«ï¸.
## ð
diff --git a/docs/em/docs/fastapi-people.md b/docs/em/docs/fastapi-people.md
index d3c7d2038f..75880e216f 100644
--- a/docs/em/docs/fastapi-people.md
+++ b/docs/em/docs/fastapi-people.md
@@ -89,7 +89,7 @@ FastAPI âï¸ ð ðª ð ð ð«ð« âªï¸â¡ï¸ ð ð¥.
{% endif %}
-ð¤ ð ð ð¨âð¬ (ð
ð ð¯), ð ðª ð ð« ð FastAPI ð ð¨âð¬ ð. ð¶
+ð¤ ð ð ð¨âð¬ (ð
ð ð¯), ð ðª ð ð« ð FastAPI ð ð¨âð¬ ð. ð¶
## ð ð¨âð¬
@@ -176,7 +176,7 @@ FastAPI âï¸ ð ðª ð ð ð«ð« âªï¸â¡ï¸ ð ð¥.
â´ï¸ â
ð¯ ð ð ð â, & ð ð¼ ð
ð©, ð ð¤ ð â®ï¸ â & â ð² ð¨ â®ï¸ â.
-ð½ â ð ðï¸, ð ðª â â¹ ð ð¥.
+ð½ â ð ðï¸, ð ðª â â¹ ð ð¥.
ð¥ ð¤ ð¦ ð° âªï¸â¡ï¸ ð°.
diff --git a/docs/em/docs/help-fastapi.md b/docs/em/docs/help-fastapi.md
index fbb9ca9a90..4a285062d9 100644
--- a/docs/em/docs/help-fastapi.md
+++ b/docs/em/docs/help-fastapi.md
@@ -26,13 +26,13 @@
## â´ **FastAPI** ð
-ð ðª "â´" FastAPI ð (ð â´ ð¼ ð â¶ï¸ï¸): https://github.com/tiangolo/fastapi. ð¶ ð¶
+ð ðª "â´" FastAPI ð (ð â´ ð¼ ð â¶ï¸ï¸): https://github.com/fastapi/fastapi. ð¶ ð¶
â â´, ð ð©âð» ð ðª ð â«ï¸ ð
ðª & ð ð â«ï¸ âï¸ âª â ð.
## â ð ð ð
-ð ðª "â" FastAPI ð (ð "â" ð¼ ð â¶ï¸ï¸): https://github.com/tiangolo/fastapi. ð¶
+ð ðª "â" FastAPI ð (ð "â" ð¼ ð â¶ï¸ï¸): https://github.com/fastapi/fastapi. ð¶
ð¤ ð ðª ð "ð ð´".
@@ -59,7 +59,7 @@
## ð±ð ð **FastAPI**
-ð±ð ð **FastAPI** & â¡ï¸ ð¤ & ð ð â«ï¸â ð ð â«ï¸. ð¶
+ð±ð ð **FastAPI** & â¡ï¸ ð¤ & ð ð â«ï¸â ð ð â«ï¸. ð¶
ð¤ ð ð ð â **FastAPI** ðââ âï¸, â«ï¸â ð âï¸ ð â«ï¸, â ð/ð¢ ð âï¸ â«ï¸, âï¸.
@@ -73,8 +73,8 @@
ð ðª ð & â¹ ð â®ï¸ ð« â:
-* ð ð¬
-* ð â
+* ð ð¬
+* ð â
ð ð¼ ð 5ï¸â£ð ⪠ð â ð â. ð¶
@@ -125,7 +125,7 @@
## â ð ð
-ð ðª "â" FastAPI ð (ð "â" ð¼ ð â¶ï¸ï¸): https://github.com/tiangolo/fastapi. ð¶
+ð ðª "â" FastAPI ð (ð "â" ð¼ ð â¶ï¸ï¸): https://github.com/fastapi/fastapi. ð¶
ð¥ ð ð "ð" â©ï¸ "ð ð´" ð ð ð¨ ð¨ ðâ ð± â ð â âï¸ â. ð ðª â ð ð ð´ ð ð¨ ð ð â, âï¸ ð¬, âï¸ ð¸, âï¸.
@@ -133,7 +133,7 @@
## ð â
-ð ðª â ð â ð ð, ð¼:
+ð ðª â ð â ð ð, ð¼:
* ð **â** âï¸ ð ð **â **.
* ð¤ ð **â**.
@@ -196,7 +196,7 @@
ð ðª [ð](contributing.md){.internal-link target=_blank} â¹ ð â®ï¸ ð² ð¨, ð¼:
* ð§ ð¤ ð ð ð ð§¾.
-* ð° ð, ð¹, âï¸ ð» ð â âï¸ ð ð FastAPI â ð ð.
+* ð° ð, ð¹, âï¸ ð» ð â âï¸ ð ð FastAPI â ð ð.
* â ð ð ð® ð ð â¶ï¸ ð ð.
* â¹ [ð¬ ð§¾](contributing.md#_9){.internal-link target=_blank} ð ðªð¸.
* ð ðª â¹ ð â â ð.
@@ -227,7 +227,7 @@
ð ð¶ ð§ ð¬ ð½ ð¶ & ð¤ ð
â®ï¸ ð FastAPI ðª.
!!! tip
- â, ð ð« ð ð¬, ð¤ ð
ð ð¤ ð ð ð¨ â¹ [FastAPI ð´](fastapi-people.md#_2){.internal-link target=_blank}.
+ â, ð ð« ð ð¬, ð¤ ð
ð ð¤ ð ð ð¨ â¹ [FastAPI ð´](fastapi-people.md#_2){.internal-link target=_blank}.
âï¸ ð¬ ð´ ð ð¢ ð¬.
diff --git a/docs/em/docs/history-design-future.md b/docs/em/docs/history-design-future.md
index 7a45fe14b9..2238bec2b4 100644
--- a/docs/em/docs/history-design-future.md
+++ b/docs/em/docs/history-design-future.md
@@ -1,6 +1,6 @@
# ð, ð§ & ð®
-ð° ð, **FastAPI** ð©âð» ð:
+ð° ð, **FastAPI** ð©âð» ð:
> â«ï¸â ð ð ð â â«ï¸ ð âï¸ ð âªï¸â¡ï¸ ð³ ð ð©ââ¤âð¨ ðï¸ [...]
diff --git a/docs/em/docs/index.md b/docs/em/docs/index.md
index 0b5cca86fa..a7d1d06f94 100644
--- a/docs/em/docs/index.md
+++ b/docs/em/docs/index.md
@@ -11,11 +11,11 @@
FastAPI ð ï¸, â ð, â© ð¡, â© ð, ð ð
-
-
+
+
-
-
+
+
@@ -29,7 +29,7 @@
**ð§¾**: https://fastapi.tiangolo.com
-**â¹ ð**: https://github.com/tiangolo/fastapi
+**â¹ ð**: https://github.com/fastapi/fastapi
---
@@ -69,7 +69,7 @@ FastAPI ð, â© (â-ð), ð¸ ð ï¸ ð ð ï¸ â®ï¸ ð 3ï¸â£.8ï¸
"_[...] ð¤ âï¸ **FastAPI** ð ð« ð. [...] ð¤ ð¤ ð âï¸ â«ï¸ ð ð ð **â ðâ𦺠ð¤¸ââ**. ð« ðââ ð ï¸ ð ð **ð¥** ð¬ & **ð ** ð¬._"
-
+
---
diff --git a/docs/em/docs/project-generation.md b/docs/em/docs/project-generation.md
index ae959e1d5c..ef6a218215 100644
--- a/docs/em/docs/project-generation.md
+++ b/docs/em/docs/project-generation.md
@@ -14,7 +14,7 @@
* â ð ð³ ð ï¸.
* **â â** ð ï¸ & ð ï¸ ð§ð¿ ð ï¸.
* **ð ð** ð ð¸ ð½ âï¸ Uvicorn & ð.
-* ð **FastAPI** ð©âð»:
+* ð **FastAPI** ð©âð»:
* **â©**: ð¶ â ð, ð ð·ðª â®ï¸ **â³** & **ð¶** (ð ð & Pydantic).
* **ðï¸**: ð ð¨âð¨ ðâð¦º. ð ï¸ ð. ð ð° ð ï¸.
* **â©**: ð§ â© âï¸ & ð¡. ð ð° ð ð©º.
diff --git a/docs/en/docs/contributing.md b/docs/en/docs/contributing.md
index 2d308a9dbd..d7ec25dea3 100644
--- a/docs/en/docs/contributing.md
+++ b/docs/en/docs/contributing.md
@@ -4,7 +4,7 @@ First, you might want to see the basic ways to [help FastAPI and get help](help-
## Developing
-If you already cloned the fastapi repository and you want to deep dive in the code, here are some guidelines to set up your environment.
+If you already cloned the fastapi repository and you want to deep dive in the code, here are some guidelines to set up your environment.
### Virtual environment with `venv`
@@ -257,7 +257,7 @@ Here are the steps to help with translations.
#### Tips and guidelines
-* Check the currently existing pull requests for your language. You can filter the pull requests by the ones with the label for your language. For example, for Spanish, the label is `lang-es`.
+* Check the currently existing pull requests for your language. You can filter the pull requests by the ones with the label for your language. For example, for Spanish, the label is `lang-es`.
* Review those pull requests, requesting changes or approving them. For the languages I don't speak, I'll wait for several others to review the translation before merging.
@@ -266,7 +266,7 @@ Here are the steps to help with translations.
Check the docs about adding a pull request review to approve it or request changes.
-* Check if there's a GitHub Discussion to coordinate translations for your language. You can subscribe to it, and when there's a new pull request to review, an automatic comment will be added to the discussion.
+* Check if there's a GitHub Discussion to coordinate translations for your language. You can subscribe to it, and when there's a new pull request to review, an automatic comment will be added to the discussion.
* If you translate pages, add a single pull request per page translated. That will make it much easier for others to review it.
diff --git a/docs/en/docs/external-links.md b/docs/en/docs/external-links.md
index b89021ee2c..1a36390f5e 100644
--- a/docs/en/docs/external-links.md
+++ b/docs/en/docs/external-links.md
@@ -7,7 +7,7 @@ There are many posts, articles, tools, and projects, related to **FastAPI**.
Here's an incomplete list of some of them.
!!! tip
- If you have an article, project, tool, or anything related to **FastAPI** that is not yet listed here, create a Pull Request adding it.
+ If you have an article, project, tool, or anything related to **FastAPI** that is not yet listed here, create a Pull Request adding it.
{% for section_name, section_content in external_links.items() %}
diff --git a/docs/en/docs/fastapi-people.md b/docs/en/docs/fastapi-people.md
index 80eee8cb06..c9fcc38665 100644
--- a/docs/en/docs/fastapi-people.md
+++ b/docs/en/docs/fastapi-people.md
@@ -167,7 +167,7 @@ They have contributed source code, documentation, translations, etc. ð¦
{% endif %}
-There are many other contributors (more than a hundred), you can see them all in the FastAPI GitHub Contributors page. ð·
+There are many other contributors (more than a hundred), you can see them all in the FastAPI GitHub Contributors page. ð·
## Top Translation Reviewers
@@ -248,7 +248,7 @@ The main intention of this page is to highlight the effort of the community to h
Especially including efforts that are normally less visible, and in many cases more arduous, like helping others with questions and reviewing Pull Requests with translations.
-The data is calculated each month, you can read the source code here.
+The data is calculated each month, you can read the source code here.
Here I'm also highlighting contributions from sponsors.
diff --git a/docs/en/docs/help-fastapi.md b/docs/en/docs/help-fastapi.md
index 1214477397..ab2dff39b6 100644
--- a/docs/en/docs/help-fastapi.md
+++ b/docs/en/docs/help-fastapi.md
@@ -26,13 +26,13 @@ You can subscribe to the (infrequent) [**FastAPI and friends** newsletter](newsl
## Star **FastAPI** in GitHub
-You can "star" FastAPI in GitHub (clicking the star button at the top right): https://github.com/tiangolo/fastapi. âï¸
+You can "star" FastAPI in GitHub (clicking the star button at the top right): https://github.com/fastapi/fastapi. âï¸
By adding a star, other users will be able to find it more easily and see that it has been already useful for others.
## Watch the GitHub repository for releases
-You can "watch" FastAPI in GitHub (clicking the "watch" button at the top right): https://github.com/tiangolo/fastapi. ð
+You can "watch" FastAPI in GitHub (clicking the "watch" button at the top right): https://github.com/fastapi/fastapi. ð
There you can select "Releases only".
@@ -59,7 +59,7 @@ You can:
## Tweet about **FastAPI**
-Tweet about **FastAPI** and let me and others know why you like it. ð
+Tweet about **FastAPI** and let me and others know why you like it. ð
I love to hear about how **FastAPI** is being used, what you have liked in it, in which project/company are you using it, etc.
@@ -73,8 +73,8 @@ I love to hear about how **FastAPI** is being used, what you have liked in it, i
You can try and help others with their questions in:
-* GitHub Discussions
-* GitHub Issues
+* GitHub Discussions
+* GitHub Issues
In many cases you might already know the answer for those questions. ð¤
@@ -125,7 +125,7 @@ If they reply, there's a high chance you would have solved their problem, congra
## Watch the GitHub repository
-You can "watch" FastAPI in GitHub (clicking the "watch" button at the top right): https://github.com/tiangolo/fastapi. ð
+You can "watch" FastAPI in GitHub (clicking the "watch" button at the top right): https://github.com/fastapi/fastapi. ð
If you select "Watching" instead of "Releases only" you will receive notifications when someone creates a new issue or question. You can also specify that you only want to be notified about new issues, or discussions, or PRs, etc.
@@ -133,7 +133,7 @@ Then you can try and help them solve those questions.
## Ask Questions
-You can create a new question in the GitHub repository, for example to:
+You can create a new question in the GitHub repository, for example to:
* Ask a **question** or ask about a **problem**.
* Suggest a new **feature**.
@@ -196,7 +196,7 @@ And if there's any other style or consistency need, I'll ask directly for that,
You can [contribute](contributing.md){.internal-link target=_blank} to the source code with Pull Requests, for example:
* To fix a typo you found on the documentation.
-* To share an article, video, or podcast you created or found about FastAPI by editing this file.
+* To share an article, video, or podcast you created or found about FastAPI by editing this file.
* Make sure you add your link to the start of the corresponding section.
* To help [translate the documentation](contributing.md#translations){.internal-link target=_blank} to your language.
* You can also help to review the translations created by others.
@@ -227,7 +227,7 @@ If you can help me with that, **you are helping me maintain FastAPI** and making
Join the ð¥ Discord chat server ð¥ and hang out with others in the FastAPI community.
!!! tip
- For questions, ask them in GitHub Discussions, there's a much better chance you will receive help by the [FastAPI Experts](fastapi-people.md#fastapi-experts){.internal-link target=_blank}.
+ For questions, ask them in GitHub Discussions, there's a much better chance you will receive help by the [FastAPI Experts](fastapi-people.md#fastapi-experts){.internal-link target=_blank}.
Use the chat only for other general conversations.
diff --git a/docs/en/docs/history-design-future.md b/docs/en/docs/history-design-future.md
index 7824fb080f..b4a744d64b 100644
--- a/docs/en/docs/history-design-future.md
+++ b/docs/en/docs/history-design-future.md
@@ -1,6 +1,6 @@
# History, Design and Future
-Some time ago, a **FastAPI** user asked:
+Some time ago, a **FastAPI** user asked:
> Whatâs the history of this project? It seems to have come from nowhere to awesome in a few weeks [...]
diff --git a/docs/en/docs/index.md b/docs/en/docs/index.md
index 75f27d04fe..73357542f8 100644
--- a/docs/en/docs/index.md
+++ b/docs/en/docs/index.md
@@ -11,11 +11,11 @@
FastAPI framework, high performance, easy to learn, fast to code, ready for production
-
-
+
+
-
-
+
+
@@ -29,7 +29,7 @@
**Documentation**: https://fastapi.tiangolo.com
-**Source Code**: https://github.com/tiangolo/fastapi
+**Source Code**: https://github.com/fastapi/fastapi
---
@@ -69,7 +69,7 @@ The key features are:
"_[...] I'm using **FastAPI** a ton these days. [...] I'm actually planning to use it for all of my team's **ML services at Microsoft**. Some of them are getting integrated into the core **Windows** product and some **Office** products._"
-
Kabir Khan -
Microsoft (ref)
+Kabir Khan -
Microsoft (ref)
---
diff --git a/docs/en/docs/js/custom.js b/docs/en/docs/js/custom.js
index 0008db49e3..b7e5236f3e 100644
--- a/docs/en/docs/js/custom.js
+++ b/docs/en/docs/js/custom.js
@@ -163,7 +163,7 @@ async function main() {
div.innerHTML = ''
const ul = document.querySelector('.github-topic-projects ul')
data.forEach(v => {
- if (v.full_name === 'tiangolo/fastapi') {
+ if (v.full_name === 'fastapi/fastapi') {
return
}
const li = document.createElement('li')
diff --git a/docs/en/docs/management-tasks.md b/docs/en/docs/management-tasks.md
index 231dbe24d1..efda1a703b 100644
--- a/docs/en/docs/management-tasks.md
+++ b/docs/en/docs/management-tasks.md
@@ -173,11 +173,11 @@ INHERIT: ../en/mkdocs.yml
The language code would normally be in the ISO 639-1 list of language codes.
-In any case, the language code should be in the file docs/language_names.yml.
+In any case, the language code should be in the file docs/language_names.yml.
There won't be yet a label for the language code, for example, if it was Bosnian, there wouldn't be a `lang-bs`. Before creating the label and adding it to the PR, create the GitHub Discussion:
-* Go to the Translations GitHub Discussions
+* Go to the Translations GitHub Discussions
* Create a new discussion with the title `Bosnian Translations` (or the language name in English)
* A description of:
@@ -186,7 +186,7 @@ There won't be yet a label for the language code, for example, if it was Bosnian
This is the issue to track translations of the docs to Bosnian. ð
-Here are the [PRs to review with the label `lang-bs`](https://github.com/tiangolo/fastapi/pulls?q=is%3Apr+is%3Aopen+sort%3Aupdated-desc+label%3Alang-bs+label%3A%22awaiting-review%22). ð¤
+Here are the [PRs to review with the label `lang-bs`](https://github.com/fastapi/fastapi/pulls?q=is%3Apr+is%3Aopen+sort%3Aupdated-desc+label%3Alang-bs+label%3A%22awaiting-review%22). ð¤
```
Update "Bosnian" with the new language.
@@ -219,13 +219,13 @@ A PR should have a specific use case that it is solving.
## FastAPI People PRs
-Every month, a GitHub Action updates the FastAPI People data. Those PRs look like this one: ð¥ Update FastAPI People.
+Every month, a GitHub Action updates the FastAPI People data. Those PRs look like this one: ð¥ Update FastAPI People.
If the tests are passing, you can merge it right away.
## External Links PRs
-When people add external links they edit this file external_links.yml.
+When people add external links they edit this file external_links.yml.
* Make sure the new link is in the correct category (e.g. "Podcasts") and language (e.g. "Japanese").
* A new link should be at the top of its list.
@@ -251,6 +251,6 @@ When a question in GitHub Discussions has been answered, mark the answer by clic
Many of the current Discussion Questions were migrated from old issues. Many have the label `answered`, that means they were answered when they were issues, but now in GitHub Discussions, it's not known what is the actual response from the messages.
-You can filter discussions by [`Questions` that are `Unanswered` and have the label `answered`](https://github.com/tiangolo/fastapi/discussions/categories/questions?discussions_q=category%3AQuestions+is%3Aopen+label%3Aanswered+is%3Aunanswered).
+You can filter discussions by [`Questions` that are `Unanswered` and have the label `answered`](https://github.com/fastapi/fastapi/discussions/categories/questions?discussions_q=category%3AQuestions+is%3Aopen+label%3Aanswered+is%3Aunanswered).
All of those discussions already have an answer in the conversation, you can find it and mark it with the "Mark as answer" button.
diff --git a/docs/en/mkdocs.yml b/docs/en/mkdocs.yml
index 81baa051a9..c13e36798f 100644
--- a/docs/en/mkdocs.yml
+++ b/docs/en/mkdocs.yml
@@ -36,8 +36,8 @@ theme:
logo: img/icon-white.svg
favicon: img/favicon.png
language: en
-repo_name: tiangolo/fastapi
-repo_url: https://github.com/tiangolo/fastapi
+repo_name: fastapi/fastapi
+repo_url: https://github.com/fastapi/fastapi
edit_uri: ''
plugins:
search: null
@@ -259,7 +259,7 @@ extra:
property: G-YNEVN69SC3
social:
- icon: fontawesome/brands/github-alt
- link: https://github.com/tiangolo/fastapi
+ link: https://github.com/fastapi/fastapi
- icon: fontawesome/brands/discord
link: https://discord.gg/VQjSZaeJmf
- icon: fontawesome/brands/twitter
diff --git a/docs/es/docs/external-links.md b/docs/es/docs/external-links.md
index cfbdd68a6a..481f72e9e1 100644
--- a/docs/es/docs/external-links.md
+++ b/docs/es/docs/external-links.md
@@ -7,7 +7,7 @@ Hay muchas publicaciones, artÃculos, herramientas y proyectos relacionados con
Aquà hay una lista incompleta de algunos de ellos.
!!! tip "Consejo"
- Si tienes un artÃculo, proyecto, herramienta o cualquier cosa relacionada con **FastAPI** que aún no aparece aquÃ, crea un Pull Request agregándolo.
+ Si tienes un artÃculo, proyecto, herramienta o cualquier cosa relacionada con **FastAPI** que aún no aparece aquÃ, crea un Pull Request agregándolo.
{% for section_name, section_content in external_links.items() %}
diff --git a/docs/es/docs/index.md b/docs/es/docs/index.md
index 733e4664e4..2b6a2f0bed 100644
--- a/docs/es/docs/index.md
+++ b/docs/es/docs/index.md
@@ -11,11 +11,11 @@
FastAPI framework, alto desempeño, fácil de aprender, rápido de programar, listo para producción
-
-
+
+
-
-
+
+
@@ -26,7 +26,7 @@
**Documentación**: https://fastapi.tiangolo.com
-**Código Fuente**: https://github.com/tiangolo/fastapi
+**Código Fuente**: https://github.com/fastapi/fastapi
---
FastAPI es un web framework moderno y rápido (de alto rendimiento) para construir APIs con Python basado en las anotaciones de tipos estándar de Python.
@@ -66,7 +66,7 @@ Sus caracterÃsticas principales son:
"_[...] I'm using **FastAPI** a ton these days. [...] I'm actually planning to use it for all of my team's **ML services at Microsoft**. Some of them are getting integrated into the core **Windows** product and some **Office** products._"
-
Kabir Khan -
Microsoft (ref)
+Kabir Khan -
Microsoft (ref)
---
diff --git a/docs/fa/docs/index.md b/docs/fa/docs/index.md
index ea80631290..bc8b779410 100644
--- a/docs/fa/docs/index.md
+++ b/docs/fa/docs/index.md
@@ -11,11 +11,11 @@
ÙØ±ÛÙ
âÙØ±Ú© FastAPIØ Ú©Ø§Ø±Ø§ÛÛ Ø¨Ø§ÙØ§Ø ÛØ§Ø¯Ú¯ÛØ±Û Ø¢Ø³Ø§ÙØ کدÙÙÛØ³Û Ø³Ø±ÛØ¹Ø Ø¢Ù
Ø§Ø¯Ù Ø¨Ø±Ø§Û Ø§Ø³ØªÙØ§Ø¯Ù در Ù
ØÛØ· Ù¾Ø±ÙØ¯Ø§Ú©Ø´Ù
-
-
+
+
-
-
+
+
@@ -29,7 +29,7 @@
**Ù
Ø³ØªÙØ¯Ø§Øª**: https://fastapi.tiangolo.com
-**کد Ù
ÙØ¨Ø¹**: https://github.com/tiangolo/fastapi
+**کد Ù
ÙØ¨Ø¹**: https://github.com/fastapi/fastapi
---
FastAPI ÛÚ© ÙØ¨ ÙØ±ÛÙ
âÙØ±Ú© Ù
Ø¯Ø±Ù Ù Ø³Ø±ÛØ¹ (با کاراÛÛ Ø¨Ø§ÙØ§) Ø¨Ø±Ø§Û Ø§ÛØ¬Ø§Ø¯ APIÙØ§Û Ù
تÙÙØ¹ (ÙØ¨Ø ÙØ¨âسÙکت ٠غبرÙ) با Ø²Ø¨Ø§Ù Ù¾Ø§ÛØªÙÙ ÙØ³Ø®Ù +Û³.Û¶ است. اÛÙ ÙØ±ÛÙ
âÙØ±Ú© با Ø±Ø¹Ø§ÛØª کاÙ
٠راÙÙÙ
Ø§Û ÙÙØ¹ داد٠(Type Hint) Ø§ÛØ¬Ø§Ø¯ شد٠است.
@@ -66,7 +66,7 @@ FastAPI ÛÚ© ÙØ¨ ÙØ±ÛÙ
âÙØ±Ú© Ù
Ø¯Ø±Ù Ù Ø³Ø±ÛØ¹ (با کاراÛÛ Ø¨Ø§
[...] I'm using FastAPI a ton these days. [...] I'm actually planning to use it for all of my team's ML services at Microsoft. Some of them are getting integrated into the core Windows product and some Office products."
-Kabir Khan -
Microsoft (ref)
+Kabir Khan -
Microsoft (ref)
---
diff --git a/docs/fr/docs/contributing.md b/docs/fr/docs/contributing.md
index 8292f14bb9..ed4d32f5a1 100644
--- a/docs/fr/docs/contributing.md
+++ b/docs/fr/docs/contributing.md
@@ -269,14 +269,14 @@ Voici les étapes à suivre pour aider à la traduction.
#### Conseils et lignes directrices
-* Vérifiez les pull requests existantes pour votre langue et ajouter des reviews demandant des changements ou les approuvant.
+* Vérifiez les pull requests existantes pour votre langue et ajouter des reviews demandant des changements ou les approuvant.
!!! tip
Vous pouvez ajouter des commentaires avec des suggestions de changement aux pull requests existantes.
Consultez les documents concernant l'ajout d'un review de pull request pour l'approuver ou demander des modifications.
-* Vérifiez dans issues pour voir s'il y a une personne qui coordonne les traductions pour votre langue.
+* Vérifiez dans issues pour voir s'il y a une personne qui coordonne les traductions pour votre langue.
* Ajoutez une seule pull request par page traduite. Il sera ainsi beaucoup plus facile pour les autres de l'examiner.
diff --git a/docs/fr/docs/external-links.md b/docs/fr/docs/external-links.md
index 37b8c5b139..2f928f5235 100644
--- a/docs/fr/docs/external-links.md
+++ b/docs/fr/docs/external-links.md
@@ -7,7 +7,7 @@ Il existe de nombreux articles, outils et projets liés à **FastAPI**.
Voici une liste incomplète de certains d'entre eux.
!!! tip "Astuce"
- Si vous avez un article, projet, outil, ou quoi que ce soit lié à **FastAPI** qui n'est actuellement pas listé ici, créez une Pull Request l'ajoutant.
+ Si vous avez un article, projet, outil, ou quoi que ce soit lié à **FastAPI** qui n'est actuellement pas listé ici, créez une Pull Request l'ajoutant.
{% for section_name, section_content in external_links.items() %}
diff --git a/docs/fr/docs/fastapi-people.md b/docs/fr/docs/fastapi-people.md
index d99dcd9c2b..52a79032a8 100644
--- a/docs/fr/docs/fastapi-people.md
+++ b/docs/fr/docs/fastapi-people.md
@@ -89,7 +89,7 @@ Ils ont contribué au code source, à la documentation, aux traductions, etc.
{% endif %}
-Il existe de nombreux autres contributeurs (plus d'une centaine), vous pouvez les voir tous dans la Page des contributeurs de FastAPI GitHub. ð·
+Il existe de nombreux autres contributeurs (plus d'une centaine), vous pouvez les voir tous dans la Page des contributeurs de FastAPI GitHub. ð·
## Principaux Reviewers
@@ -175,6 +175,6 @@ L'intention de cette page est de souligner l'effort de la communauté pour aider
Notamment en incluant des efforts qui sont normalement moins visibles, et, dans de nombreux cas, plus difficile, comme aider d'autres personnes à résoudre des problèmes et examiner les Pull Requests de traduction.
-Les données sont calculées chaque mois, vous pouvez lire le code source ici.
+Les données sont calculées chaque mois, vous pouvez lire le code source ici.
Je me réserve également le droit de mettre à jour l'algorithme, les sections, les seuils, etc. (juste au cas où ð¤·).
diff --git a/docs/fr/docs/help-fastapi.md b/docs/fr/docs/help-fastapi.md
index 525c699f5f..a365a8d3a7 100644
--- a/docs/fr/docs/help-fastapi.md
+++ b/docs/fr/docs/help-fastapi.md
@@ -12,13 +12,13 @@ Il existe également plusieurs façons d'obtenir de l'aide.
## Star **FastAPI** sur GitHub
-Vous pouvez "star" FastAPI dans GitHub (en cliquant sur le bouton étoile en haut à droite) : https://github.com/tiangolo/fastapi. âï¸
+Vous pouvez "star" FastAPI dans GitHub (en cliquant sur le bouton étoile en haut à droite) : https://github.com/fastapi/fastapi. âï¸
En ajoutant une étoile, les autres utilisateurs pourront la trouver plus facilement et constater qu'elle a déjà été utile à d'autres.
## Watch le dépôt GitHub pour les releases
-Vous pouvez "watch" FastAPI dans GitHub (en cliquant sur le bouton "watch" en haut à droite) : https://github.com/tiangolo/fastapi. ð
+Vous pouvez "watch" FastAPI dans GitHub (en cliquant sur le bouton "watch" en haut à droite) : https://github.com/fastapi/fastapi. ð
Vous pouvez y sélectionner "Releases only".
@@ -44,7 +44,7 @@ Vous pouvez :
## Tweeter sur **FastAPI**
-Tweetez à propos de **FastAPI** et faites-moi savoir, ainsi qu'aux autres, pourquoi vous aimez ça. ð
+Tweetez à propos de **FastAPI** et faites-moi savoir, ainsi qu'aux autres, pourquoi vous aimez ça. ð
J'aime entendre parler de l'utilisation du **FastAPI**, de ce que vous avez aimé dedans, dans quel projet/entreprise l'utilisez-vous, etc.
@@ -56,11 +56,11 @@ J'aime entendre parler de l'utilisation du **FastAPI**, de ce que vous avez aim
## Aider les autres à résoudre les problèmes dans GitHub
-Vous pouvez voir les problèmes existants et essayer d'aider les autres, la plupart du temps il s'agit de questions dont vous connaissez peut-être déjà la réponse. ð¤
+Vous pouvez voir les problèmes existants et essayer d'aider les autres, la plupart du temps il s'agit de questions dont vous connaissez peut-être déjà la réponse. ð¤
## Watch le dépôt GitHub
-Vous pouvez "watch" FastAPI dans GitHub (en cliquant sur le bouton "watch" en haut à droite) : https://github.com/tiangolo/fastapi. ð
+Vous pouvez "watch" FastAPI dans GitHub (en cliquant sur le bouton "watch" en haut à droite) : https://github.com/fastapi/fastapi. ð
Si vous sélectionnez "Watching" au lieu de "Releases only", vous recevrez des notifications lorsque quelqu'un crée une nouvelle Issue.
@@ -68,7 +68,7 @@ Vous pouvez alors essayer de les aider à résoudre ces problèmes.
## Créer une Issue
-Vous pouvez créer une Issue dans le dépôt GitHub, par exemple pour :
+Vous pouvez créer une Issue dans le dépôt GitHub, par exemple pour :
* Poser une question ou s'informer sur un problème.
* Suggérer une nouvelle fonctionnalité.
@@ -77,7 +77,7 @@ Vous pouvez créer une Pull Request, par exemple :
+Vous pouvez créer une Pull Request, par exemple :
* Pour corriger une faute de frappe que vous avez trouvée sur la documentation.
* Proposer de nouvelles sections de documentation.
diff --git a/docs/fr/docs/history-design-future.md b/docs/fr/docs/history-design-future.md
index beb649121d..6b26dd079e 100644
--- a/docs/fr/docs/history-design-future.md
+++ b/docs/fr/docs/history-design-future.md
@@ -1,6 +1,6 @@
# Histoire, conception et avenir
-Il y a quelque temps, un utilisateur de **FastAPI** a demandé :
+Il y a quelque temps, un utilisateur de **FastAPI** a demandé :
> Quelle est l'histoire de ce projet ? Il semble être sorti de nulle part et est devenu génial en quelques semaines [...].
diff --git a/docs/fr/docs/index.md b/docs/fr/docs/index.md
index 5b0ba142ed..927c0c643c 100644
--- a/docs/fr/docs/index.md
+++ b/docs/fr/docs/index.md
@@ -11,11 +11,11 @@
Framework FastAPI, haute performance, facile à apprendre, rapide à coder, prêt pour la production
-
-
+
+
-
-
+
+
@@ -29,7 +29,7 @@
**Documentation** : https://fastapi.tiangolo.com
-**Code Source** : https://github.com/tiangolo/fastapi
+**Code Source** : https://github.com/fastapi/fastapi
---
@@ -69,7 +69,7 @@ Les principales fonctionnalités sont :
"_[...] J'utilise beaucoup **FastAPI** ces derniers temps. [...] Je prévois de l'utiliser dans mon équipe pour tous les **services de ML chez Microsoft**. Certains d'entre eux seront intégrés dans le coeur de **Windows** et dans certains produits **Office**._"
-
Kabir Khan -
Microsoft (ref)
+Kabir Khan -
Microsoft (ref)
---
diff --git a/docs/fr/docs/project-generation.md b/docs/fr/docs/project-generation.md
index c58d2cd2bc..4c04dc167d 100644
--- a/docs/fr/docs/project-generation.md
+++ b/docs/fr/docs/project-generation.md
@@ -14,7 +14,7 @@ GitHub : Swarm
* Intégration **Docker Compose** et optimisation pour développement local.
* Serveur web Python **prêt au déploiement** utilisant Uvicorn et Gunicorn.
-* Backend Python **FastAPI** :
+* Backend Python **FastAPI** :
* **Rapide** : Très hautes performances, comparables à **NodeJS** ou **Go** (grâce à Starlette et Pydantic).
* **Intuitif** : Excellent support des éditeurs. Complétion partout. Moins de temps passé à déboguer.
* **Facile** : Fait pour être facile à utiliser et apprendre. Moins de temps passé à lire de la documentation.
diff --git a/docs/he/docs/index.md b/docs/he/docs/index.md
index 6af8e32175..3af166ab01 100644
--- a/docs/he/docs/index.md
+++ b/docs/he/docs/index.md
@@ -11,11 +11,11 @@
תשת×ת FastAPI, ××צ××¢×× ××××××, ×§×× ××××××, ××××¨× ×ת×× ×ת, ×××× × ×ס×××ת ××צ×ר
-
-
+
+
-
-
+
+
@@ -29,7 +29,7 @@
**ת××¢××**: https://fastapi.tiangolo.com
-**×§××**: https://github.com/tiangolo/fastapi
+**×§××**: https://github.com/fastapi/fastapi
---
@@ -70,7 +70,7 @@ FastAPI ××× ×ª×©×ª×ת רשת ××××¨× ×ת ×××××¨× (××צ××¢×× ×
"_[...] I'm using **FastAPI** a ton these days. [...] I'm actually planning to use it for all of my team's **ML services at Microsoft**. Some of them are getting integrated into the core **Windows** product and some **Office** products._"
-
Kabir Khan -
Microsoft (ref)
+Kabir Khan -
Microsoft (ref)
---
diff --git a/docs/hu/docs/index.md b/docs/hu/docs/index.md
index 671b0477f6..b7231ad56b 100644
--- a/docs/hu/docs/index.md
+++ b/docs/hu/docs/index.md
@@ -5,11 +5,11 @@
FastAPI keretrendszer, nagy teljesÃtmény, könnyen tanulható, gyorsan kódolható, productionre kész
-
-
+
+
-
-
+
+
@@ -23,7 +23,7 @@
**Dokumentáció**: https://fastapi.tiangolo.com
-**Forrás kód**: https://github.com/tiangolo/fastapi
+**Forrás kód**: https://github.com/fastapi/fastapi
---
A FastAPI egy modern, gyors (nagy teljesÃtményű), webes keretrendszer API-ok épÃtéséhez Python -al, a Python szabványos tÃpusjelöléseire épÃtve.
@@ -63,7 +63,7 @@ Kulcs funkciók:
"_[...] I'm using **FastAPI** a ton these days. [...] I'm actually planning to use it for all of my team's **ML services at Microsoft**. Some of them are getting integrated into the core **Windows** product and some **Office** products._"
-
Kabir Khan -
Microsoft (ref)
+Kabir Khan -
Microsoft (ref)
---
diff --git a/docs/it/docs/index.md b/docs/it/docs/index.md
index 016316a641..38f6117343 100644
--- a/docs/it/docs/index.md
+++ b/docs/it/docs/index.md
@@ -9,11 +9,11 @@
FastAPI framework, alte prestazioni, facile da imparare, rapido da implementare, pronto per il rilascio in produzione
-
-
+
+
-
-
+
+
@@ -24,7 +24,7 @@
**Documentazione**: https://fastapi.tiangolo.com
-**Codice Sorgente**: https://github.com/tiangolo/fastapi
+**Codice Sorgente**: https://github.com/fastapi/fastapi
---
@@ -64,7 +64,7 @@ Le sue caratteristiche principali sono:
"_[...] I'm using **FastAPI** a ton these days. [...] I'm actually planning to use it for all of my team's **ML services at Microsoft**. Some of them are getting integrated into the core **Windows** product and some **Office** products._"
-
Kabir Khan -
Microsoft (ref)
+Kabir Khan -
Microsoft (ref)
---
diff --git a/docs/ja/docs/contributing.md b/docs/ja/docs/contributing.md
index 31db51c52b..be8e9280ed 100644
--- a/docs/ja/docs/contributing.md
+++ b/docs/ja/docs/contributing.md
@@ -236,14 +236,14 @@ Uvicornã¯ããã©ã«ãã§ãã¼ã`8000`ã使ç¨ããããããã¼ã`800
#### è±ç¥èã¨ã¬ã¤ãã©ã¤ã³
-* ããªãã®è¨èªã®ä»ãããã«ãªã¯ã¨ã¹ãã確èªãã夿´ãæ¿èªãããã¬ãã¥ã¼ã追å ãã¾ãã
+* ããªãã®è¨èªã®ä»ãããã«ãªã¯ã¨ã¹ãã確èªãã夿´ãæ¿èªãããã¬ãã¥ã¼ã追å ãã¾ãã
!!! tip "è±ç¥è"
ãã§ã«ãããã«ãªã¯ã¨ã¹ãã«ä¿®æ£ææ¡ã¤ãã®ã³ã¡ã³ãã追å ã§ãã¾ãã
ä¿®æ£ææ¡ã®æ¿èªã®ããã«ãã«ãªã¯ã¨ã¹ãã®ã¬ãã¥ã¼ã®è¿½å ã®ããã¥ã¡ã³ãã確èªãã¦ãã ããã
-* issuesããã§ãã¯ãã¦ãããªãã®è¨èªã«å¯¾å¿ãã翻訳ããããã©ããã確èªãã¦ãã ããã
+* issuesããã§ãã¯ãã¦ãããªãã®è¨èªã«å¯¾å¿ãã翻訳ããããã©ããã確èªãã¦ãã ããã
* 翻訳ãããã¼ã¸ãã¨ã«1ã¤ã®ãã«ãªã¯ã¨ã¹ãã追å ãã¾ããããã«ãããä»ã®ã¦ã¼ã¶ã¼ãã¬ãã¥ã¼ãããããªãã¾ãã
diff --git a/docs/ja/docs/external-links.md b/docs/ja/docs/external-links.md
index aca5d5b34b..4cd15c8aa0 100644
--- a/docs/ja/docs/external-links.md
+++ b/docs/ja/docs/external-links.md
@@ -7,7 +7,7 @@
ãããã®ä¸å®å
¨ãªãªã¹ãã以ä¸ã«ç¤ºãã¾ãã
!!! tip "è±ç¥è"
- ããã«ã¾ã è¼ã£ã¦ããªã**FastAPI**ã«é¢é£ããè¨äºãããã¸ã§ã¯ãããã¼ã«ãªã©ãããå ´åã¯ã ãã«ãªã¯ã¨ã¹ããã¦ä¸ããã
+ ããã«ã¾ã è¼ã£ã¦ããªã**FastAPI**ã«é¢é£ããè¨äºãããã¸ã§ã¯ãããã¼ã«ãªã©ãããå ´åã¯ã ãã«ãªã¯ã¨ã¹ããã¦ä¸ããã
{% for section_name, section_content in external_links.items() %}
diff --git a/docs/ja/docs/fastapi-people.md b/docs/ja/docs/fastapi-people.md
index d92a7bf462..aaf76ba216 100644
--- a/docs/ja/docs/fastapi-people.md
+++ b/docs/ja/docs/fastapi-people.md
@@ -90,7 +90,7 @@ FastAPIã«ã¯ãæ§ã
ãªããã¯ã°ã©ã¦ã³ãã®äººã
ãæè¿ããç´ æ´
{% endif %}
-ä»ã«ããããã (100人以ä¸) ã® contributors ããã¾ããFastAPI GitHub Contributors ãã¼ã¸ã§ãã¹ã¦ã® contributors ã確èªã§ãã¾ããð·
+ä»ã«ããããã (100人以ä¸) ã® contributors ããã¾ããFastAPI GitHub Contributors ãã¼ã¸ã§ãã¹ã¦ã® contributors ã確èªã§ãã¾ããð·
## Top Reviewers
@@ -177,7 +177,7 @@ FastAPIã«ã¯ãæ§ã
ãªããã¯ã°ã©ã¦ã³ãã®äººã
ãæè¿ããç´ æ´
ç¹ã«ãä»ã®äººã® issues ãæ¯æ´ãããã翻訳ã®ãã«ãªã¯ã¨ã¹ãã確èªããããããªã©ãé常ã¯ç®ç«ãããå¤ãã®å ´åãããå°é£ãªä½æ¥ãå«ã¿ã¾ãã
-ãã¼ã¿ã¯æ¯æéè¨ããã¾ããã½ã¼ã¹ã³ã¼ãã¯ãã¡ãã§ç¢ºèªã§ãã¾ãã
+ãã¼ã¿ã¯æ¯æéè¨ããã¾ããã½ã¼ã¹ã³ã¼ãã¯ãã¡ãã§ç¢ºèªã§ãã¾ãã
ããã§ã¯ãã¹ãã³ãµã¼ã®è²¢ç®ã強調ãã¦ãã¾ãã
diff --git a/docs/ja/docs/help-fastapi.md b/docs/ja/docs/help-fastapi.md
index e753b7ce37..d999fa1276 100644
--- a/docs/ja/docs/help-fastapi.md
+++ b/docs/ja/docs/help-fastapi.md
@@ -12,13 +12,13 @@ FastAPIãã¦ã¼ã¶ã¼ãéçºè
ãå¿æ´ãããã§ããï¼
## GitHubã§ **FastAPI** ã«Star
-GitHubã§FastAPIã«ãStarããã¤ãããã¨ãã§ãã¾ã (å³ä¸é¨ã®Starãã¿ã³ãã¯ãªãã¯): https://github.com/tiangolo/fastapi. âï¸
+GitHubã§FastAPIã«ãStarããã¤ãããã¨ãã§ãã¾ã (å³ä¸é¨ã®Starãã¿ã³ãã¯ãªãã¯): https://github.com/fastapi/fastapi. âï¸
ã¹ã¿ã¼ãå¢ãããã¨ã§ãä»ã®ã¦ã¼ã¶ã¼ã®ç®ã«ã¤ãããããªããå¤ãã®äººã«ã¨ã£ã¦ä¾¿å©ãªãã®ã§ãããã¨ã示ãã¾ãã
## GitHubã¬ãã¸ããªã®ãªãªã¼ã¹ãWatch
-GitHubã§FastAPIããWatchãã§ãã¾ã (å³ä¸é¨ã®Watchãã¿ã³ãã¯ãªãã¯): https://github.com/tiangolo/fastapi. ð
+GitHubã§FastAPIããWatchãã§ãã¾ã (å³ä¸é¨ã®Watchãã¿ã³ãã¯ãªãã¯): https://github.com/fastapi/fastapi. ð
ããã§ãReleases onlyãã鏿ã§ãã¾ãã
@@ -42,7 +42,7 @@ GitHubã§FastAPIããWatchãã§ãã¾ã (å³ä¸é¨ã®Watchãã¿ã³ãã¯ãª
## **FastAPI** ã«é¢ãããã¤ã¼ã
-**FastAPI** ã«ã¤ãã¦ãã¤ã¼ãããéçºè
ãä»ã®äººã«ã©ããæ°ã«å
¥ã£ãã®ãæãã¦ãã ãããð
+**FastAPI** ã«ã¤ãã¦ãã¤ã¼ãããéçºè
ãä»ã®äººã«ã©ããæ°ã«å
¥ã£ãã®ãæãã¦ãã ãããð
**FastAPI** ãã©ã®ããã«ä½¿ãããã©ããæ°ã«å
¥ãããã©ããªããã¸ã§ã¯ã/ä¼ç¤¾ã§ä½¿ããã¦ããããªã©ã«ã¤ãã¦ç¥ãããã§ãã
@@ -54,11 +54,11 @@ GitHubã§FastAPIããWatchãã§ãã¾ã (å³ä¸é¨ã®Watchãã¿ã³ãã¯ãª
## GitHub issuesã§ä»ã®äººãå©ãã
-æ¢åã®issuesã確èªãã¦ãä»ã®äººãå©ãã¦ã¿ã¦ãã ãããçãããåçãç¥ã£ã¦ãããããããªã質åãã»ã¨ãã©ã§ããð¤
+æ¢åã®issuesã確èªãã¦ãä»ã®äººãå©ãã¦ã¿ã¦ãã ãããçãããåçãç¥ã£ã¦ãããããããªã質åãã»ã¨ãã©ã§ããð¤
## GitHubã¬ãã¸ããªãWatch
-GitHubã§FastAPIããwatchãã§ãã¾ã (å³ä¸é¨ã®ãwatchããã¿ã³ãã¯ãªãã¯): https://github.com/tiangolo/fastapi. ð
+GitHubã§FastAPIããwatchãã§ãã¾ã (å³ä¸é¨ã®ãwatchããã¿ã³ãã¯ãªãã¯): https://github.com/fastapi/fastapi. ð
ãReleases onlyãã§ã¯ãªããWatchingãã鏿ããã¨ãæ°ããªissueãç«ã¦ãããéã«éç¥ããã¾ãã
@@ -66,7 +66,7 @@ GitHubã§FastAPIããwatchãã§ãã¾ã (å³ä¸é¨ã®ãwatchããã¿ã³ã
## issuesãç«ã¦ã
-GitHubã¬ãã¸ããªã§æ°ããªissueãç«ã¦ããã¾ããä¾ãã°:
+GitHubã¬ãã¸ããªã§æ°ããªissueãç«ã¦ããã¾ããä¾ãã°:
* 質åãã¾ãã¯ãåé¡ã®å ±å
* æ°æ©è½ã®ææ¡
@@ -75,7 +75,7 @@ GitHubã¬ãã¸ããªã§ãã«ãªã¯ã¨ã¹ãã使ã§ãã¾ã:
+以ä¸ã®æ§ãªãã«ãªã¯ã¨ã¹ãã使ã§ãã¾ã:
* ããã¥ã¡ã³ãã®ã¿ã¤ããã¹ãä¿®æ£ã
* æ°ããªããã¥ã¡ã³ãã»ã¯ã·ã§ã³ãææ¡ã
diff --git a/docs/ja/docs/history-design-future.md b/docs/ja/docs/history-design-future.md
index 5d53cf77a6..bc4a160eae 100644
--- a/docs/ja/docs/history-design-future.md
+++ b/docs/ja/docs/history-design-future.md
@@ -1,6 +1,6 @@
# æ´å²ãè¨è¨ãããã¦ãããã
-å°ãåã«ã**FastAPI**
+å°ãåã«ã**FastAPI**
ã®ã¦ã¼ã¶ã¼ã«ä»¥ä¸ã®æ§ã«å°ãããã¾ãã:
> ãã®ããã¸ã§ã¯ãã®æ´å²ã¯ï¼ä½ããªãã¨ãããããæ°é±éã§ããããã®ãã§ãã¦ããããã§ãã [...]
diff --git a/docs/ja/docs/index.md b/docs/ja/docs/index.md
index 6f85d20139..c066c50707 100644
--- a/docs/ja/docs/index.md
+++ b/docs/ja/docs/index.md
@@ -11,11 +11,11 @@
FastAPI framework, high performance, easy to learn, fast to code, ready for production
-
-
+
+
-
-
+
+
@@ -26,7 +26,7 @@
**ããã¥ã¡ã³ã**: https://fastapi.tiangolo.com
-**ã½ã¼ã¹ã³ã¼ã**: https://github.com/tiangolo/fastapi
+**ã½ã¼ã¹ã³ã¼ã**: https://github.com/fastapi/fastapi
---
@@ -67,7 +67,7 @@ FastAPI ã¯ãPythonã®æ¨æºã§ããåãã³ãã«åºã¥ãã¦Python 以é
"_[...] æè¿ **FastAPI** ã使ã£ã¦ãã¾ãã [...] å®éã«ç§ã®ãã¼ã ã®å
¨ã¦ã® **Microsoft ã®æ©æ¢°å¦ç¿ãµã¼ãã¹** ã§ä½¿ç¨ããäºå®ã§ãã ãã®ãã¡ã®ããã¤ãã®ã³ã¢ãª**Windows**製åã¨**Office**製åã«çµ±åããã¤ã¤ããã¾ãã_"
-
Kabir Khan -
Microsoft (ref)
+Kabir Khan -
Microsoft (ref)
---
diff --git a/docs/ja/docs/project-generation.md b/docs/ja/docs/project-generation.md
index 4b6f0f9fd0..daef52efae 100644
--- a/docs/ja/docs/project-generation.md
+++ b/docs/ja/docs/project-generation.md
@@ -14,7 +14,7 @@ GitHub: **FastAPI** ããã¯ã¨ã³ã:
+* Python **FastAPI** ããã¯ã¨ã³ã:
* **é«é**: **NodeJS** ã **Go** 並ã¿ã®ã¨ã¦ãé«ãããã©ã¼ãã³ã¹ (Starlette 㨠Pydantic ã®ããã)ã
* **ç´æç**: ç´ æ´ãããã¨ãã£ã¿ã®ãµãã¼ãã è£å®ã ãããã°æéã®ç縮ã
* **ç°¡å**: ç°¡åã«å©ç¨ãç¿å¾ã§ãããããªãã¶ã¤ã³ãããã¥ã¡ã³ããèªãæéã忏ã
diff --git a/docs/ko/docs/help-fastapi.md b/docs/ko/docs/help-fastapi.md
index 4faf4c1f05..7c3b15d339 100644
--- a/docs/ko/docs/help-fastapi.md
+++ b/docs/ko/docs/help-fastapi.md
@@ -12,7 +12,7 @@
## ë´ì¤ë í° êµ¬ë
- [**FastAPIì ì¹êµ¬** ë´ì¤ë í°](https://github.com/tiangolo/fastapi/blob/master/newsletter)를 구ë
íì¬ ìµì ì 보를 ì ì§í ì ììµëë¤{.internal-link target=_blank}:
+ [**FastAPIì ì¹êµ¬** ë´ì¤ë í°](https://github.com/fastapi/fastapi/blob/master/newsletter)를 구ë
íì¬ ìµì ì 보를 ì ì§í ì ììµëë¤{.internal-link target=_blank}:
- FastAPI ì ê·¸ ì¹êµ¬ë¤ì ëí ë´ì¤ ð
- ê°ì´ë ð
@@ -26,13 +26,13 @@
## Star **FastAPI** in GitHub
- GitHubìì FastAPIì "star"를 ë¶ì¼ ì ììµëë¤(ì¤ë¥¸ìª½ ìë¨ì star ë²í¼ì í´ë¦): https://github.com/tiangolo/fastapi. âï¸
+ GitHubìì FastAPIì "star"를 ë¶ì¼ ì ììµëë¤(ì¤ë¥¸ìª½ ìë¨ì star ë²í¼ì í´ë¦): https://github.com/fastapi/fastapi. âï¸
ì¤í를 ë림ì¼ë¡ì¨, ë¤ë¥¸ ì¬ì©ìë¤ì´ ì¢ ë ì½ê² ì°¾ì ì ìê³ , ë§ì ì¬ëë¤ìê² ì ì©í ê²ìì ëíë¼ ì ììµëë¤.
## GitHub ì ì¥ììì ë¦´ë¦¬ì¦ íì¸
- GitHubìì FastAPI를 "watch"í ì ììµëë¤ (ì¤ë¥¸ìª½ ìë¨ watch ë²í¼ì í´ë¦): https://github.com/tiangolo/fastapi. ð
+ GitHubìì FastAPI를 "watch"í ì ììµëë¤ (ì¤ë¥¸ìª½ ìë¨ watch ë²í¼ì í´ë¦): https://github.com/fastapi/fastapi. ð
ì¬ê¸°ì "Releases only"ì ì íí ì ììµëë¤.
@@ -62,7 +62,7 @@
## **FastAPI**ì ëí í¸ì
- [**FastAPI**ì ëí´ í¸ì](https://twitter.com/compose/tweet?text=I'm loving @fastapi because... https://github.com/tiangolo/fastapi) íê³ FastAPIê° ë§ìì ëë ì´ì 를 ìë ¤ì£¼ì¸ì. ð
+ [**FastAPI**ì ëí´ í¸ì](https://twitter.com/compose/tweet?text=I'm loving @fastapi because... https://github.com/fastapi/fastapi) íê³ FastAPIê° ë§ìì ëë ì´ì 를 ìë ¤ì£¼ì¸ì. ð
**FastAPI**ê° ì´ë»ê² ì¬ì©ëê³ ìëì§, ì´ë¤ ì ì´ ë§ìì ë¤ìëì§, ì´ë¤ íë¡ì í¸/íì¬ìì ì¬ì©íê³ ìëì§ ë±ì ëí´ ë£ê³ ì¶ìµëë¤.
@@ -73,13 +73,13 @@
## GitHubì ì´ìë¡ ë¤ë¥¸ì¬ë ë기
- [ì¡´ì¬íë ì´ì](https://github.com/tiangolo/fastapi/issues)를 íì¸íê³ ê·¸ê²ì ìëíê³ ëìì¤ ì ììµëë¤. ëë¶ë¶ì ê²½ì° ì´ë¯¸ ëµì ìê³ ìë ì§ë¬¸ì
ëë¤. ð¤
+ [ì¡´ì¬íë ì´ì](https://github.com/fastapi/fastapi/issues)를 íì¸íê³ ê·¸ê²ì ìëíê³ ëìì¤ ì ììµëë¤. ëë¶ë¶ì ê²½ì° ì´ë¯¸ ëµì ìê³ ìë ì§ë¬¸ì
ëë¤. ð¤
- ë§ì ì¬ëë¤ì 문ì 를 ëìì¤ë¤ë©´, ê³µìì ì¸ [FastAPI ì 문ê°](https://github.com/tiangolo/fastapi/blob/master/docs/en/docs/fastapi-people.md#experts) ê° ë ì ììµëë¤{.internal-link target=_blank}. ð
+ ë§ì ì¬ëë¤ì 문ì 를 ëìì¤ë¤ë©´, ê³µìì ì¸ [FastAPI ì 문ê°](https://github.com/fastapi/fastapi/blob/master/docs/en/docs/fastapi-people.md#experts) ê° ë ì ììµëë¤{.internal-link target=_blank}. ð
## GitHub ì ì¥ì 보기
- GitHubìì FastAPI를 "watch"í ì ììµëë¤ (ì¤ë¥¸ìª½ ìë¨ watch ë²í¼ì í´ë¦): https://github.com/tiangolo/fastapi. ð
+ GitHubìì FastAPI를 "watch"í ì ììµëë¤ (ì¤ë¥¸ìª½ ìë¨ watch ë²í¼ì í´ë¦): https://github.com/fastapi/fastapi. ð
"Releases only" ëì "Watching"ì ì ííë©´ ë¤ë¥¸ ì¬ì©ìê° ìë¡ì´ issue를 ìì±í ë ìë¦¼ì´ ìì ë©ëë¤.
@@ -87,7 +87,7 @@
## ì´ì ìì±í기
- GitHub ì ì¥ìì [ìë¡ì´ ì´ì ìì±](https://github.com/tiangolo/fastapi/issues/new/choose) ì í ì ììµëë¤, ì를ë¤ë©´ ë¤ìê³¼ ê°ìµëë¤:
+ GitHub ì ì¥ìì [ìë¡ì´ ì´ì ìì±](https://github.com/fastapi/fastapi/issues/new/choose) ì í ì ììµëë¤, ì를ë¤ë©´ ë¤ìê³¼ ê°ìµëë¤:
- **ì§ë¬¸**ì íê±°ë **문ì **ì ëí´ ì§ë¬¸í©ëë¤.
- ìë¡ì´ **기ë¥**ì ì ì í©ëë¤.
@@ -96,15 +96,15 @@
## Pull Request를 ë§ëììì¤
- Pull Requests를 ì´ì©íì¬ ìì¤ì½ëì [컨í¸ë¦¬ë·°í¸](https://github.com/tiangolo/fastapi/blob/master/docs/en/docs/contributing.md){.internal-link target=_blank} í ì ììµëë¤. ì를 ë¤ë©´ ë¤ìê³¼ ê°ìµëë¤:
+ Pull Requests를 ì´ì©íì¬ ìì¤ì½ëì [컨í¸ë¦¬ë·°í¸](https://github.com/fastapi/fastapi/blob/master/docs/en/docs/contributing.md){.internal-link target=_blank} í ì ììµëë¤. ì를 ë¤ë©´ ë¤ìê³¼ ê°ìµëë¤:
- 문ììì ì°¾ì ì¤í를 ìì í ë.
- - FastAPI를 [í¸ì§íì¬](https://github.com/tiangolo/fastapi/edit/master/docs/en/data/external_links.yml) ìì±íê±°ë ì°¾ì 문ì, ë¹ëì¤ ëë íìºì¤í¸ë¥¼ ê³µì í ë.
+ - FastAPI를 [í¸ì§íì¬](https://github.com/fastapi/fastapi/edit/master/docs/en/data/external_links.yml) ìì±íê±°ë ì°¾ì 문ì, ë¹ëì¤ ëë íìºì¤í¸ë¥¼ ê³µì í ë.
- í´ë¹ ì¹ì
ì ìì ë¶ë¶ì ë§í¬ë¥¼ ì¶ê°íëì§ íì¸íììì¤.
- - ë¹ì ì ì¸ì´ë¡ [문ì ë²ìíëë°](https://github.com/tiangolo/fastapi/blob/master/docs/en/docs/contributing.md#translations){.internal-link target=_blank} 기ì¬í ë.
+ - ë¹ì ì ì¸ì´ë¡ [문ì ë²ìíëë°](https://github.com/fastapi/fastapi/blob/master/docs/en/docs/contributing.md#translations){.internal-link target=_blank} 기ì¬í ë.
- ëí ë¤ë¥¸ ì¬ì©ìê° ë§ë ë²ìì ê²í íëë° ëìì ì¤ ìë ììµëë¤.
@@ -118,13 +118,13 @@
ð¥ [ëì¤ì½ë ì±í
ìë²](https://discord.gg/VQjSZaeJmf) ð¥ ì ê°ì
íê³ FastAPI 커뮤ëí°ìì ë¤ë¥¸ ì¬ëë¤ê³¼ ì´ì¸ë¦¬ì¸ì.
- !!! tip ì§ë¬¸ì´ ìë ê²½ì°, [GitHub ì´ì ](https://github.com/tiangolo/fastapi/issues/new/choose) ìì ì§ë¬¸íììì¤, [FastAPI ì 문ê°](https://github.com/tiangolo/fastapi/blob/master/docs/en/docs/fastapi-people.md#experts) ì ëìì ë°ì ê°ë¥ì±ì´ ëìµëë¤{.internal-link target=_blank} .
+ !!! tip ì§ë¬¸ì´ ìë ê²½ì°, [GitHub ì´ì ](https://github.com/fastapi/fastapi/issues/new/choose) ìì ì§ë¬¸íììì¤, [FastAPI ì 문ê°](https://github.com/fastapi/fastapi/blob/master/docs/en/docs/fastapi-people.md#experts) ì ëìì ë°ì ê°ë¥ì±ì´ ëìµëë¤{.internal-link target=_blank} .
```
ë¤ë¥¸ ì¼ë°ì ì¸ ëíììë§ ì±í
ì ì¬ì©íììì¤.
```
- 기존 [ì§í° ì±í
](https://gitter.im/tiangolo/fastapi) ì´ ìì§ë§ ì±ëê³¼ ê³ ê¸ê¸°ë¥ì´ ìì´ì ëí를 íê¸°ê° ì¡°ê¸ ì´ë µê¸° ë문ì ì§ê¸ì ëì¤ì½ëê° ê¶ì¥ëë ìì¤í
ì
ëë¤.
+ 기존 [ì§í° ì±í
](https://gitter.im/fastapi/fastapi) ì´ ìì§ë§ ì±ëê³¼ ê³ ê¸ê¸°ë¥ì´ ìì´ì ëí를 íê¸°ê° ì¡°ê¸ ì´ë µê¸° ë문ì ì§ê¸ì ëì¤ì½ëê° ê¶ì¥ëë ìì¤í
ì
ëë¤.
### ì§ë¬¸ì ìí´ ì±í
ì ì¬ì©íì§ ë§ììì¤
@@ -132,7 +132,7 @@
GitHub ì´ìììì í
í릿ì ì¬ë°ë¥¸ ì§ë¬¸ì ìì±íëë¡ ìë´íì¬ ë ì½ê² ì¢ì ëµë³ì ì»ê±°ë ì§ë¬¸í기 ì ì ì¤ì¤ë¡ 문ì 를 í´ê²°í ìë ììµëë¤. ê·¸ë¦¬ê³ GitHubììë ìê°ì´ ì¡°ê¸ ê±¸ë¦¬ëë¼ë íì 모ë ê²ì ëµí ì ììµëë¤. ì±í
ìì¤í
ììë ê°ì¸ì ì¼ë¡ ê·¸ë ê² í ì ììµëë¤. ð
- ì±í
ìì¤í
ììì ëí ëí GitHubìì ì²ë¼ ì½ê² ê²ìí ì ì기 ë문ì ëí ì¤ì ì§ë¬¸ê³¼ ëµë³ì´ ìì¤ë ì ììµëë¤. ê·¸ë¦¬ê³ GitHub ì´ìì ìë ê²ë§ [FastAPI ì 문ê°](https://github.com/tiangolo/fastapi/blob/master/docs/en/docs/fastapi-people.md#experts)ê° ëë ê²ì¼ë¡ ê°ì£¼ëë¯ë¡{.internal-link target=_blank} , GitHub ì´ììì ë ë§ì ê´ì¬ì ë°ì ê²ì
ëë¤.
+ ì±í
ìì¤í
ììì ëí ëí GitHubìì ì²ë¼ ì½ê² ê²ìí ì ì기 ë문ì ëí ì¤ì ì§ë¬¸ê³¼ ëµë³ì´ ìì¤ë ì ììµëë¤. ê·¸ë¦¬ê³ GitHub ì´ìì ìë ê²ë§ [FastAPI ì 문ê°](https://github.com/fastapi/fastapi/blob/master/docs/en/docs/fastapi-people.md#experts)ê° ëë ê²ì¼ë¡ ê°ì£¼ëë¯ë¡{.internal-link target=_blank} , GitHub ì´ììì ë ë§ì ê´ì¬ì ë°ì ê²ì
ëë¤.
ë°ë©´, ì±í
ìì¤í
ìë ìì² ëª
ì ì¬ì©ìê° ì기 ë문ì, ê±°ì íì ëí ìë를 ì°¾ì ê°ë¥ì±ì´ ëìµëë¤. ð
diff --git a/docs/ko/docs/index.md b/docs/ko/docs/index.md
index 66ecd7dffe..620fcc8811 100644
--- a/docs/ko/docs/index.md
+++ b/docs/ko/docs/index.md
@@ -11,11 +11,11 @@
FastAPI íë ììí¬, ê³ ì±ë¥, ê°í¸í íìµ, ë¹ ë¥¸ ì½ë ìì±, ì¤ë¹ë íë¡ëì
-
-
+
+
-
-
+
+
@@ -26,7 +26,7 @@
**문ì**: https://fastapi.tiangolo.com
-**ìì¤ ì½ë**: https://github.com/tiangolo/fastapi
+**ìì¤ ì½ë**: https://github.com/fastapi/fastapi
---
@@ -67,7 +67,7 @@ FastAPIë íëì ì´ê³ , ë¹ ë¥´ë©°(ê³ ì±ë¥), íì´ì¬ íì¤ íì
íí¸
"_[...] ì ë ìì¦ **FastAPI**를 ë§ì´ ì¬ì©íê³ ììµëë¤. [...] ì¬ì¤ ì°ë¦¬ íì **ë§ì´í¬ë¡ìíí¸ ML ìë¹ì¤** ì ë¶ë¥¼ ë°ê¿ ê³íì
ëë¤. ê·¸ì¤ ì¼ë¶ë íµì¬ **Windows**ì ëªëªì **Office** ì íë¤ì´ íµí©ëê³ ììµëë¤._"
-
Kabir Khan -
ë§ì´í¬ë¡ìíí¸ (ref)
+Kabir Khan -
ë§ì´í¬ë¡ìíí¸ (ref)
---
diff --git a/docs/pl/docs/fastapi-people.md b/docs/pl/docs/fastapi-people.md
index b244ab4899..6c431b4017 100644
--- a/docs/pl/docs/fastapi-people.md
+++ b/docs/pl/docs/fastapi-people.md
@@ -84,7 +84,7 @@ WspóÅtworzyli kod źródÅowy, dokumentacjÄ, tÅumaczenia itp. ð¦
{% endif %}
-Jest wielu wiÄcej kontrybutorów (ponad setka), możesz zobaczyÄ ich wszystkich na stronie Kontrybutorzy FastAPI na GitHub. ð·
+Jest wielu wiÄcej kontrybutorów (ponad setka), możesz zobaczyÄ ich wszystkich na stronie Kontrybutorzy FastAPI na GitHub. ð·
## Najlepsi Oceniajacy
@@ -171,7 +171,7 @@ GÅównym celem tej strony jest podkreÅlenie wysiÅku spoÅecznoÅci w pomagani
Szczególnie wÅÄ
czajÄ
c wysiÅki, które sÄ
zwykle mniej widoczne, a w wielu przypadkach bardziej żmudne, tak jak pomaganie innym z pytaniami i ocenianie Pull Requestów z tÅumaczeniami.
-Dane sÄ
obliczane każdego miesiÄ
ca, możesz przeczytaÄ kod źródÅowy tutaj.
+Dane sÄ
obliczane każdego miesiÄ
ca, możesz przeczytaÄ kod źródÅowy tutaj.
Tutaj również podkreÅlam wkÅad od sponsorów.
diff --git a/docs/pl/docs/help-fastapi.md b/docs/pl/docs/help-fastapi.md
index fdc3b0bf93..00c99edfa0 100644
--- a/docs/pl/docs/help-fastapi.md
+++ b/docs/pl/docs/help-fastapi.md
@@ -26,13 +26,13 @@ Możesz zapisaÄ siÄ do rzadkiego [newslettera o **FastAPI i jego przyjacioÅac
## Dodaj gwiazdkÄ **FastAPI** na GitHubie
-Możesz "dodaÄ gwiazdkÄ" FastAPI na GitHubie (klikajÄ
c przycisk gwiazdki w prawym górnym rogu): https://github.com/tiangolo/fastapi. âï¸
+Możesz "dodaÄ gwiazdkÄ" FastAPI na GitHubie (klikajÄ
c przycisk gwiazdki w prawym górnym rogu): https://github.com/fastapi/fastapi. âï¸
DodajÄ
c gwiazdkÄ, inni użytkownicy bÄdÄ
mogli Åatwiej znaleÅºÄ projekt i zobaczyÄ, że byÅ już przydatny dla innych.
## Obserwuj repozytorium GitHub w poszukiwaniu nowych wydaÅ
-Możesz "obserwowaÄ" FastAPI na GitHubie (klikajÄ
c przycisk "obserwuj" w prawym górnym rogu): https://github.com/tiangolo/fastapi. ð
+Możesz "obserwowaÄ" FastAPI na GitHubie (klikajÄ
c przycisk "obserwuj" w prawym górnym rogu): https://github.com/fastapi/fastapi. ð
Wybierz opcjÄ "Tylko wydania".
@@ -59,7 +59,7 @@ Możesz:
## Napisz tweeta o **FastAPI**
-Napisz tweeta o **FastAPI** i powiedz czemu Ci siÄ podoba. ð
+Napisz tweeta o **FastAPI** i powiedz czemu Ci siÄ podoba. ð
Uwielbiam czytaÄ w jaki sposób **FastAPI** jest używane, co Ci siÄ w nim podobaÅo, w jakim projekcie/firmie go używasz itp.
@@ -73,8 +73,8 @@ Uwielbiam czytaÄ w jaki sposób **FastAPI** jest używane, co Ci siÄ w nim pod
Możesz spróbowaÄ pomóc innym, odpowiadajÄ
c w:
-* Dyskusjach na GitHubie
-* Problemach na GitHubie
+* Dyskusjach na GitHubie
+* Problemach na GitHubie
W wielu przypadkach możesz już znaÄ odpowiedź na te pytania. ð¤
@@ -125,7 +125,7 @@ JeÅli odpowiedzÄ
, jest duża szansa, że rozwiÄ
zaÅeÅ ich problem, gratulacj
## Obserwuj repozytorium na GitHubie
-Możesz "obserwowaÄ" FastAPI na GitHubie (klikajÄ
c przycisk "obserwuj" w prawym górnym rogu): https://github.com/tiangolo/fastapi. ð
+Możesz "obserwowaÄ" FastAPI na GitHubie (klikajÄ
c przycisk "obserwuj" w prawym górnym rogu): https://github.com/fastapi/fastapi. ð
JeÅli wybierzesz "Obserwuj" zamiast "Tylko wydania", otrzymasz powiadomienia, gdy ktoÅ utworzy nowy problem lub pytanie. Możesz również okreÅliÄ, że chcesz byÄ powiadamiany tylko o nowych problemach, dyskusjach, PR-ach itp.
@@ -133,7 +133,7 @@ NastÄpnie możesz spróbowaÄ pomóc rozwiÄ
zaÄ te problemy.
## Zadawaj pytania
-Możesz utworzyÄ nowe pytanie w repozytorium na GitHubie, na przykÅad aby:
+Możesz utworzyÄ nowe pytanie w repozytorium na GitHubie, na przykÅad aby:
* ZadaÄ **pytanie** lub zapytaÄ o **problem**.
* ZaproponowaÄ nowÄ
**funkcjÄ**.
@@ -196,7 +196,7 @@ A jeÅli istnieje jakaÅ konkretna potrzeba dotyczÄ
ca stylu lub spójnoÅci, sa
Możesz [wnieÅÄ wkÅad](contributing.md){.internal-link target=_blank} do kodu źródÅowego za pomocÄ
Pull Requestu, na przykÅad:
* NaprawiÄ literówkÄ, którÄ
znalazÅeÅ w dokumentacji.
-* PodzieliÄ siÄ artykuÅem, filmem lub podcastem, który stworzyÅeÅ lub znalazÅeÅ na temat FastAPI, edytujÄ
c ten plik.
+* PodzieliÄ siÄ artykuÅem, filmem lub podcastem, który stworzyÅeÅ lub znalazÅeÅ na temat FastAPI, edytujÄ
c ten plik.
* Upewnij siÄ, że dodajesz swój link na poczÄ
tku odpowiedniej sekcji.
* Pomóc w [tÅumaczeniu dokumentacji](contributing.md#translations){.internal-link target=_blank} na Twój jÄzyk.
* Możesz również pomóc w weryfikacji tÅumaczeÅ stworzonych przez innych.
@@ -227,7 +227,7 @@ JeÅli możesz mi w tym pomóc, **pomożesz mi utrzymaÄ FastAPI** i zapewnisz
DoÅÄ
cz do ð¥ serwera czatu na Discordzie ð¥ i spÄdzaj czas z innymi w spoÅecznoÅci FastAPI.
!!! tip "Wskazówka"
- JeÅli masz pytania, zadaj je w Dyskusjach na GitHubie, jest dużo wiÄksza szansa, że otrzymasz pomoc od [Ekspertów FastAPI](fastapi-people.md#fastapi-experts){.internal-link target=_blank}.
+ JeÅli masz pytania, zadaj je w Dyskusjach na GitHubie, jest dużo wiÄksza szansa, że otrzymasz pomoc od [Ekspertów FastAPI](fastapi-people.md#fastapi-experts){.internal-link target=_blank}.
Używaj czatu tylko do innych ogólnych rozmów.
diff --git a/docs/pl/docs/index.md b/docs/pl/docs/index.md
index a69d7dc148..efa9abfc34 100644
--- a/docs/pl/docs/index.md
+++ b/docs/pl/docs/index.md
@@ -11,11 +11,11 @@
FastAPI to szybki, prosty w nauce i gotowy do użycia w produkcji framework
-
-
+
+
-
-
+
+
@@ -26,7 +26,7 @@
**Dokumentacja**: https://fastapi.tiangolo.com
-**Kod żródÅowy**: https://github.com/tiangolo/fastapi
+**Kod żródÅowy**: https://github.com/fastapi/fastapi
---
@@ -66,7 +66,7 @@ Kluczowe cechy:
"_[...] I'm using **FastAPI** a ton these days. [...] I'm actually planning to use it for all of my team's **ML services at Microsoft**. Some of them are getting integrated into the core **Windows** product and some **Office** products._"
-
Kabir Khan -
Microsoft (ref)
+Kabir Khan -
Microsoft (ref)
---
diff --git a/docs/pt/docs/contributing.md b/docs/pt/docs/contributing.md
index 02895fcfc8..7d8d1fd5ef 100644
--- a/docs/pt/docs/contributing.md
+++ b/docs/pt/docs/contributing.md
@@ -237,14 +237,14 @@ Aqui estão os passos para ajudar com as traduções.
#### Dicas e orientações
-* Verifique sempre os _pull requests_ existentes para a sua linguagem e faça revisões das alterações e aprove elas.
+* Verifique sempre os _pull requests_ existentes para a sua linguagem e faça revisões das alterações e aprove elas.
!!! tip
Você pode adicionar comentários com sugestões de alterações para _pull requests_ existentes.
Verifique as documentações sobre adicionar revisão ao _pull request_ para aprovação ou solicitação de alterações.
-* Verifique em _issues_ para ver se existe alguém coordenando traduções para a sua linguagem.
+* Verifique em _issues_ para ver se existe alguém coordenando traduções para a sua linguagem.
* Adicione um único _pull request_ por página traduzida. Isso tornará muito mais fácil a revisão para as outras pessoas.
diff --git a/docs/pt/docs/external-links.md b/docs/pt/docs/external-links.md
index 77ec323511..a4832804d6 100644
--- a/docs/pt/docs/external-links.md
+++ b/docs/pt/docs/external-links.md
@@ -7,7 +7,7 @@ Existem muitas postagens, artigos, ferramentas e projetos relacionados ao **Fast
Aqui tem uma lista, incompleta, de algumas delas.
!!! tip "Dica"
- Se você tem um artigo, projeto, ferramenta ou qualquer coisa relacionada ao **FastAPI** que ainda não está listada aqui, crie um _Pull Request_ adicionando ele.
+ Se você tem um artigo, projeto, ferramenta ou qualquer coisa relacionada ao **FastAPI** que ainda não está listada aqui, crie um _Pull Request_ adicionando ele.
{% for section_name, section_content in external_links.items() %}
diff --git a/docs/pt/docs/fastapi-people.md b/docs/pt/docs/fastapi-people.md
index 93c3479f25..d67ae0d331 100644
--- a/docs/pt/docs/fastapi-people.md
+++ b/docs/pt/docs/fastapi-people.md
@@ -90,7 +90,7 @@ Eles contribuÃram com o código-fonte, documentação, traduções, etc. ð¦
{% endif %}
-Existem muitos outros contribuidores (mais de uma centena), você pode ver todos eles em Página de Contribuidores do FastAPI no GitHub. ð·
+Existem muitos outros contribuidores (mais de uma centena), você pode ver todos eles em Página de Contribuidores do FastAPI no GitHub. ð·
## Top Revisores
@@ -176,7 +176,7 @@ A principal intenção desta página é destacar o esforço da comunidade para a
Especialmente incluindo esforços que normalmente são menos visÃveis, e em muitos casos mais árduo, como ajudar os outros com issues e revisando Pull Requests com traduções.
-Os dados são calculados todo mês, você pode ler o código fonte aqui.
+Os dados são calculados todo mês, você pode ler o código fonte aqui.
Aqui também estou destacando contribuições de patrocinadores.
diff --git a/docs/pt/docs/help-fastapi.md b/docs/pt/docs/help-fastapi.md
index babb404f95..0deef15b51 100644
--- a/docs/pt/docs/help-fastapi.md
+++ b/docs/pt/docs/help-fastapi.md
@@ -26,13 +26,13 @@ Você pode se inscrever (pouco frequente) [**FastAPI e amigos** newsletter](news
## Favorite o **FastAPI** no GitHub
-Você pode "favoritar" o FastAPI no GitHub (clicando na estrela no canto superior direito): https://github.com/tiangolo/fastapi. âï¸
+Você pode "favoritar" o FastAPI no GitHub (clicando na estrela no canto superior direito): https://github.com/fastapi/fastapi. âï¸
Favoritando, outros usuários poderão encontrar mais facilmente e verão que já foi útil para muita gente.
## Acompanhe novos updates no repositorio do GitHub
-Você pode "acompanhar" (watch) o FastAPI no GitHub (clicando no botão com um "olho" no canto superior direito): https://github.com/tiangolo/fastapi. ð
+Você pode "acompanhar" (watch) o FastAPI no GitHub (clicando no botão com um "olho" no canto superior direito): https://github.com/fastapi/fastapi. ð
Podendo selecionar apenas "Novos Updates".
@@ -59,7 +59,7 @@ Você pode:
## Tweete sobre **FastAPI**
-Tweete sobre o **FastAPI** e compartilhe comigo e com os outros o porque de gostar do FastAPI. ð
+Tweete sobre o **FastAPI** e compartilhe comigo e com os outros o porque de gostar do FastAPI. ð
Adoro ouvir sobre como o **FastAPI** é usado, o que você gosta nele, em qual projeto/empresa está sendo usado, etc.
@@ -70,13 +70,13 @@ Adoro ouvir sobre como o **FastAPI** é usado, o que você gosta nele, em qual p
## Responda perguntas no GitHub
-Você pode acompanhar as perguntas existentes e tentar ajudar outros, . ð¤
+Você pode acompanhar as perguntas existentes e tentar ajudar outros, . ð¤
Ajudando a responder as questões de varias pessoas, você pode se tornar um [Expert em FastAPI](fastapi-people.md#especialistas){.internal-link target=_blank} oficial. ð
## Acompanhe o repositório do GitHub
-Você pode "acompanhar" (watch) o FastAPI no GitHub (clicando no "olho" no canto superior direito): https://github.com/tiangolo/fastapi. ð
+Você pode "acompanhar" (watch) o FastAPI no GitHub (clicando no "olho" no canto superior direito): https://github.com/fastapi/fastapi. ð
Se você selecionar "Acompanhando" (Watching) em vez de "Apenas Lançamentos" (Releases only) você receberá notificações quando alguém tiver uma nova pergunta.
@@ -84,7 +84,7 @@ Assim podendo tentar ajudar a resolver essas questões.
## Faça perguntas
-à possÃvel criar uma nova pergunta no repositório do GitHub, por exemplo:
+à possÃvel criar uma nova pergunta no repositório do GitHub, por exemplo:
* Faça uma **pergunta** ou pergunte sobre um **problema**.
* Sugira novos **recursos**.
@@ -96,7 +96,7 @@ Assim podendo tentar ajudar a resolver essas questões.
à possÃvel [contribuir](contributing.md){.internal-link target=_blank} no código fonte fazendo Pull Requests, por exemplo:
* Para corrigir um erro de digitação que você encontrou na documentação.
-* Para compartilhar um artigo, video, ou podcast criados por você sobre o FastAPI editando este arquivo.
+* Para compartilhar um artigo, video, ou podcast criados por você sobre o FastAPI editando este arquivo.
* Não se esqueça de adicionar o link no começo da seção correspondente.
* Para ajudar [traduzir a documentação](contributing.md#traducoes){.internal-link target=_blank} para sua lingua.
* Também é possivel revisar as traduções já existentes.
@@ -110,7 +110,7 @@ Entre no ð¥ questões do GitHub, lá tem um chance maior de você ser ajudado sobre o FastAPI [FastAPI Experts](fastapi-people.md#especialistas){.internal-link target=_blank}.
+ Para perguntas, pergunte nas questões do GitHub, lá tem um chance maior de você ser ajudado sobre o FastAPI [FastAPI Experts](fastapi-people.md#especialistas){.internal-link target=_blank}.
Use o chat apenas para outro tipo de assunto.
diff --git a/docs/pt/docs/history-design-future.md b/docs/pt/docs/history-design-future.md
index a7a1776601..4ec2174056 100644
--- a/docs/pt/docs/history-design-future.md
+++ b/docs/pt/docs/history-design-future.md
@@ -1,6 +1,6 @@
# História, Design e Futuro
-Há algum tempo, um usuário **FastAPI** perguntou:
+Há algum tempo, um usuário **FastAPI** perguntou:
> Qual é a história desse projeto? Parece que surgiu do nada e se tornou incrÃvel em poucas semanas [...]
diff --git a/docs/pt/docs/index.md b/docs/pt/docs/index.md
index 3f8dd18a90..bdaafdefcd 100644
--- a/docs/pt/docs/index.md
+++ b/docs/pt/docs/index.md
@@ -11,11 +11,11 @@
Framework FastAPI, alta performance, fácil de aprender, fácil de codar, pronto para produção
-
-
+
+
-
-
+
+
@@ -26,7 +26,7 @@
**Documentação**: https://fastapi.tiangolo.com
-**Código fonte**: https://github.com/tiangolo/fastapi
+**Código fonte**: https://github.com/fastapi/fastapi
---
@@ -66,7 +66,7 @@ Os recursos chave são:
"*[...] Estou usando **FastAPI** muito esses dias. [...] Estou na verdade planejando utilizar ele em todos os times de **serviços _Machine Learning_ na Microsoft**. Alguns deles estão sendo integrados no _core_ do produto **Windows** e alguns produtos **Office**.*"
-
Kabir Khan -
Microsoft (ref)
+Kabir Khan -
Microsoft (ref)
---
diff --git a/docs/pt/docs/project-generation.md b/docs/pt/docs/project-generation.md
index c98bd069df..e5c935fd2d 100644
--- a/docs/pt/docs/project-generation.md
+++ b/docs/pt/docs/project-generation.md
@@ -14,7 +14,7 @@ GitHub: **FastAPI** Python:
+* _Backend_ **FastAPI** Python:
* **Rápido**: Alta performance, no nÃvel de **NodeJS** e **Go** (graças ao Starlette e Pydantic).
* **Intuitivo**: Ãtimo suporte de editor. _Auto-Complete_ em todo lugar. Menos tempo _debugando_.
* **Fácil**: Projetado para ser fácil de usar e aprender. Menos tempo lendo documentações.
diff --git a/docs/ru/docs/contributing.md b/docs/ru/docs/contributing.md
index f9b8912e55..c879163121 100644
--- a/docs/ru/docs/contributing.md
+++ b/docs/ru/docs/contributing.md
@@ -237,14 +237,14 @@ $ uvicorn tutorial001:app --reload
#### ÐодÑказки и инÑÑÑÑкÑии
-* ÐÑовеÑÑÑе ÑÑÑеÑÑвÑÑÑие пÑл-ÑеквеÑÑÑ Ð´Ð»Ñ ÐаÑего ÑзÑка. ÐобавÑÑе оÑзÑÐ²Ñ Ñ Ð¿ÑоÑÑбой внеÑÑи изменениÑ, еÑли они необÑ
одимÑ, или одобÑиÑе иÑ
.
+* ÐÑовеÑÑÑе ÑÑÑеÑÑвÑÑÑие пÑл-ÑеквеÑÑÑ Ð´Ð»Ñ ÐаÑего ÑзÑка. ÐобавÑÑе оÑзÑÐ²Ñ Ñ Ð¿ÑоÑÑбой внеÑÑи изменениÑ, еÑли они необÑ
одимÑ, или одобÑиÑе иÑ
.
!!! tip "ÐодÑказка"
ÐÑ Ð¼Ð¾Ð¶ÐµÑе добавлÑÑÑ ÐºÐ¾Ð¼Ð¼ÐµÐ½ÑаÑии Ñ Ð¿ÑедложениÑми по Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð² ÑÑÑеÑÑвÑÑÑие пÑл-ÑеквеÑÑÑ.
ÐзнакомÑÑеÑÑ Ñ Ð´Ð¾ÐºÑменÑаÑией о добавлении оÑзÑва к пÑл-ÑеквеÑÑÑ, ÑÑÐ¾Ð±Ñ ÑÑвеÑдиÑÑ ÐµÐ³Ð¾ или запÑоÑиÑÑ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ.
-* ÐÑовеÑÑÑе пÑÐ¾Ð±Ð»ÐµÐ¼Ñ Ð¸ вопÑоÑÑ, ÑÑÐ¾Ð±Ñ ÑзнаÑÑ, еÑÑÑ Ð»Ð¸ кÑо-Ñо, кооÑдиниÑÑÑÑий пеÑÐµÐ²Ð¾Ð´Ñ Ð´Ð»Ñ ÐаÑего ÑзÑка.
+* ÐÑовеÑÑÑе пÑÐ¾Ð±Ð»ÐµÐ¼Ñ Ð¸ вопÑоÑÑ, ÑÑÐ¾Ð±Ñ ÑзнаÑÑ, еÑÑÑ Ð»Ð¸ кÑо-Ñо, кооÑдиниÑÑÑÑий пеÑÐµÐ²Ð¾Ð´Ñ Ð´Ð»Ñ ÐаÑего ÑзÑка.
* ÐобавлÑйÑе один пÑл-ÑеквеÑÑ Ð´Ð»Ñ ÐºÐ°Ð¶Ð´Ð¾Ð¹ оÑделÑной пеÑеведÑнной ÑÑÑаниÑÑ. ÐÑо знаÑиÑелÑно облегÑÐ¸Ñ Ð´ÑÑгим его пÑоÑмоÑÑ.
diff --git a/docs/ru/docs/external-links.md b/docs/ru/docs/external-links.md
index 2448ef82ef..0a4cda27bb 100644
--- a/docs/ru/docs/external-links.md
+++ b/docs/ru/docs/external-links.md
@@ -7,7 +7,7 @@
ÐÐ¾Ñ Ð½ÐµÐ¿Ð¾Ð»Ð½Ñй ÑпиÑок некоÑоÑÑÑ
из ниÑ
.
!!! tip
- ÐÑли Ñ Ð²Ð°Ñ ÐµÑÑÑ ÑÑаÑÑÑ, пÑоекÑ, инÑÑÑÑÐ¼ÐµÐ½Ñ Ð¸Ð»Ð¸ ÑÑо-либо, ÑвÑзанное Ñ **FastAPI**, ÑÑо еÑе не пеÑеÑиÑлено здеÑÑ, ÑоздайÑе Pull Request.
+ ÐÑли Ñ Ð²Ð°Ñ ÐµÑÑÑ ÑÑаÑÑÑ, пÑоекÑ, инÑÑÑÑÐ¼ÐµÐ½Ñ Ð¸Ð»Ð¸ ÑÑо-либо, ÑвÑзанное Ñ **FastAPI**, ÑÑо еÑе не пеÑеÑиÑлено здеÑÑ, ÑоздайÑе Pull Request.
{% for section_name, section_content in external_links.items() %}
diff --git a/docs/ru/docs/fastapi-people.md b/docs/ru/docs/fastapi-people.md
index fa70d168e3..31bb2798e8 100644
--- a/docs/ru/docs/fastapi-people.md
+++ b/docs/ru/docs/fastapi-people.md
@@ -89,7 +89,7 @@ hide:
{% endif %}
-Ðа Ñамом деле ÑакиÑ
лÑдей доволÑно много (более ÑоÑни), Ð²Ñ Ð¼Ð¾Ð¶ÐµÑе ÑвидеÑÑ Ð²ÑеÑ
на ÑÑой ÑÑÑаниÑе FastAPI GitHub Contributors page. ð·
+Ðа Ñамом деле ÑакиÑ
лÑдей доволÑно много (более ÑоÑни), Ð²Ñ Ð¼Ð¾Ð¶ÐµÑе ÑвидеÑÑ Ð²ÑеÑ
на ÑÑой ÑÑÑаниÑе FastAPI GitHub Contributors page. ð·
## РейÑинг ÑевÑÑеÑов
@@ -177,7 +177,7 @@ hide:
ÐÑобенно ÑÑо каÑаеÑÑÑ ÑÑилий, коÑоÑÑе обÑÑно менее замеÑÐ½Ñ Ð¸ во многиÑ
ÑлÑÑаÑÑ
более ÑÑÑдоемки, ÑакиÑ
как помоÑÑ Ð´ÑÑгим в ÑеÑении пÑоблем и пÑовеÑка пÑл-ÑеквеÑÑов Ñ Ð¿ÐµÑеводами.
-ÐаннÑе ÑейÑинги подÑÑиÑÑваÑÑÑÑ ÐºÐ°Ð¶Ð´Ñй меÑÑÑ, ознакомиÑÑÑÑ Ñ Ñем, как ÑÑо ÑабоÑÐ°ÐµÑ Ð¼Ð¾Ð¶Ð½Ð¾ ÑÑÑ.
+ÐаннÑе ÑейÑинги подÑÑиÑÑваÑÑÑÑ ÐºÐ°Ð¶Ð´Ñй меÑÑÑ, ознакомиÑÑÑÑ Ñ Ñем, как ÑÑо ÑабоÑÐ°ÐµÑ Ð¼Ð¾Ð¶Ð½Ð¾ ÑÑÑ.
ÐÑоме Ñого, Ñ Ñакже подÑеÑÐºÐ¸Ð²Ð°Ñ Ð²ÐºÐ»Ð°Ð´ ÑпонÑоÑов.
diff --git a/docs/ru/docs/help-fastapi.md b/docs/ru/docs/help-fastapi.md
index d53f501f53..b007437bc0 100644
--- a/docs/ru/docs/help-fastapi.md
+++ b/docs/ru/docs/help-fastapi.md
@@ -26,13 +26,13 @@
## ÐобавиÑÑ **FastAPI** Ð·Ð²ÐµÐ·Ð´Ñ Ð½Ð° GitHub
-ÐÑ Ð¼Ð¾Ð¶ÐµÑе добавиÑÑ FastAPI "звездÑ" на GitHub (кликнÑÑÑ Ð½Ð° ÐºÐ½Ð¾Ð¿ÐºÑ Ð·Ð²ÐµÐ·Ð´Ñ Ð² веÑÑ
нем пÑавом ÑÐ³Ð»Ñ ÑкÑана): https://github.com/tiangolo/fastapi. âï¸
+ÐÑ Ð¼Ð¾Ð¶ÐµÑе добавиÑÑ FastAPI "звездÑ" на GitHub (кликнÑÑÑ Ð½Ð° ÐºÐ½Ð¾Ð¿ÐºÑ Ð·Ð²ÐµÐ·Ð´Ñ Ð² веÑÑ
нем пÑавом ÑÐ³Ð»Ñ ÑкÑана): https://github.com/fastapi/fastapi. âï¸
Чем болÑÑе звÑзд, Ñем легÑе дÑÑгим полÑзоваÑелÑм найÑи Ð½Ð°Ñ Ð¸ ÑвидеÑÑ, ÑÑо пÑÐ¾ÐµÐºÑ Ñже ÑÑал полезнÑм Ð´Ð»Ñ Ð¼Ð½Ð¾Ð³Ð¸Ñ
.
## ÐÑÑлеживаÑÑ Ñвежие вÑпÑÑки в ÑепозиÑоÑии на GitHub
-ÐÑ Ð¼Ð¾Ð¶ÐµÑе "оÑÑлеживаÑÑ" FastAPI на GitHub (кликниÑе по кнопке "watch" навеÑÑ
Ñ ÑпÑава): https://github.com/tiangolo/fastapi. ð
+ÐÑ Ð¼Ð¾Ð¶ÐµÑе "оÑÑлеживаÑÑ" FastAPI на GitHub (кликниÑе по кнопке "watch" навеÑÑ
Ñ ÑпÑава): https://github.com/fastapi/fastapi. ð
Там же ÐÑ Ð¼Ð¾Ð¶ÐµÑе ÑказаÑÑ Ð² наÑÑÑойкаÑ
- "Releases only".
@@ -59,7 +59,7 @@
## ÐÑÑавиÑÑ ÑообÑение в Twitter о **FastAPI**
-ÐÑÑавÑÑе ÑообÑение в Twitter о **FastAPI** и позволÑÑе мне и дÑÑгим ÑзнаÑÑ - поÑÐµÐ¼Ñ Ð¾Ð½ Ðам нÑавиÑÑÑ. ð
+ÐÑÑавÑÑе ÑообÑение в Twitter о **FastAPI** и позволÑÑе мне и дÑÑгим ÑзнаÑÑ - поÑÐµÐ¼Ñ Ð¾Ð½ Ðам нÑавиÑÑÑ. ð
Я лÑÐ±Ð»Ñ ÑзнаваÑÑ Ð¾ Ñом, как **FastAPI** иÑполÑзÑеÑÑÑ, ÑÑо Ðам понÑавилоÑÑ Ð² нÑм, в какиÑ
пÑоекÑаÑ
/компаниÑÑ
ÐÑ Ð¸ÑполÑзÑеÑе его и Ñ.п.
@@ -71,7 +71,7 @@
## ÐомоÑÑ Ð´ÑÑгим Ñ Ð¸Ñ
пÑоблемами на GitHub
-ÐÑ Ð¼Ð¾Ð¶ÐµÑе поÑмоÑÑеÑÑ, какие пÑÐ¾Ð±Ð»ÐµÐ¼Ñ Ð¸ÑпÑÑÑваÑÑ Ð´ÑÑгие лÑди и попÑÑаÑÑÑÑ Ð¿Ð¾Ð¼Ð¾ÑÑ Ð¸Ð¼. ЧаÑе вÑего ÑÑо вопÑоÑÑ, на коÑоÑÑе, веÑÑма веÑоÑÑно, ÐÑ Ñже знаеÑе оÑвеÑ. ð¤
+ÐÑ Ð¼Ð¾Ð¶ÐµÑе поÑмоÑÑеÑÑ, какие пÑÐ¾Ð±Ð»ÐµÐ¼Ñ Ð¸ÑпÑÑÑваÑÑ Ð´ÑÑгие лÑди и попÑÑаÑÑÑÑ Ð¿Ð¾Ð¼Ð¾ÑÑ Ð¸Ð¼. ЧаÑе вÑего ÑÑо вопÑоÑÑ, на коÑоÑÑе, веÑÑма веÑоÑÑно, ÐÑ Ñже знаеÑе оÑвеÑ. ð¤
ÐÑли ÐÑ Ð±ÑдеÑе много помогаÑÑ Ð»ÑдÑм Ñ ÑеÑением иÑ
пÑоблем, ÐÑ Ð¼Ð¾Ð¶ÐµÑе ÑÑаÑÑ Ð¾ÑиÑиалÑнÑм [ÐкÑпеÑÑом FastAPI](fastapi-people.md#_3){.internal-link target=_blank}. ð
@@ -117,7 +117,7 @@
## ÐÑÑлеживаÑÑ ÑепозиÑоÑий на GitHub
-ÐÑ Ð¼Ð¾Ð¶ÐµÑе "оÑÑлеживаÑÑ" FastAPI на GitHub (кликниÑе по кнопке "watch" навеÑÑ
Ñ ÑпÑава): https://github.com/tiangolo/fastapi. ð
+ÐÑ Ð¼Ð¾Ð¶ÐµÑе "оÑÑлеживаÑÑ" FastAPI на GitHub (кликниÑе по кнопке "watch" навеÑÑ
Ñ ÑпÑава): https://github.com/fastapi/fastapi. ð
ÐÑли ÐÑ Ð²ÑбеÑеÑе "Watching" вмеÑÑо "Releases only", Ñо бÑдеÑе полÑÑаÑÑ ÑÐ²ÐµÐ´Ð¾Ð¼Ð»ÐµÐ½Ð¸Ñ ÐºÐ¾Ð³Ð´Ð° кÑо-либо попÑоÑÐ¸Ñ Ð¾ помоÑи Ñ ÑеÑением его пÑоблемÑ.
@@ -125,7 +125,7 @@
## ÐапÑоÑиÑÑ Ð¿Ð¾Ð¼Ð¾ÑÑ Ñ ÑеÑением пÑоблемÑ
-ÐÑ Ð¼Ð¾Ð¶ÐµÑе ÑоздаÑÑ Ð½Ð¾Ð²Ñй запÑÐ¾Ñ Ñ Ð¿ÑоÑÑбой о помоÑи в ÑепозиÑоÑии на GitHub, напÑимеÑ:
+ÐÑ Ð¼Ð¾Ð¶ÐµÑе ÑоздаÑÑ Ð½Ð¾Ð²Ñй запÑÐ¾Ñ Ñ Ð¿ÑоÑÑбой о помоÑи в ÑепозиÑоÑии на GitHub, напÑимеÑ:
* ÐадаÑÑ **вопÑоÑ** или попÑоÑиÑÑ Ð¿Ð¾Ð¼Ð¾Ñи в ÑеÑении **пÑоблемÑ**.
* ÐÑедложиÑÑ Ð½Ð¾Ð²Ð¾Ðµ **ÑлÑÑÑение**.
@@ -188,7 +188,7 @@
ÐÑ Ð¼Ð¾Ð¶ÐµÑе [ÑделаÑÑ Ð²ÐºÐ»Ð°Ð´](contributing.md){.internal-link target=_blank} в код ÑÑеймвоÑка иÑполÑзÑÑ Ð¿Ñл-ÑеквеÑÑÑ, напÑимеÑ:
* ÐÑпÑавиÑÑ Ð¾Ð¿ÐµÑаÑкÑ, коÑоÑÑÑ ÐÑ Ð½Ð°Ñли в докÑменÑаÑии.
-* ÐоделиÑÑÑÑ ÑÑаÑÑÑй, видео или подкаÑÑом о FastAPI, коÑоÑÑе ÐÑ Ñоздали или наÑли изменив ÑÑÐ¾Ñ Ñайл.
+* ÐоделиÑÑÑÑ ÑÑаÑÑÑй, видео или подкаÑÑом о FastAPI, коÑоÑÑе ÐÑ Ñоздали или наÑли изменив ÑÑÐ¾Ñ Ñайл.
* УбедиÑеÑÑ, ÑÑо ÐÑ Ð´Ð¾Ð±Ð°Ð²Ð¸Ð»Ð¸ ÑÐ²Ð¾Ñ ÑÑÑÐ»ÐºÑ Ð² наÑало ÑооÑвеÑÑÑвÑÑÑего Ñаздела.
* ÐомоÑÑ Ñ [пеÑеводом докÑменÑаÑии](contributing.md#_8){.internal-link target=_blank} на ÐÐ°Ñ ÑзÑк.
* ÐÑ Ñакже можеÑе пÑовеÑÑÑÑ Ð¿ÐµÑÐµÐ²Ð¾Ð´Ñ ÑделаннÑе дÑÑгими.
@@ -219,7 +219,7 @@
ÐодклÑÑайÑеÑÑ Ðº ð¥ ÑаÑÑ Ð² Discord ð¥ и обÑайÑеÑÑ Ñ Ð´ÑÑгими ÑÑаÑÑниками ÑообÑеÑÑва FastAPI.
!!! tip "ÐодÑказка"
- ÐопÑоÑÑ Ð¿Ð¾ пÑоблемам Ñ ÑÑеймвоÑком лÑÑÑе задаваÑÑ Ð² GitHub issues, Ñак болÑÑе ÑанÑов, ÑÑо ÐÑ Ð¿Ð¾Ð»ÑÑиÑе помоÑÑ Ð¾Ñ [ÐкÑпеÑÑов FastAPI](fastapi-people.md#_3){.internal-link target=_blank}.
+ ÐопÑоÑÑ Ð¿Ð¾ пÑоблемам Ñ ÑÑеймвоÑком лÑÑÑе задаваÑÑ Ð² GitHub issues, Ñак болÑÑе ÑанÑов, ÑÑо ÐÑ Ð¿Ð¾Ð»ÑÑиÑе помоÑÑ Ð¾Ñ [ÐкÑпеÑÑов FastAPI](fastapi-people.md#_3){.internal-link target=_blank}.
ÐÑполÑзÑйÑе ÑÑÐ¾Ñ ÑÐ°Ñ ÑолÑко Ð´Ð»Ñ Ð±ÐµÑед на оÑвлеÑÑннÑе ÑемÑ.
diff --git a/docs/ru/docs/history-design-future.md b/docs/ru/docs/history-design-future.md
index e9572a6d6e..96604e3a4e 100644
--- a/docs/ru/docs/history-design-future.md
+++ b/docs/ru/docs/history-design-future.md
@@ -1,6 +1,6 @@
# ÐÑÑоÑÐ¸Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð¸ далÑнейÑее ÑазвиÑие
-ÐднаждÑ, один из полÑзоваÑелей **FastAPI** задал вопÑоÑ:
+ÐднаждÑ, один из полÑзоваÑелей **FastAPI** задал вопÑоÑ:
> Ðакова иÑÑоÑÐ¸Ñ ÑÑого пÑоекÑа? СоздаÑÑÑÑ Ð²Ð¿ÐµÑаÑление, ÑÑо он ÑвилÑÑ Ð¸Ð· ниоÑкÑда и завоевал Ð¼Ð¸Ñ Ð·Ð° неÑколÑко Ð½ÐµÐ´ÐµÐ»Ñ [...]
diff --git a/docs/ru/docs/index.md b/docs/ru/docs/index.md
index 7148131dc0..313e980d81 100644
--- a/docs/ru/docs/index.md
+++ b/docs/ru/docs/index.md
@@ -11,11 +11,11 @@
ÐоÑовÑй к внедÑÐµÐ½Ð¸Ñ Ð²ÑÑокопÑоизводиÑелÑнÑй ÑÑеймвоÑк, пÑоÑÑой в изÑÑении и ÑазÑабоÑке.
-
-
+
+
-
-
+
+
@@ -29,7 +29,7 @@
**ÐокÑменÑаÑиÑ**: https://fastapi.tiangolo.com
-**ÐÑÑ
однÑй код**: https://github.com/tiangolo/fastapi
+**ÐÑÑ
однÑй код**: https://github.com/fastapi/fastapi
---
@@ -69,7 +69,7 @@ FastAPI â ÑÑо ÑовÑеменнÑй, бÑÑÑÑÑй (вÑÑокопÑои
"_РпоÑледнее вÑÐµÐ¼Ñ Ñ Ð¼Ð½Ð¾Ð³Ð¾ где иÑполÑзÑÑ **FastAPI**. [...] Ðа Ñамом деле Ñ Ð¿Ð»Ð°Ð½Ð¸ÑÑÑ Ð¸ÑполÑзоваÑÑ ÐµÐ³Ð¾ Ð´Ð»Ñ Ð²ÑеÑ
**ÑеÑвиÑов маÑинного обÑÑÐµÐ½Ð¸Ñ Ð¼Ð¾ÐµÐ¹ ÐºÐ¾Ð¼Ð°Ð½Ð´Ñ Ð² Microsoft**. ÐекоÑоÑÑе из ниÑ
инÑегÑиÑÑÑÑÑÑ Ð² оÑновной пÑодÑÐºÑ **Windows**, а некоÑоÑÑе â в пÑодÑкÑÑ **Office**._"
-
Kabir Khan -
Microsoft (ref)
+Kabir Khan -
Microsoft (ref)
---
diff --git a/docs/ru/docs/project-generation.md b/docs/ru/docs/project-generation.md
index 76253d6f2f..efd6794ad9 100644
--- a/docs/ru/docs/project-generation.md
+++ b/docs/ru/docs/project-generation.md
@@ -14,7 +14,7 @@ GitHub: **FastAPI**:
+* ÐÑкенд поÑÑÑоен на ÑÑеймвоÑке **FastAPI**:
* **ÐÑÑÑÑÑй**: ÐÑÑокопÑоизводиÑелÑнÑй, на ÑÑовне **NodeJS** и **Go** (благодаÑÑ Starlette и Pydantic).
* **ÐнÑÑиÑивно понÑÑнÑй**: ÐÑлиÑÐ½Ð°Ñ Ð¿Ð¾Ð´Ð´ÐµÑжка ÑедакÑоÑа. ÐвÑодополнение кода везде. ÐенÑÑе вÑемени на оÑладкÑ.
* **ÐÑоÑÑой**: РазÑабоÑан Ñак, ÑÑоб бÑÑÑ Ð¿ÑоÑÑÑм в иÑполÑзовании и изÑÑении. ÐенÑÑе вÑемени на ÑÑение докÑменÑаÑии.
diff --git a/docs/tr/docs/external-links.md b/docs/tr/docs/external-links.md
index 78eaf1729d..209ab922c4 100644
--- a/docs/tr/docs/external-links.md
+++ b/docs/tr/docs/external-links.md
@@ -7,7 +7,7 @@
Bunlardan bazılarının tamamlanmamıŠbir listesi aÅaÄıda bulunmaktadır.
!!! tip "İpucu"
- EÄer **FastAPI** ile alakalı henüz burada listelenmemiÅ bir makale, proje, araç veya baÅka bir Åeyiniz varsa, bunu eklediÄiniz bir Pull Request oluÅturabilirsiniz.
+ EÄer **FastAPI** ile alakalı henüz burada listelenmemiÅ bir makale, proje, araç veya baÅka bir Åeyiniz varsa, bunu eklediÄiniz bir Pull Request oluÅturabilirsiniz.
{% for section_name, section_content in external_links.items() %}
diff --git a/docs/tr/docs/fastapi-people.md b/docs/tr/docs/fastapi-people.md
index 6dd4ec0611..de62c57c4e 100644
--- a/docs/tr/docs/fastapi-people.md
+++ b/docs/tr/docs/fastapi-people.md
@@ -89,7 +89,7 @@ Kaynak koduna, dökümantasyona, çevirilere ve bir sürü Åeye katkıda bulund
{% endif %}
-Bunlar dıÅında katkıda bulunan, yüzden fazla, bir sürü insan var. Hepsini FastAPI GitHub Katkıda Bulunanlar sayfasında görebilirsin. ð·
+Bunlar dıÅında katkıda bulunan, yüzden fazla, bir sürü insan var. Hepsini FastAPI GitHub Katkıda Bulunanlar sayfasında görebilirsin. ð·
## En Fazla DeÄerlendirme Yapanlar
@@ -176,7 +176,7 @@ Bu sayfanın temel amacı, topluluÄun baÅkalarına yardım etme çabasını vu
Ãzellikle normalde daha az görünür olan ve çoÄu durumda daha zahmetli olan, diÄerlerine sorularında yardımcı olmak, çevirileri ve Pull Request'leri gözden geçirmek gibi çabalar dahil.
-Veriler ayda bir hesaplanır, kaynak kodu buradan okuyabilirsin.
+Veriler ayda bir hesaplanır, kaynak kodu buradan okuyabilirsin.
Burada sponsorların katkılarını da vurguluyorum.
diff --git a/docs/tr/docs/history-design-future.md b/docs/tr/docs/history-design-future.md
index 1dd0e637f5..8b2662bc36 100644
--- a/docs/tr/docs/history-design-future.md
+++ b/docs/tr/docs/history-design-future.md
@@ -1,6 +1,6 @@
# GeçmiÅi, Tasarımı ve GeleceÄi
-Bir süre önce, bir **FastAPI** kullanıcısı sordu:
+Bir süre önce, bir **FastAPI** kullanıcısı sordu:
> Bu projenin geçmiÅi nedir? Birkaç hafta içinde hiçbir yerden harika bir Åeye dönüÅmüŠgibi görünüyor [...]
diff --git a/docs/tr/docs/index.md b/docs/tr/docs/index.md
index 3dc624a68c..7d96b4edc9 100644
--- a/docs/tr/docs/index.md
+++ b/docs/tr/docs/index.md
@@ -11,11 +11,11 @@
FastAPI framework, yüksek performanslı, öÄrenmesi oldukça kolay, kodlaması hızlı, kullanıma hazır
-
-
+
+
-
-
+
+
@@ -29,7 +29,7 @@
**Dokümantasyon**: https://fastapi.tiangolo.com
-**Kaynak Kod**: https://github.com/tiangolo/fastapi
+**Kaynak Kod**: https://github.com/fastapi/fastapi
---
@@ -69,7 +69,7 @@ Temel özellikleri Åunlardır:
"_[...] Bugünlerde **FastAPI**'ı çok fazla kullanıyorum. [...] Aslında bunu ekibimin **Microsoft'taki Machine Learning servislerinin** tamamında kullanmayı planlıyorum. Bunlardan bazıları **Windows**'un ana ürünlerine ve **Office** ürünlerine entegre ediliyor._"
-
Kabir Khan -
Microsoft (ref)
+Kabir Khan -
Microsoft (ref)
---
diff --git a/docs/tr/docs/project-generation.md b/docs/tr/docs/project-generation.md
index 75e3ae3397..c9dc24acc4 100644
--- a/docs/tr/docs/project-generation.md
+++ b/docs/tr/docs/project-generation.md
@@ -14,7 +14,7 @@ GitHub: **FastAPI** backend:
+* Python **FastAPI** backend:
* **Hızlı**: **NodeJS** ve **Go** ile eÅit, çok yüksek performans (Starlette ve Pydantic'e teÅekkürler).
* **Sezgisel**: Editor desteÄı. Otomatik tamamlama. Daha az debugging.
* **Kolay**: Kolay öÄrenip kolay kullanmak için tasarlandı. Daha az döküman okuma daha çok iÅ.
diff --git a/docs/uk/docs/fastapi-people.md b/docs/uk/docs/fastapi-people.md
index 152a7b0980..c6a6451d8d 100644
--- a/docs/uk/docs/fastapi-people.md
+++ b/docs/uk/docs/fastapi-people.md
@@ -89,7 +89,7 @@ FastAPI Ð¼Ð°Ñ Ð´Ð¸Ð²Ð¾Ð²Ð¸Ð¶Ð½Ñ ÑпÑлÑноÑÑ, Ñка вÑÑÐ°Ñ Ð»Ñде
{% endif %}
-РбагаÑо ÑнÑиÑ
конÑÑибÑÑоÑÑв (бÑлÑÑе ÑоÑнÑ), ÑÑ
ÑÑÑÑ
можна побаÑиÑи на ÑÑоÑÑнÑÑ FastAPI GitHub Contributors. ð·
+РбагаÑо ÑнÑиÑ
конÑÑибÑÑоÑÑв (бÑлÑÑе ÑоÑнÑ), ÑÑ
ÑÑÑÑ
можна побаÑиÑи на ÑÑоÑÑнÑÑ FastAPI GitHub Contributors. ð·
## ÐайкÑаÑÑ ÑеÑензенÑи
@@ -176,7 +176,7 @@ FastAPI Ð¼Ð°Ñ Ð´Ð¸Ð²Ð¾Ð²Ð¸Ð¶Ð½Ñ ÑпÑлÑноÑÑ, Ñка вÑÑÐ°Ñ Ð»Ñде
ÐÑобливо вÑаÑ
овÑÑÑи зÑÑиллÑ, ÑÐºÑ Ð·Ð°Ð·Ð²Ð¸Ñай Ð¼ÐµÐ½Ñ Ð¿Ð¾Ð¼ÑÑнÑ, а в багаÑÑоÑ
випадкаÑ
бÑлÑÑ Ð²Ð°Ð¶ÐºÑ, Ñк-Ð¾Ñ Ð´Ð¾Ð¿Ð¾Ð¼Ð¾Ð³Ð° ÑнÑим Ñз пÑоблемами Ñа пеÑеглÑд пÑл ÑеквеÑÑÑв пеÑекладÑв.
-ÐÐ°Ð½Ñ ÑозÑаÑ
овÑÑÑÑÑÑ ÑомÑÑÑÑÑ, ви можеÑе ознайомиÑиÑÑ Ð· виÑ
Ñдним кодом ÑÑÑ.
+ÐÐ°Ð½Ñ ÑозÑаÑ
овÑÑÑÑÑÑ ÑомÑÑÑÑÑ, ви можеÑе ознайомиÑиÑÑ Ð· виÑ
Ñдним кодом ÑÑÑ.
ТÑÑ Ñ Ñакож пÑдкÑеÑлÑÑ Ð²Ð½ÐµÑки ÑпонÑоÑÑв.
diff --git a/docs/uk/docs/index.md b/docs/uk/docs/index.md
index 29e19025ad..ffcb8fd133 100644
--- a/docs/uk/docs/index.md
+++ b/docs/uk/docs/index.md
@@ -5,11 +5,11 @@
ÐоÑовий до пÑодакÑинÑ, виÑокопÑодÑкÑивний, пÑоÑÑий Ñ Ð²Ð¸Ð²ÑÐµÐ½Ð½Ñ Ñа Ñвидкий Ð´Ð»Ñ Ð½Ð°Ð¿Ð¸ÑÐ°Ð½Ð½Ñ ÐºÐ¾Ð´Ñ ÑÑеймвоÑк
-
-
+
+
-
-
+
+
@@ -23,7 +23,7 @@
**ÐокÑменÑаÑÑÑ**: https://fastapi.tiangolo.com
-**ÐÑогÑамний код**: https://github.com/tiangolo/fastapi
+**ÐÑогÑамний код**: https://github.com/fastapi/fastapi
---
@@ -64,7 +64,7 @@ FastAPI - Ñе ÑÑÑаÑний, Ñвидкий (виÑокопÑодÑкÑив
"_[...] I'm using **FastAPI** a ton these days. [...] I'm actually planning to use it for all of my team's **ML services at Microsoft**. Some of them are getting integrated into the core **Windows** product and some **Office** products._"
-
Kabir Khan -
Microsoft (ref)
+Kabir Khan -
Microsoft (ref)
---
diff --git a/docs/vi/docs/index.md b/docs/vi/docs/index.md
index c75af9fa84..5fc1400fd0 100644
--- a/docs/vi/docs/index.md
+++ b/docs/vi/docs/index.md
@@ -11,11 +11,11 @@
FastAPI framework, hiá»u nÄng cao, dá»
há»c, dá»
code, sẵn sà ng Äá» tạo ra sản phẩm
-
-
+
+
-
-
+
+
@@ -29,7 +29,7 @@
**Tà i liá»u**: https://fastapi.tiangolo.com
-**Mã nguá»n**: https://github.com/tiangolo/fastapi
+**Mã nguá»n**: https://github.com/fastapi/fastapi
---
@@ -69,7 +69,7 @@ Những tÃnh nÄng như:
"_[...] Tôi Äang sá» dụng **FastAPI** vô cùng nhiá»u và o những ngà y nà y. [...] Tôi thá»±c sá»± Äang lên kế hoạch sá» dụng nó cho tất cả các nhóm **dá»ch vụ ML tại Microsoft**. Má»t và i trong sá» Äó Äang tÃch hợp và o sản phẩm lõi cá»§a **Window** và má»t và i sản phẩm cho **Office**._"
-
Kabir Khan -
Microsoft (ref)
+Kabir Khan -
Microsoft (ref)
---
diff --git a/docs/yo/docs/index.md b/docs/yo/docs/index.md
index c2780a0866..eb20adbb55 100644
--- a/docs/yo/docs/index.md
+++ b/docs/yo/docs/index.md
@@ -11,11 +11,11 @@
Ãlà nà wẹÌẹÌbù FastAPI, iá¹£áº¹Ì gÃga, ó rá»rùn láti ká»Ì, o yára láti kóòdù, ó sì á¹£etán fún iá¹£elá»pá» nà lÃlo
-
-
+
+
-
-
+
+
@@ -29,7 +29,7 @@
**Ãká»sÃlẹÌ**: https://fastapi.tiangolo.com
-**Orisun Kóòdù**: https://github.com/tiangolo/fastapi
+**Orisun Kóòdù**: https://github.com/fastapi/fastapi
---
@@ -69,7 +69,7 @@ FastAPI jáº¹Ì Ã¬gbà lódé, tà ó yára (iṣẹ-giga), ìlà nà wẹÌẹÌb
"_[...] Mò Å lo **FastAPI** púpá»Ì nà lẹÌnu à ìpáº¹Ì yìÃ. [...] Mo n gbero láti lo o pẹÌlú à wá»n ẹgbẹ mi fún gbogbo iṣẹ **ML wa ni Microsoft**. Diẹ nÃnú wá»n ni afikun ti ifilelẹ à wá»n ẹya ara ti á»ja **Windows** wa pẹÌlú à wá»n ti **Office**._"
-
Kabir Khan -
Microsoft (ref)
+Kabir Khan -
Microsoft (ref)
---
diff --git a/docs/zh-hant/docs/fastapi-people.md b/docs/zh-hant/docs/fastapi-people.md
index 0bc00f9c66..cc671cacfd 100644
--- a/docs/zh-hant/docs/fastapi-people.md
+++ b/docs/zh-hant/docs/fastapi-people.md
@@ -148,7 +148,7 @@ FastAPI æä¸åé常æ£çç¤¾ç¾¤ï¼æ¡è¿ä¾èªä¸åèæ¯çæååèã
{% endif %}
-éæè¨±å¤å
¶ä»çè²¢ç»è
ï¼è¶
éä¸ç¾ä½ï¼ï¼ä½ å¯ä»¥å¨ FastAPI GitHub è²¢ç»è
é 颿¥çã ð·
+éæè¨±å¤å
¶ä»çè²¢ç»è
ï¼è¶
éä¸ç¾ä½ï¼ï¼ä½ å¯ä»¥å¨ FastAPI GitHub è²¢ç»è
é 颿¥çã ð·
## 主è¦ç¿»è¯å¯©æ ¸è
@@ -229,7 +229,7 @@ FastAPI æä¸åé常æ£çç¤¾ç¾¤ï¼æ¡è¿ä¾èªä¸åèæ¯çæååèã
ç¹å¥æ¯é£äºé常ä¸å¤ªé¡¯ç¼ä½å¾å¾æ´å è±è¾çå·¥ä½ï¼ä¾å¦å¹«å©ä»äººè§£çåé¡å審æ¥å
å«ç¿»è¯ç Pull Requestsã
-éäºæ¸ææ¯æè¨ç®ä¸æ¬¡ï¼ä½ å¯ä»¥å¨éæ¥çåå§ç¢¼ã
+éäºæ¸ææ¯æè¨ç®ä¸æ¬¡ï¼ä½ å¯ä»¥å¨éæ¥çåå§ç¢¼ã
æ¤å¤ï¼æä¹ç¹å¥è¡¨æè´å©è
çè²¢ç»ã
diff --git a/docs/zh-hant/docs/index.md b/docs/zh-hant/docs/index.md
index cdd98ae84e..c98a3098f9 100644
--- a/docs/zh-hant/docs/index.md
+++ b/docs/zh-hant/docs/index.md
@@ -5,11 +5,11 @@
FastAPI æ¡æ¶ï¼é«æè½ï¼ææ¼å¸ç¿ï¼å¿«ééç¼ï¼é©ç¨æ¼çç¢ç°å¢
-
-
+
+
-
-
+
+
@@ -23,7 +23,7 @@
**æä»¶**ï¼ https://fastapi.tiangolo.com
-**ç¨å¼ç¢¼**ï¼ https://github.com/tiangolo/fastapi
+**ç¨å¼ç¢¼**ï¼ https://github.com/fastapi/fastapi
---
@@ -63,7 +63,7 @@ FastAPI æ¯ä¸åç¾ä»£ãå¿«éï¼é«æè½ï¼ç web æ¡æ¶ï¼ç¨æ¼ Python
"_[...] è¿æå¤§éçä½¿ç¨ **FastAPI**ã [...] ç®åæ£å¨è¨ç«å¨**å¾®è»**åéç**æ©å¨å¸ç¿**æåä¸å°å
¥ãå
¶ä¸ä¸äºæ£å¨æ´åå°æ ¸å¿ç **Windows** ç¢ååä¸äº **Office** ç¢åã_"
-
Kabir Khan -
Microsoft (ref)
+Kabir Khan -
Microsoft (ref)
---
diff --git a/docs/zh/docs/contributing.md b/docs/zh/docs/contributing.md
index 3dfc3db7ce..91be2edbbb 100644
--- a/docs/zh/docs/contributing.md
+++ b/docs/zh/docs/contributing.md
@@ -254,22 +254,22 @@ $ uvicorn tutorial001:app --reload
#### 建议åæå
-* å¨å½å å·²æç pull requests 䏿¥æ¾ä½ 使ç¨çè¯è¨ï¼æ·»å è¦æ±ä¿®æ¹æåæåå¹¶çè¯å®¡æè§ã
+* å¨å½å å·²æç pull requests 䏿¥æ¾ä½ 使ç¨çè¯è¨ï¼æ·»å è¦æ±ä¿®æ¹æåæåå¹¶çè¯å®¡æè§ã
!!! tip
ä½ å¯ä»¥ä¸ºå·²æç pull requests æ·»å å
å«ä¿®æ¹å»ºè®®çè¯è®ºã
详æ
坿¥çå
³äº æ·»å pull request è¯å®¡æè§ 以åæåå¹¶æè¦æ±ä¿®æ¹çææ¡£ã
-* æ£æ¥å¨ GitHub Discussion æ¯å¦æå
³äºä½ æç¨è¯è¨çåä½ç¿»è¯ã 妿æï¼ä½ å¯ä»¥è®¢é
å®ï¼å½æä¸æ¡æ°ç PR 请æ±éè¦è¯å®¡æ¶ï¼ç³»ç»ä¼èªå¨å°å
¶æ·»å å°è®¨è®ºä¸ï¼ä½ ä¹ä¼æ¶å°å¯¹åºçæ¨éã
+* æ£æ¥å¨ GitHub Discussion æ¯å¦æå
³äºä½ æç¨è¯è¨çåä½ç¿»è¯ã 妿æï¼ä½ å¯ä»¥è®¢é
å®ï¼å½æä¸æ¡æ°ç PR 请æ±éè¦è¯å®¡æ¶ï¼ç³»ç»ä¼èªå¨å°å
¶æ·»å å°è®¨è®ºä¸ï¼ä½ ä¹ä¼æ¶å°å¯¹åºçæ¨éã
* æ¯ç¿»è¯ä¸ä¸ªé¡µé¢æ°å¢ä¸ä¸ª pull requestãè¿å°ä½¿å
¶ä»äººæ´å®¹æå¯¹å
¶è¿è¡è¯å®¡ã
å¯¹äºæï¼è¯æ³¨ï¼ä½è
使ç¨è¥¿ççè¯åè±è¯ï¼ä¸æçè¯è¨ï¼æå°å¨çå¾
å
¶ä»äººè¯å®¡ç¿»è¯ä¹åå°å
¶åå¹¶ã
* ä½ è¿å¯ä»¥æ¥çæ¯å¦æä½ æç¨è¯è¨çç¿»è¯ï¼å¹¶å¯¹å
¶è¿è¡è¯å®¡ï¼è¿å°å¸®å©æäºè§£ç¿»è¯æ¯å¦æ£ç¡®ä»¥åè½å¦å°å
¶åå¹¶ã
- * å¯ä»¥å¨ GitHub Discussions 䏿¥çã
- * ä¹å¯ä»¥å¨ç°æ PR ä¸éè¿ä½ 使ç¨çè¯è¨æ ç¾æ¥çé对åºç PRï¼ä¸¾ä¸ªä¾åï¼å¯¹äºè¥¿ççè¯ï¼æ ç¾æ¯ `lang-es`ã
+ * å¯ä»¥å¨ GitHub Discussions 䏿¥çã
+ * ä¹å¯ä»¥å¨ç°æ PR ä¸éè¿ä½ 使ç¨çè¯è¨æ ç¾æ¥çé对åºç PRï¼ä¸¾ä¸ªä¾åï¼å¯¹äºè¥¿ççè¯ï¼æ ç¾æ¯ `lang-es`ã
* 请使ç¨ç¸åç Python 示ä¾ï¼ä¸åªéç¿»è¯ææ¡£ä¸çææ¬ï¼ä¸ç¨ä¿®æ¹å
¶å®ä¸è¥¿ã
diff --git a/docs/zh/docs/fastapi-people.md b/docs/zh/docs/fastapi-people.md
index d6a3e66c32..87e6c8e6b3 100644
--- a/docs/zh/docs/fastapi-people.md
+++ b/docs/zh/docs/fastapi-people.md
@@ -148,7 +148,7 @@ FastAPI æä¸ä¸ªé常æ£ç社åºï¼å®æ¬¢è¿æ¥èªå个é¢ååèæ¯çæ
{% endif %}
-è¿æå¾å¤å«çè´¡ç®è
ï¼è¶
è¿100个ï¼ï¼ä½ å¯ä»¥å¨ FastAPI GitHub è´¡ç®è
é¡µé¢ ä¸çå°ä»ä»¬ãð·
+è¿æå¾å¤å«çè´¡ç®è
ï¼è¶
è¿100个ï¼ï¼ä½ å¯ä»¥å¨ FastAPI GitHub è´¡ç®è
é¡µé¢ ä¸çå°ä»ä»¬ãð·
## æ°åºç¿»è¯å®¡æ ¸è
@@ -229,7 +229,7 @@ FastAPI æä¸ä¸ªé常æ£ç社åºï¼å®æ¬¢è¿æ¥èªå个é¢ååèæ¯çæ
å°¤å
¶æ¯é£äºä¸å¼äººæ³¨ç®ä¸æ¶åæ´å°é¾çä»»å¡ï¼ä¾å¦å¸®å©ä»äººè§£å³é®é¢æè
è¯å®¡ç¿»è¯ Pull Requestsã
-è¯¥æ°æ®æ¯æè®¡ç®ä¸æ¬¡ï¼æ¨å¯ä»¥é
读 æºä»£ç ã
+è¯¥æ°æ®æ¯æè®¡ç®ä¸æ¬¡ï¼æ¨å¯ä»¥é
读 æºä»£ç ã
è¿éä¹å¼ºè°äºèµå©åçè´¡ç®ã
diff --git a/docs/zh/docs/help-fastapi.md b/docs/zh/docs/help-fastapi.md
index d2a210c39f..e3aa5575cf 100644
--- a/docs/zh/docs/help-fastapi.md
+++ b/docs/zh/docs/help-fastapi.md
@@ -26,13 +26,13 @@
## å¨ GitHub ä¸ä¸º **FastAPI** å æ
-æ¨å¯ä»¥å¨ GitHub ä¸ **Star** FastAPIï¼åªè¦ç¹å»å³ä¸è§çææå°±å¯ä»¥äºï¼ï¼ https://github.com/tiangolo/fastapiãâï¸
+æ¨å¯ä»¥å¨ GitHub ä¸ **Star** FastAPIï¼åªè¦ç¹å»å³ä¸è§çææå°±å¯ä»¥äºï¼ï¼ https://github.com/fastapi/fastapiãâï¸
**Star** 以åï¼å
¶å®ç¨æ·å°±è½æ´å®¹ææ¾å° FastAPIï¼å¹¶äºè§£å°å·²ç»æå
¶ä»ç¨æ·å¨ä½¿ç¨å®äºã
## å
³æ³¨ GitHub èµæºåºççæ¬åå¸
-æ¨è¿å¯ä»¥å¨ GitHub ä¸ **Watch** FastAPIï¼ï¼ç¹å»å³ä¸è§ç **Watch** æé®ï¼https://github.com/tiangolo/fastapiãð
+æ¨è¿å¯ä»¥å¨ GitHub ä¸ **Watch** FastAPIï¼ï¼ç¹å»å³ä¸è§ç **Watch** æé®ï¼https://github.com/fastapi/fastapiãð
æ¨å¯ä»¥éæ©åªå
³æ³¨åå¸ï¼**Releases only**ï¼ã
@@ -59,7 +59,7 @@
## Tweet about **FastAPI**
-Tweet about **FastAPI** 让æå大家ç¥éæ¨ä¸ºä»ä¹å欢 FastAPIãð
+Tweet about **FastAPI** 让æå大家ç¥éæ¨ä¸ºä»ä¹å欢 FastAPIãð
ç¥éæäººä½¿ç¨ **FastAPI**ï¼æä¼å¾å¼å¿ï¼æä¹æ³ç¥éæ¨ä¸ºä»ä¹å欢 FastAPIï¼ä»¥åæ¨å¨ä»ä¹é¡¹ç®/åªäºå
¬å¸ä½¿ç¨ FastAPIï¼ççã
@@ -70,13 +70,13 @@
## å¨ GitHub ä¸å¸®å©å
¶ä»äººè§£å³é®é¢
-æ¨å¯ä»¥æ¥çç°æ issuesï¼å¹¶å°è¯å¸®å©å
¶ä»äººè§£å³é®é¢ï¼è¯´ä¸å®æ¨è½è§£å³è¿äºé®é¢å¢ãð¤
+æ¨å¯ä»¥æ¥çç°æ issuesï¼å¹¶å°è¯å¸®å©å
¶ä»äººè§£å³é®é¢ï¼è¯´ä¸å®æ¨è½è§£å³è¿äºé®é¢å¢ãð¤
妿叮å©å¾å¤äººè§£å³äºé®é¢ï¼æ¨å°±æå¯è½æä¸º [FastAPI ç宿¹ä¸å®¶](fastapi-people.md#_3){.internal-link target=_blank}ãð
## çå¬ GitHub èµæºåº
-æ¨å¯ä»¥å¨ GitHub ä¸ãçå¬ãFastAPIï¼ç¹å»å³ä¸è§ç "watch" æé®ï¼ï¼ https://github.com/tiangolo/fastapi. ð
+æ¨å¯ä»¥å¨ GitHub ä¸ãçå¬ãFastAPIï¼ç¹å»å³ä¸è§ç "watch" æé®ï¼ï¼ https://github.com/fastapi/fastapi. ð
妿æ¨éæ© "Watching" è䏿¯ "Releases only"ï¼æäººåå»ºæ° Issue æ¶ï¼æ¨ä¼æ¥æ¶å°éç¥ã
@@ -84,7 +84,7 @@
## å建 Issue
-æ¨å¯ä»¥å¨ GitHub èµæºåºä¸å建 Issueï¼ä¾å¦ï¼
+æ¨å¯ä»¥å¨ GitHub èµæºåºä¸å建 Issueï¼ä¾å¦ï¼
* æåº**é®é¢**æ**æè§**
* æåºæ°**ç¹æ§**建议
@@ -96,7 +96,7 @@
æ¨å¯ä»¥å建 PR 为æºä»£ç å[è´¡ç®](contributing.md){.internal-link target=_blank}ï¼ä¾å¦ï¼
* ä¿®æ¹ææ¡£éå«å
-* ç¼è¾è¿ä¸ªæä»¶ï¼å享 FastAPI çæç« ãè§é¢ãå客ï¼ä¸è®ºæ¯æ¨èªå·±çï¼è¿æ¯æ¨çå°ç齿
+* ç¼è¾è¿ä¸ªæä»¶ï¼å享 FastAPI çæç« ãè§é¢ãå客ï¼ä¸è®ºæ¯æ¨èªå·±çï¼è¿æ¯æ¨çå°ç齿
* 注æï¼æ·»å ç龿¥è¦æ¾å¨å¯¹åºåºåçå¼å¤´
* [ç¿»è¯ææ¡£](contributing.md#_8){.internal-link target=_blank}
* 审é
å«äººç¿»è¯çææ¡£
@@ -110,7 +110,7 @@
!!! tip "æç¤º"
- 妿é®é¢ï¼è¯·å¨ GitHub Issues éæé®ï¼å¨è¿éæ´å®¹æå¾å° [FastAPI ä¸å®¶](fastapi-people.md#_3){.internal-link target=_blank}ç帮å©ã
+ 妿é®é¢ï¼è¯·å¨ GitHub Issues éæé®ï¼å¨è¿éæ´å®¹æå¾å° [FastAPI ä¸å®¶](fastapi-people.md#_3){.internal-link target=_blank}ç帮å©ã
è天室ä»
ä¾é²èã
diff --git a/docs/zh/docs/history-design-future.md b/docs/zh/docs/history-design-future.md
index 798b8fb5f4..48cfef524a 100644
--- a/docs/zh/docs/history-design-future.md
+++ b/docs/zh/docs/history-design-future.md
@@ -1,6 +1,6 @@
# åå²ãè®¾è®¡ãæªæ¥
-ä¸ä¹
åï¼æ¾æÂ **FastAPI** ç¨æ·é®è¿ï¼
+ä¸ä¹
åï¼æ¾æÂ **FastAPI** ç¨æ·é®è¿ï¼
> è¿ä¸ªé¡¹ç®æææ ·çåå²ï¼å¥½åå®åªç¨äºå å¨å°±ä»é»é»æ é»åå¾ä¼æå¨ç¥â¦â¦
diff --git a/docs/zh/docs/index.md b/docs/zh/docs/index.md
index 0933a02919..d1238fdd29 100644
--- a/docs/zh/docs/index.md
+++ b/docs/zh/docs/index.md
@@ -11,11 +11,11 @@
FastAPI æ¡æ¶ï¼é«æ§è½ï¼æäºå¦ä¹ ï¼é«æç¼ç ï¼ç产å¯ç¨
-
-
+
+
-
-
+
+
@@ -29,7 +29,7 @@
**ææ¡£**ï¼ https://fastapi.tiangolo.com
-**æºç **ï¼ https://github.com/tiangolo/fastapi
+**æºç **ï¼ https://github.com/fastapi/fastapi
---
@@ -70,7 +70,7 @@ FastAPI æ¯ä¸ä¸ªç¨äºæå»º API çç°ä»£ãå¿«éï¼é«æ§è½ï¼ç web æ¡
ã_[...] æè¿æä¸ç´å¨ä½¿ç¨ **FastAPI**ã[...] å®é
䏿æ£å¨è®¡åå°å
¶ç¨äºææå¨ç**微软**å¢éçææ**æºå¨å¦ä¹ æå¡**ãå
¶ä¸ä¸äºæå¡æ£è¢«éæè¿æ ¸å¿ **Windows** 产ååä¸äº **Office** 产åã_ã
-
Kabir Khan -
微软 (ref)
+Kabir Khan -
微软 (ref)
---
diff --git a/docs/zh/docs/project-generation.md b/docs/zh/docs/project-generation.md
index feafa53331..0655cb0a9c 100644
--- a/docs/zh/docs/project-generation.md
+++ b/docs/zh/docs/project-generation.md
@@ -14,7 +14,7 @@ GitHubï¼**FastAPI** å端ï¼
+* Python **FastAPI** å端ï¼
* * **é度快**ï¼å¯ä¸ **NodeJS** å **Go** æ¯è©çæé«æ§è½ï¼å½åäº Starlette å Pydanticï¼
* **ç´è§**ï¼å¼ºå¤§çç¼è¾å¨æ¯æï¼å¤å¤çå¯èªå¨è¡¥å
¨ï¼åå°è°è¯æ¶é´
* **ç®å**ï¼æå¦ãæç¨ï¼é
è¯»ææ¡£æéæ¶é´æ´ç
diff --git a/pyproject.toml b/pyproject.toml
index dbaa421498..9ab6e6d69e 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -47,9 +47,9 @@ dependencies = [
]
[project.urls]
-Homepage = "https://github.com/tiangolo/fastapi"
+Homepage = "https://github.com/fastapi/fastapi"
Documentation = "https://fastapi.tiangolo.com/"
-Repository = "https://github.com/tiangolo/fastapi"
+Repository = "https://github.com/fastapi/fastapi"
[project.optional-dependencies]