committed by
GitHub
1 changed files with 83 additions and 0 deletions
@ -0,0 +1,83 @@ |
|||||
|
# 外部链接与文章 |
||||
|
|
||||
|
**FastAPI** 社区正在不断壮大。 |
||||
|
|
||||
|
有关 **FastAPI** 的帖子、文章、工具和项目越来越多。 |
||||
|
|
||||
|
以下是 **FastAPI** 各种资源的不完整列表。 |
||||
|
|
||||
|
!!! tip "提示" |
||||
|
|
||||
|
如果您的文章、项目、工具或其它任何与 **FastAPI** 相关的内容尚未收入此表,请在此创建 <a href="https://github.com/tiangolo/fastapi/edit/master/docs/en/data/external_links.yml" class="external-link" target="_blank">PR</a>。 |
||||
|
|
||||
|
## 文章 |
||||
|
|
||||
|
### 英文 |
||||
|
|
||||
|
{% if external_links %} |
||||
|
{% for article in external_links.articles.english %} |
||||
|
|
||||
|
* <a href="{{ article.link }}" class="external-link" target="_blank">{{ article.title }}</a> by <a href="{{ article.author_link }}" class="external-link" target="_blank">{{ article.author }}</a>. |
||||
|
{% endfor %} |
||||
|
{% endif %} |
||||
|
|
||||
|
### 日文 |
||||
|
|
||||
|
{% if external_links %} |
||||
|
{% for article in external_links.articles.japanese %} |
||||
|
|
||||
|
* <a href="{{ article.link }}" class="external-link" target="_blank">{{ article.title }}</a> by <a href="{{ article.author_link }}" class="external-link" target="_blank">{{ article.author }}</a>. |
||||
|
{% endfor %} |
||||
|
{% endif %} |
||||
|
|
||||
|
### 越南语 |
||||
|
|
||||
|
{% if external_links %} |
||||
|
{% for article in external_links.articles.vietnamese %} |
||||
|
|
||||
|
* <a href="{{ article.link }}" class="external-link" target="_blank">{{ article.title }}</a> by <a href="{{ article.author_link }}" class="external-link" target="_blank">{{ article.author }}</a>. |
||||
|
{% endfor %} |
||||
|
{% endif %} |
||||
|
|
||||
|
### 俄语 |
||||
|
|
||||
|
{% if external_links %} |
||||
|
{% for article in external_links.articles.russian %} |
||||
|
|
||||
|
* <a href="{{ article.link }}" class="external-link" target="_blank">{{ article.title }}</a> by <a href="{{ article.author_link }}" class="external-link" target="_blank">{{ article.author }}</a>. |
||||
|
{% endfor %} |
||||
|
{% endif %} |
||||
|
|
||||
|
### 德语 |
||||
|
|
||||
|
{% if external_links %} |
||||
|
{% for article in external_links.articles.german %} |
||||
|
|
||||
|
* <a href="{{ article.link }}" class="external-link" target="_blank">{{ article.title }}</a> by <a href="{{ article.author_link }}" class="external-link" target="_blank">{{ article.author }}</a>. |
||||
|
{% endfor %} |
||||
|
{% endif %} |
||||
|
|
||||
|
## 播客 |
||||
|
|
||||
|
{% if external_links %} |
||||
|
{% for article in external_links.podcasts.english %} |
||||
|
|
||||
|
* <a href="{{ article.link }}" class="external-link" target="_blank">{{ article.title }}</a> by <a href="{{ article.author_link }}" class="external-link" target="_blank">{{ article.author }}</a>. |
||||
|
{% endfor %} |
||||
|
{% endif %} |
||||
|
|
||||
|
## 访谈 |
||||
|
|
||||
|
{% if external_links %} |
||||
|
{% for article in external_links.talks.english %} |
||||
|
|
||||
|
* <a href="{{ article.link }}" class="external-link" target="_blank">{{ article.title }}</a> by <a href="{{ article.author_link }}" class="external-link" target="_blank">{{ article.author }}</a>. |
||||
|
{% endfor %} |
||||
|
{% endif %} |
||||
|
|
||||
|
## 项目 |
||||
|
|
||||
|
GitHub 上最新的 `fastapi` 主题项目: |
||||
|
|
||||
|
<div class="github-topic-projects"> |
||||
|
</div> |
Loading…
Reference in new issue