-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathabout.html
More file actions
133 lines (116 loc) · 5.92 KB
/
about.html
File metadata and controls
133 lines (116 loc) · 5.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{% extends 'default.html' %}
{% block content %}
<section>
<h1 id="about-black-python-devs">About Black Python Devs</h1>
<p>Black Python Devs was created by its founder Jay Miller after seeing a trend of the same handful of Black developers speaking at major conferences, taking leadership positions, and dealing with the same challenges towards burnout.</p>
<p>
After attending PyCon US in 2022, he noticed they were able to physically count the number of Black developers that attended in person and that they made up LESS THAN 0.01% of the total attendees. Jay began asking speakers Black Pythonistas if
they considered connecting with the community and the almost unanimous response was "Why would I do that?". After some encouragement one person was convinced to give a lightning talk.
</p>
<p>
In the following year, we saw that person get more involved in their local user group and make connections that helped lead to forward progress in their career development.That same person was accepted to speak at PyCon US in 2023. With much push
from community in Africa and Brazil, we saw the total number of Black attendees in 2023 triple in number.
</p>
<p>At PyCon US 2023 after an open space a Discord server called Black Python Devs was created where the community could continue to encourage this momentum and support one another.</p>
</section>
<section>
<h2 id="our-principles">Our Principles</h2>
<ul>
<li><strong>Diverse Leadership:</strong> We build and support diverse leadership in Python globally.</li>
<li><strong>Financial Support:</strong> We provide financial support for Python and tech communities in Black communities, whether predominantly Black spaces or Black spaces within predominantly non-Black spaces.</li>
<li><strong>Collective Voice:</strong> We speak as a collection of Black leaders on how decisions impact Black developers at multiple career levels.</li>
<li><strong>Community & Belonging:</strong> We provide a community where people of color can see developers with similar backgrounds and build strong bonds in the tech space.</li>
</ul>
</section>
<section>
<h2 id="community-support">Community Support</h2>
<p>We're hoping to continue growing the diverse communities we support. Python is everywhere and we've primarily been focusing on groups under the PSF umbrella of influence, but we hope that expands to the diaspora communities as well as communities completely unaware of Python's official community efforts.</p>
</section>
<section>
<h2 id="leadership-team">Leadership Team</h2>
<div class="grid" style="margin: auto;">
{% for leader in data['Executors'] %}
<article class="leadership-card">
{% if leader.image %}
<img class="leadership-photo" alt="photo of {{leader.name}}" src="{{ leader.image }}" />
{% endif %}
<div>
<strong>{{ leader.name }}</strong><br />
<small style="color: var(--bpd-muted);">{{ leader.title }}</small>
</div>
</article>
{% endfor %}
</div>
</section>
<section>
<h3 id="team-leads">Team Leads</h3>
<div class="grid" style="margin: auto;">
{% for leader in data['Leaders'] %}
<article class="leadership-card">
{% if leader.image %}
<img class="leadership-photo" alt="photo of {{leader.name}}" src="{{ leader.image }}" />
{% endif %}
<div>
<strong>{{ leader.name }}</strong><br />
<small style="color: var(--bpd-muted);">{{ leader.title }}</small>
</div>
</article>
{% endfor %}
</div>
</section>
<section>
<h3 id="advisors">Advisors</h3>
<div class="grid">
{% for group in (data.Advisors | sort | slice(3)) %}
<div>
<ul>
{% for leader in group %}
<li><strong>{{ leader }}</strong></li>
{% endfor %}
</ul>
</div>
{% endfor %}
</div>
</section>
<section>
<h3 id="leadership-council">BPD Leadership Council</h3>
<p>We also vet our actions through our Black Python Devs Leadership Council made up of members who serve as Python Community leaders on a local, regional, or global scale.</p>
<div class="grid">
{% for group in data.Council | sort | slice(3) %}
<div>
<ul>
{% for leader in group %}
<li><strong>{{ leader }}</strong></li>
{% endfor %}
</ul>
</div>
{% endfor %}
</div>
</section>
<section>
<h2 id="join-the-community">Join the Community</h2>
<p style="margin-bottom: 2.5rem;">The Black Python Devs Community is a vibrant group of developers who are passionate about Python and coding. Whether you're a seasoned developer or just starting out, there's a place for you here.</p>
<div class="grid" style="gap: 3rem;">
<div>
<h3 id="connect-with-us" style="margin-bottom: 1.2rem;">Connect With Us</h3>
<p style="margin-bottom: 1.5rem;">We've created spaces where you can connect with us and other community members.</p>
<ul style="line-height: 1.8;">
<li><strong>Discord:</strong> <a href="https://discord.gg/XUc3tFqCT3">Join our server</a></li>
<li><strong>Twitter/X:</strong> <a href="https://x.com/blackpythondevs">Follow us</a></li>
<li><strong>Instagram:</strong> <a href="https://www.instagram.com/blackpythondevs/">Follow us</a></li>
<li><strong>LinkedIn:</strong> <a href="https://www.linkedin.com/company/black-python-devs">Page</a> | <a href="https://www.linkedin.com/groups/14336241/">Group</a></li>
<li><strong>Email:</strong> <a href="mailto:contact@blackpythondevs.com">contact@blackpythondevs.com</a></li>
</ul>
</div>
<div>
<h3 id="get-involved" style="margin-bottom: 1.2rem;">Get Involved</h3>
<ul style="line-height: 1.8;">
<li>Participate in discussions on Discord.</li>
<li>Share your projects and get feedback.</li>
<li>Contribute to our community projects.</li>
<li>Attend our virtual meetups and events.</li>
</ul>
</div>
</div>
</section>
{% endblock %}