-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathabout.html
92 lines (76 loc) · 3.59 KB
/
about.html
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
---
layout: default
lang: en
title: About Us
---
<section>
<h1>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>
<div class="grid">
<article>
<h2>Mission Statement</h2>
<p>Extending the ecosystem of Python Communities to Black and Colo(u)red Communities around the world.</p>
</article>
<article>
<h2>The Goal of Black Python Devs</h2>
<p>Our goal is to become the largest community of Black Python Developers in the world and establish our community as a source for diverse leaders in the greater Python community. We aim to:</p>
<ul>
<li>Establish guidance, mentorship, and career support for Black Pythonistas around the world.</li>
<li>Create opportunities for the Python community to invest in local communities of Black Python Devs members.</li>
<li>Increase participation of Black Python Devs members in existing Python community programs, events, and initiatives.</li>
</ul>
</article>
</div>
</section>
<section>
<h3>Leadership Team</h3>
<div class="grid" style="margin: auto; text-align: center">
{% for leader in site.data.leadership.Executors %}
<article class="leadership-photo-container">
{% if leader.image %}
<img class="leadership-photo" alt="photo of {{leader.name}}" src="{{ leader.image }}" />
{% endif %}
<p>
<strong>{{ leader.name }}</strong><br />
{{ leader.title }}
</p>
</article>
{% endfor %}
</div>
<h3>Team Leads & Advisors</h3>
<div class="grid" style="margin: auto; text-align: center">
{% for leader in site.data.leadership.Advisors %}
<article class="leadership-photo-container">
{% if leader.image %}
<img class="leadership-photo" alt="photo of {{leader.name}}" src="{{ leader.image }}" />
{% endif %}
<p>
<strong>{{ leader.name }}</strong><br />
{{ leader.title }}
</p>
</article>
{% endfor %}
</div>
<h3>BPD Leadership Council</h3>
<article>
<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>
{% assign council = site.data.leadership.Council | sort %} {% for leader in council | sort %}
<ul>
<li><strong>{{ leader }}</strong></li>
</ul>
{% endfor %}
</div>
</article>
</section>