1# FastAPI People
2
3FastAPI has an amazing community that welcomes people from all backgrounds.
4
5## Creator - Maintainer
6
7Hey! ��
8
9This is me:
10
11{% if people %}
12<div class="user-list user-list-center">
13{% for user in people.maintainers %}
14
15<div class="user"><a href="{{ user.url }}" target="_blank"><div class="avatar-wrapper"><img src="{{ user.avatarUrl }}"/></div><div class="title">@{{ user.login }}</div></a> <div class="count">Answers: {{ user.answers }}</div><div class="count">Pull Requests: {{ user.prs }}</div></div>
16{% endfor %}
17
18</div>
19{% endif %}
20
21I'm the creator and maintainer of **FastAPI**. You can read more about that in [Help FastAPI - Get Help - Connect with the author](help-fastapi.md#connect-with-the-author){.internal-link target=_blank}.
22
23...But here I want to show you the community.
24
25---
26
27**FastAPI** receives a lot of support from the community. And I want to highlight their contributions.
28
29These are the people that:
30
31* [Help others with issues (questions) in GitHub](help-fastapi.md#help-others-with-issues-in-github){.internal-link target=_blank}.
32* [Create Pull Requests](help-fastapi.md#create-a-pull-request){.internal-link target=_blank}.
33* Review Pull Requests, [especially important for translations](contributing.md#translations){.internal-link target=_blank}.
34
35A round of applause to them. �� ��
36
37## Most active users last month
38
39These are the users that have been [helping others the most with issues (questions) in GitHub](help-fastapi.md#help-others-with-issues-in-github){.internal-link target=_blank} during the last month. ☕
40
41{% if people %}
42<div class="user-list user-list-center">
43{% for user in people.last_month_active %}
44
45<div class="user"><a href="{{ user.url }}" target="_blank"><div class="avatar-wrapper"><img src="{{ user.avatarUrl }}"/></div><div class="title">@{{ user.login }}</div></a> <div class="count">Issues replied: {{ user.count }}</div></div>
46{% endfor %}
47
48</div>
49{% endif %}
50
51## Experts
52
53Here are the **FastAPI Experts**. ��
54
55These are the users that have [helped others the most with issues (questions) in GitHub](help-fastapi.md#help-others-with-issues-in-github){.internal-link target=_blank} through *all time*.
56
57They have proven to be experts by helping many others. ✨
58
59{% if people %}
60<div class="user-list user-list-center">
61{% for user in people.experts %}
62
63<div class="user"><a href="{{ user.url }}" target="_blank"><div class="avatar-wrapper"><img src="{{ user.avatarUrl }}"/></div><div class="title">@{{ user.login }}</div></a> <div class="count">Issues replied: {{ user.count }}</div></div>
64{% endfor %}
65
66</div>
67{% endif %}
68
69## Top Contributors
70
71Here are the **Top Contributors**. ��
72
73These users have [created the most Pull Requests](help-fastapi.md#create-a-pull-request){.internal-link target=_blank} that have been *merged*.
74
75They have contributed source code, documentation, translations, etc. ��
76
77{% if people %}
78<div class="user-list user-list-center">
79{% for user in people.top_contributors %}
80
81<div class="user"><a href="{{ user.url }}" target="_blank"><div class="avatar-wrapper"><img src="{{ user.avatarUrl }}"/></div><div class="title">@{{ user.login }}</div></a> <div class="count">Pull Requests: {{ user.count }}</div></div>
82{% endfor %}
83
84</div>
85{% endif %}
86
87There are many other contributors (more than a hundred), you can see them all in the <a href="https://github.com/tiangolo/fastapi/graphs/contributors" class="external-link" target="_blank">FastAPI GitHub Contributors page</a>. ��
88
89## Top Reviewers
90
91These users are the **Top Reviewers**. ��️
92
93### Reviews for Translations
94
95I only speak a few languages (and not very well ��). So, the reviewers are the ones that have the [**power to approve translations**](contributing.md#translations){.internal-link target=_blank} of the documentation. Without them, there wouldn't be documentation in several other languages.
96
97---
98
99The **Top Reviewers** ��️ have reviewed the most Pull Requests from others, ensuring the quality of the code, documentation, and especially, the **translations**.
100
101{% if people %}
102<div class="user-list user-list-center">
103{% for user in people.top_reviewers %}
104
105<div class="user"><a href="{{ user.url }}" target="_blank"><div class="avatar-wrapper"><img src="{{ user.avatarUrl }}"/></div><div class="title">@{{ user.login }}</div></a> <div class="count">Reviews: {{ user.count }}</div></div>
106{% endfor %}
107
108</div>
109{% endif %}
110
111## Sponsors
112
113These are the **Sponsors**. ��
114
115They are supporting my work with **FastAPI** (and others), mainly through <a href="https://github.com/sponsors/tiangolo" class="external-link" target="_blank">GitHub Sponsors</a>.
116
117{% if sponsors %}
118
119{% if sponsors.gold %}
120
121### Gold Sponsors
122
123{% for sponsor in sponsors.gold -%}
124<a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}" style="border-radius:15px"></a>
125{% endfor %}
126{% endif %}
127
128{% if sponsors.silver %}
129
130### Silver Sponsors
131
132{% for sponsor in sponsors.silver -%}
133<a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}" style="border-radius:15px"></a>
134{% endfor %}
135{% endif %}
136
137{% if sponsors.bronze %}
138
139### Bronze Sponsors
140
141{% for sponsor in sponsors.bronze -%}
142<a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}" style="border-radius:15px"></a>
143{% endfor %}
144{% endif %}
145
146{% endif %}
147
148### Individual Sponsors
149
150{% if github_sponsors %}
151{% for group in github_sponsors.sponsors %}
152
153<div class="user-list user-list-center">
154
155{% for user in group %}
156{% if user.login not in sponsors_badge.logins %}
157
158<div class="user"><a href="{{ user.url }}" target="_blank"><div class="avatar-wrapper"><img src="{{ user.avatarUrl }}"/></div><div class="title">@{{ user.login }}</div></a></div>
159
160{% endif %}
161{% endfor %}
162
163</div>
164
165{% endfor %}
166{% endif %}
167
168## About the data - technical details
169
170The main intention of this page is to highlight the effort of the community to help others.
171
172Especially including efforts that are normally less visible, and in many cases more arduous, like helping others with issues and reviewing Pull Requests with translations.
173
174The data is calculated each month, you can read the <a href="https://github.com/tiangolo/fastapi/blob/master/.github/actions/people/app/main.py" class="external-link" target="_blank">source code here</a>.
175
176Here I'm also highlighting contributions from sponsors.
177
178I also reserve the right to update the algorithm, sections, thresholds, etc (just in case ��).
179