Skip to content

Latest commit

 

History

History
236 lines (146 loc) · 8.16 KB

fastapi-people.md

File metadata and controls

236 lines (146 loc) · 8.16 KB
hide
navigation

FastAPI 社区

FastAPI 有一个非常棒的社区,它欢迎来自各个领域和背景的朋友。

创建者 & 维护者

嘿! 👋

这就是我:

{% if people %}

{% for user in people.maintainers %}
@{{ user.login }}
Answers: {{ user.answers }}
Pull Requests: {{ user.prs }}
{% endfor %}
{% endif %}

我是 FastAPI 的创建者和维护者. 你能在 帮助 FastAPI - 获取帮助 - 与作者联系{.internal-link target=_blank} 阅读有关此内容的更多信息。

...但是在这里我想向您展示社区。


FastAPI 得到了社区的大力支持。因此我想突出他们的贡献。

这些人:

向他们致以掌声。 👏 🙇

FastAPI 专家

这些用户一直以来致力于 帮助他人解决 GitHub 上的问题{.internal-link target=_blank}。 🙇

他们通过帮助许多人而被证明是 FastAPI 专家。 ✨

!!! 小提示 你也可以成为认可的 FastAPI 专家!

只需要 [帮助他人解决 GitHub 上的问题](help-fastapi.md#github_1){.internal-link target=_blank}。 🤓

你可以查看不同时期的 FastAPI 专家

FastAPI 专家 - 上个月

这些是在过去一个月中 在 GitHub 上帮助他人解答最多问题{.internal-link target=_blank} 的用户。 🤓

{% if people %}

{% for user in people.last_month_experts[:10] %}
@{{ user.login }}
回答问题数: {{ user.count }}
{% endfor %}
{% endif %}

FastAPI 专家 - 三个月

这些是在过去三个月中 在 GitHub 上帮助他人解答最多问题{.internal-link target=_blank} 的用户。 😎

{% if people %}

{% for user in people.three_months_experts[:10] %}
@{{ user.login }}
回答问题数: {{ user.count }}
{% endfor %}
{% endif %}

FastAPI 专家 - 六个月

这些是在过去六个月中 在 GitHub 上帮助他人解答最多问题{.internal-link target=_blank} 的用户。 🧐

{% if people %}

{% for user in people.six_months_experts[:10] %}
@{{ user.login }}
回答问题数: {{ user.count }}
{% endfor %}
{% endif %}

FastAPI 专家 - 一年

这些是在过去一年中 在 GitHub 上帮助他人解答最多问题{.internal-link target=_blank} 的用户。 🧑‍🔬

{% if people %}

{% for user in people.one_year_experts[:20] %}
@{{ user.login }}
回答问题数: {{ user.count }}
{% endfor %}
{% endif %}

FastAPI 专家 - 全部时间

以下是全部时间的 FastAPI 专家。 🤓🤯

这些用户一直以来致力于 帮助他人解决 GitHub 的 上的问题{.internal-link target=_blank}。 🧙

{% if people %}

{% for user in people.experts[:50] %}
@{{ user.login }}
回答问题数: {{ user.count }}
{% endfor %}
{% endif %}

杰出贡献者

以下是 杰出的贡献者。 👷

这些用户 创建了最多已被合并的 Pull Requests{.internal-link target=_blank}。

他们贡献了源代码,文档,翻译等。 📦

{% if people %}

{% for user in people.top_contributors[:50] %}
@{{ user.login }}
Pull Requests: {{ user.count }}
{% endfor %}
{% endif %}

还有很多别的贡献者(超过100个),你可以在 FastAPI GitHub 贡献者页面 中看到他们。👷

杰出翻译审核者

以下用户是 杰出的评审者。 🕵️

我只会说少数几种语言(而且还不是很流利 😅)。所以这些评审者们具备能力去批准文档翻译{.internal-link target=_blank}。如果没有他们,就不会有多语言文档。

{% if people %}

{% for user in people.top_translations_reviewers[:50] %}
@{{ user.login }}
审核数: {{ user.count }}
{% endfor %}
{% endif %}

赞助商

以下是 赞助商 。😎

他们主要通过GitHub Sponsors支持我在 FastAPI (和其他项目)的工作。

{% if sponsors %}

{% if sponsors.gold %}

金牌赞助商

{% for sponsor in sponsors.gold -%} {% endfor %} {% endif %}

{% if sponsors.silver %}

银牌赞助商

{% for sponsor in sponsors.silver -%} {% endfor %} {% endif %}

{% if sponsors.bronze %}

铜牌赞助商

{% for sponsor in sponsors.bronze -%} {% endfor %} {% endif %}

{% endif %}

个人赞助

{% if github_sponsors %} {% for group in github_sponsors.sponsors %}

{% for user in group %} {% if user.login not in sponsors_badge.logins %}

{% endif %} {% endfor %}

{% endfor %} {% endif %}

关于数据 - 技术细节

该页面的目的是突出社区为帮助他人而付出的努力。

尤其是那些不引人注目且涉及更困难的任务,例如帮助他人解决问题或者评审翻译 Pull Requests。

该数据每月计算一次,您可以阅读 源代码

这里也强调了赞助商的贡献。

我也保留更新算法,栏目,统计阈值等的权利(以防万一🤷)。