]> git.madduck.net Git - etc/vim.git/blob - README.md

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Update discussion of AST safety check in README (#2159)
[etc/vim.git] / README.md
1 ![Black Logo](https://raw.githubusercontent.com/psf/black/master/docs/_static/logo2-readme.png)
2
3 <h2 align="center">The Uncompromising Code Formatter</h2>
4
5 <p align="center">
6 <a href="https://travis-ci.com/psf/black"><img alt="Build Status" src="https://travis-ci.com/psf/black.svg?branch=master"></a>
7 <a href="https://github.com/psf/black/actions"><img alt="Actions Status" src="https://github.com/psf/black/workflows/Test/badge.svg"></a>
8 <a href="https://github.com/psf/black/actions"><img alt="Actions Status" src="https://github.com/psf/black/workflows/Primer/badge.svg"></a>
9 <a href="https://black.readthedocs.io/en/stable/?badge=stable"><img alt="Documentation Status" src="https://readthedocs.org/projects/black/badge/?version=stable"></a>
10 <a href="https://coveralls.io/github/psf/black?branch=master"><img alt="Coverage Status" src="https://coveralls.io/repos/github/psf/black/badge.svg?branch=master"></a>
11 <a href="https://github.com/psf/black/blob/master/LICENSE"><img alt="License: MIT" src="https://black.readthedocs.io/en/stable/_static/license.svg"></a>
12 <a href="https://pypi.org/project/black/"><img alt="PyPI" src="https://img.shields.io/pypi/v/black"></a>
13 <a href="https://pepy.tech/project/black"><img alt="Downloads" src="https://pepy.tech/badge/black"></a>
14 <a href="https://anaconda.org/conda-forge/black/"><img alt="conda-forge" src="https://img.shields.io/conda/dn/conda-forge/black.svg?label=conda-forge"></a>
15 <a href="https://github.com/psf/black"><img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg"></a>
16 </p>
17
18 > “Any color you like.”
19
20 _Black_ is the uncompromising Python code formatter. By using it, you agree to cede
21 control over minutiae of hand-formatting. In return, _Black_ gives you speed,
22 determinism, and freedom from `pycodestyle` nagging about formatting. You will save time
23 and mental energy for more important matters.
24
25 Blackened code looks the same regardless of the project you're reading. Formatting
26 becomes transparent after a while and you can focus on the content instead.
27
28 _Black_ makes code review faster by producing the smallest diffs possible.
29
30 Try it out now using the [Black Playground](https://black.now.sh). Watch the
31 [PyCon 2019 talk](https://youtu.be/esZLCuWs_2Y) to learn more.
32
33 ---
34
35 _Contents:_ **[Installation and usage](#installation-and-usage)** |
36 **[Code style](#the-black-code-style)** | **[Pragmatism](#pragmatism)** |
37 **[pyproject.toml](#pyprojecttoml)** | **[Editor integration](#editor-integration)** |
38 **[blackd](#blackd)** | **[black-primer](#black-primer)** |
39 **[Version control integration](#version-control-integration)** |
40 **[GitHub Actions](#github-actions)** |
41 **[Ignoring unmodified files](#ignoring-unmodified-files)** | **[Used by](#used-by)** |
42 **[Testimonials](#testimonials)** | **[Show your style](#show-your-style)** |
43 **[Contributing](#contributing-to-black)** | **[Change log](#change-log)** |
44 **[Authors](#authors)**
45
46 ---
47
48 ## Installation and usage
49
50 ### Installation
51
52 _Black_ can be installed by running `pip install black`. It requires Python 3.6.2+ to
53 run. If you want to format Python 2 code as well, install with
54 `pip install black[python2]`.
55
56 #### Install from GitHub
57
58 If you can't wait for the latest _hotness_ and want to install from GitHub, use:
59
60 `pip install git+git://github.com/psf/black`
61
62 ### Usage
63
64 To get started right away with sensible defaults:
65
66 ```sh
67 black {source_file_or_directory}
68 ```
69
70 You can run _Black_ as a package if running it as a script doesn't work:
71
72 ```sh
73 python -m black {source_file_or_directory}
74 ```
75
76 ### Command line options
77
78 _Black_ doesn't provide many options. You can list them by running `black --help`:
79
80 ```text
81 Usage: black [OPTIONS] [SRC]...
82
83   The uncompromising code formatter.
84
85 Options:
86   -c, --code TEXT                 Format the code passed in as a string.
87   -l, --line-length INTEGER       How many characters per line to allow.
88                                   [default: 88]
89
90   -t, --target-version [py27|py33|py34|py35|py36|py37|py38|py39]
91                                   Python versions that should be supported by
92                                   Black's output. [default: per-file auto-
93                                   detection]
94
95   --pyi                           Format all input files like typing stubs
96                                   regardless of file extension (useful when
97                                   piping source on standard input).
98
99   -S, --skip-string-normalization
100                                   Don't normalize string quotes or prefixes.
101   -C, --skip-magic-trailing-comma
102                                   Don't use trailing commas as a reason to
103                                   split lines.
104
105   --check                         Don't write the files back, just return the
106                                   status. Return code 0 means nothing would
107                                   change. Return code 1 means some files
108                                   would be reformatted. Return code 123 means
109                                   there was an internal error.
110
111   --diff                          Don't write the files back, just output a
112                                   diff for each file on stdout.
113
114   --color / --no-color            Show colored diff. Only applies when
115                                   `--diff` is given.
116
117   --fast / --safe                 If --fast given, skip temporary sanity
118                                   checks. [default: --safe]
119
120   --include TEXT                  A regular expression that matches files and
121                                   directories that should be included on
122                                   recursive searches. An empty value means
123                                   all files are included regardless of the
124                                   name. Use forward slashes for directories
125                                   on all platforms (Windows, too). Exclusions
126                                   are calculated first, inclusions later.
127                                   [default: \.pyi?$]
128
129   --exclude TEXT                  A regular expression that matches files and
130                                   directories that should be excluded on
131                                   recursive searches. An empty value means no
132                                   paths are excluded. Use forward slashes for
133                                   directories on all platforms (Windows, too).
134                                   Exclusions are calculated first, inclusions
135                                   later. [default: /(\.direnv|\.eggs|\.git|\.
136                                   hg|\.mypy_cache|\.nox|\.tox|\.venv|venv|\.sv
137                                   n|_build|buck-out|build|dist)/]
138
139   --extend-exclude TEXT           Like --exclude, but adds additional files
140                                   and directories on top of the excluded
141                                   ones (useful if you simply want to add to
142                                   the default).
143
144   --force-exclude TEXT            Like --exclude, but files and directories
145                                   matching this regex will be excluded even
146                                   when they are passed explicitly as
147                                   arguments.
148
149
150   --stdin-filename TEXT           The name of the file when passing it through
151                                   stdin. Useful to make sure Black will
152                                   respect --force-exclude option on some
153                                   editors that rely on using stdin.
154
155   -q, --quiet                     Don't emit non-error messages to stderr.
156                                   Errors are still emitted; silence those with
157                                   2>/dev/null.
158
159   -v, --verbose                   Also emit messages to stderr about files
160                                   that were not changed or were ignored due to
161                                   exclusion patterns.
162
163   --version                       Show the version and exit.
164   --config FILE                   Read configuration from FILE path.
165   -h, --help                      Show this message and exit.
166 ```
167
168 _Black_ is a well-behaved Unix-style command-line tool:
169
170 - it does nothing if no sources are passed to it;
171 - it will read from standard input and write to standard output if `-` is used as the
172   filename;
173 - it only outputs messages to users on standard error;
174 - exits with code 0 unless an internal error occurred (or `--check` was used).
175
176 ### Using _Black_ with other tools
177
178 While _Black_ enforces formatting that conforms to PEP 8, other tools may raise warnings
179 about _Black_'s changes or will overwrite _Black_'s changes. A good example of this is
180 [isort](https://pypi.org/p/isort). Since _Black_ is barely configurable, these tools
181 should be configured to neither warn about nor overwrite _Black_'s changes.
182
183 Actual details on _Black_ compatible configurations for various tools can be found in
184 [compatible_configs](https://github.com/psf/black/blob/master/docs/compatible_configs.md#black-compatible-configurations).
185
186 ### Migrating your code style without ruining git blame
187
188 A long-standing argument against moving to automated code formatters like _Black_ is
189 that the migration will clutter up the output of `git blame`. This was a valid argument,
190 but since Git version 2.23, Git natively supports
191 [ignoring revisions in blame](https://git-scm.com/docs/git-blame#Documentation/git-blame.txt---ignore-revltrevgt)
192 with the `--ignore-rev` option. You can also pass a file listing the revisions to ignore
193 using the `--ignore-revs-file` option. The changes made by the revision will be ignored
194 when assigning blame. Lines modified by an ignored revision will be blamed on the
195 previous revision that modified those lines.
196
197 So when migrating your project's code style to _Black_, reformat everything and commit
198 the changes (preferably in one massive commit). Then put the full 40 characters commit
199 identifier(s) into a file.
200
201 ```
202 # Migrate code style to Black
203 5b4ab991dede475d393e9d69ec388fd6bd949699
204 ```
205
206 Afterwards, you can pass that file to `git blame` and see clean and meaningful blame
207 information.
208
209 ```console
210 $ git blame important.py --ignore-revs-file .git-blame-ignore-revs
211 7a1ae265 (John Smith 2019-04-15 15:55:13 -0400 1) def very_important_function(text, file):
212 abdfd8b0 (Alice Doe  2019-09-23 11:39:32 -0400 2)     text = text.lstrip()
213 7a1ae265 (John Smith 2019-04-15 15:55:13 -0400 3)     with open(file, "r+") as f:
214 7a1ae265 (John Smith 2019-04-15 15:55:13 -0400 4)         f.write(formatted)
215 ```
216
217 You can even configure `git` to automatically ignore revisions listed in a file on every
218 call to `git blame`.
219
220 ```console
221 $ git config blame.ignoreRevsFile .git-blame-ignore-revs
222 ```
223
224 **The one caveat is that GitHub and GitLab do not yet support ignoring revisions using
225 their native UI of blame.** So blame information will be cluttered with a reformatting
226 commit on those platforms. (If you'd like this feature, there's an open issue for
227 [GitLab](https://gitlab.com/gitlab-org/gitlab/-/issues/31423) and please let GitHub
228 know!)
229
230 ### NOTE: This is a beta product
231
232 _Black_ is already [successfully used](https://github.com/psf/black#used-by) by many
233 projects, small and big. It also sports a decent test suite. However, it is still very
234 new. Things will probably be wonky for a while. This is made explicit by the "Beta"
235 trove classifier, as well as by the "b" in the version number. What this means for you
236 is that **until the formatter becomes stable, you should expect some formatting to
237 change in the future**. That being said, no drastic stylistic changes are planned,
238 mostly responses to bug reports.
239
240 Also, as a temporary safety measure, _Black_ will check that the reformatted code still
241 produces a valid AST that is mostly equivalent to the original. This slows it down. If
242 you're feeling confident, use `--fast`. In a few contexts, Black does make changes to
243 the AST: it cleans up whitespace in docstrings, adds or removes parentheses in some
244 `del` statements, and may move around type comments.
245
246 ## The _Black_ code style
247
248 _Black_ is a PEP 8 compliant opinionated formatter. _Black_ reformats entire files in
249 place. It is not configurable. It doesn't take previous formatting into account. Your
250 main option of configuring _Black_ is that it doesn't reformat blocks that start with
251 `# fmt: off` and end with `# fmt: on`, or lines that ends with `# fmt: skip`. Pay
252 attention that `# fmt: on/off` have to be on the same level of indentation. To learn
253 more about _Black_'s opinions, to go
254 [the_black_code_style](https://github.com/psf/black/blob/master/docs/the_black_code_style.md).
255
256 Please refer to this document before submitting an issue. What seems like a bug might be
257 intended behaviour.
258
259 ## Pragmatism
260
261 Early versions of _Black_ used to be absolutist in some respects. They took after its
262 initial author. This was fine at the time as it made the implementation simpler and
263 there were not many users anyway. Not many edge cases were reported. As a mature tool,
264 _Black_ does make some exceptions to rules it otherwise holds. This
265 [section](https://github.com/psf/black/blob/master/docs/the_black_code_style.md#pragmatism)
266 of `the_black_code_style` describes what those exceptions are and why this is the case.
267
268 Please refer to this document before submitting an issue just like with the document
269 above. What seems like a bug might be intended behaviour.
270
271 ## pyproject.toml
272
273 _Black_ is able to read project-specific default values for its command line options
274 from a `pyproject.toml` file. This is especially useful for specifying custom
275 `--include` and `--exclude`/`--extend-exclude` patterns for your project.
276
277 **Pro-tip**: If you're asking yourself "Do I need to configure anything?" the answer is
278 "No". _Black_ is all about sensible defaults.
279
280 ### What on Earth is a `pyproject.toml` file?
281
282 [PEP 518](https://www.python.org/dev/peps/pep-0518/) defines `pyproject.toml` as a
283 configuration file to store build system requirements for Python projects. With the help
284 of tools like [Poetry](https://python-poetry.org/) or
285 [Flit](https://flit.readthedocs.io/en/latest/) it can fully replace the need for
286 `setup.py` and `setup.cfg` files.
287
288 ### Where _Black_ looks for the file
289
290 By default _Black_ looks for `pyproject.toml` starting from the common base directory of
291 all files and directories passed on the command line. If it's not there, it looks in
292 parent directories. It stops looking when it finds the file, or a `.git` directory, or a
293 `.hg` directory, or the root of the file system, whichever comes first.
294
295 If you're formatting standard input, _Black_ will look for configuration starting from
296 the current working directory.
297
298 You can use a "global" configuration, stored in a specific location in your home
299 directory. This will be used as a fallback configuration, that is, it will be used if
300 and only if _Black_ doesn't find any configuration as mentioned above. Depending on your
301 operating system, this configuration file should be stored as:
302
303 - Windows: `~\.black`
304 - Unix-like (Linux, MacOS, etc.): `$XDG_CONFIG_HOME/black` (`~/.config/black` if the
305   `XDG_CONFIG_HOME` environment variable is not set)
306
307 Note that these are paths to the TOML file itself (meaning that they shouldn't be named
308 as `pyproject.toml`), not directories where you store the configuration. Here, `~`
309 refers to the path to your home directory. On Windows, this will be something like
310 `C:\\Users\UserName`.
311
312 You can also explicitly specify the path to a particular file that you want with
313 `--config`. In this situation _Black_ will not look for any other file.
314
315 If you're running with `--verbose`, you will see a blue message if a file was found and
316 used.
317
318 Please note `blackd` will not use `pyproject.toml` configuration.
319
320 ### Configuration format
321
322 As the file extension suggests, `pyproject.toml` is a
323 [TOML](https://github.com/toml-lang/toml) file. It contains separate sections for
324 different tools. _Black_ is using the `[tool.black]` section. The option keys are the
325 same as long names of options on the command line.
326
327 Note that you have to use single-quoted strings in TOML for regular expressions. It's
328 the equivalent of r-strings in Python. Multiline strings are treated as verbose regular
329 expressions by Black. Use `[ ]` to denote a significant space character.
330
331 <details>
332 <summary>Example <code>pyproject.toml</code></summary>
333
334 ```toml
335 [tool.black]
336 line-length = 88
337 target-version = ['py37']
338 include = '\.pyi?$'
339 extend-exclude = '''
340 # A regex preceded with ^/ will apply only to files and directories
341 # in the root of the project.
342 ^/foo.py  # exclude a file named foo.py in the root of the project (in addition to the defaults)
343 '''
344 ```
345
346 </details>
347
348 ### Lookup hierarchy
349
350 Command-line options have defaults that you can see in `--help`. A `pyproject.toml` can
351 override those defaults. Finally, options provided by the user on the command line
352 override both.
353
354 _Black_ will only ever use one `pyproject.toml` file during an entire run. It doesn't
355 look for multiple files, and doesn't compose configuration from different levels of the
356 file hierarchy.
357
358 ## Editor integration
359
360 _Black_ can be integrated into many editors with plugins. They let you run _Black_ on
361 your code with the ease of doing it in your editor. To get started using _Black_ in your
362 editor of choice, please see
363 [editor_integration](https://github.com/psf/black/blob/master/docs/editor_integration.md).
364
365 Patches are welcome for editors without an editor integration or plugin! More
366 information can be found in
367 [editor_integration](https://github.com/psf/black/blob/master/docs/editor_integration.md#other-editors).
368
369 ## blackd
370
371 `blackd` is a small HTTP server that exposes Black's functionality over a simple
372 protocol. The main benefit of using it is to avoid paying the cost of starting up a new
373 Black process every time you want to blacken a file. Please refer to
374 [blackd](https://github.com/psf/black/blob/master/docs/blackd.md) to get the ball
375 rolling.
376
377 ## black-primer
378
379 `black-primer` is a tool built for CI (and humans) to have _Black_ `--check` a number of
380 (configured in `primer.json`) Git accessible projects in parallel.
381 [black_primer](https://github.com/psf/black/blob/master/docs/black_primer.md) has more
382 information regarding its usage and configuration.
383
384 (A PR adding Mercurial support will be accepted.)
385
386 ## Version control integration
387
388 Use [pre-commit](https://pre-commit.com/). Once you
389 [have it installed](https://pre-commit.com/#install), add this to the
390 `.pre-commit-config.yaml` in your repository:
391
392 ```yaml
393 repos:
394   - repo: https://github.com/psf/black
395     rev: 20.8b1 # Replace by any tag/version: https://github.com/psf/black/tags
396     hooks:
397       - id: black
398         language_version: python3 # Should be a command that runs python3.6+
399 ```
400
401 Then run `pre-commit install` and you're ready to go.
402
403 Avoid using `args` in the hook. Instead, store necessary configuration in
404 `pyproject.toml` so that editors and command-line usage of Black all behave consistently
405 for your project. See _Black_'s own
406 [pyproject.toml](https://github.com/psf/black/blob/master/pyproject.toml) for an
407 example.
408
409 If you're already using Python 3.7, switch the `language_version` accordingly. Finally,
410 `stable` is a branch that tracks the latest release on PyPI. If you'd rather run on
411 master, this is also an option.
412
413 ## GitHub Actions
414
415 Create a file named `.github/workflows/black.yml` inside your repository with:
416
417 ```yaml
418 name: Lint
419
420 on: [push, pull_request]
421
422 jobs:
423   lint:
424     runs-on: ubuntu-latest
425     steps:
426       - uses: actions/checkout@v2
427       - uses: actions/setup-python@v2
428       - uses: psf/black@stable
429         with:
430           args: ". --check"
431 ```
432
433 ### Inputs
434
435 #### `black_args`
436
437 **optional**: Black input arguments. Defaults to `. --check --diff`.
438
439 ## Ignoring unmodified files
440
441 _Black_ remembers files it has already formatted, unless the `--diff` flag is used or
442 code is passed via standard input. This information is stored per-user. The exact
443 location of the file depends on the _Black_ version and the system on which _Black_ is
444 run. The file is non-portable. The standard location on common operating systems is:
445
446 - Windows:
447   `C:\\Users\<username>\AppData\Local\black\black\Cache\<version>\cache.<line-length>.<file-mode>.pickle`
448 - macOS:
449   `/Users/<username>/Library/Caches/black/<version>/cache.<line-length>.<file-mode>.pickle`
450 - Linux:
451   `/home/<username>/.cache/black/<version>/cache.<line-length>.<file-mode>.pickle`
452
453 `file-mode` is an int flag that determines whether the file was formatted as 3.6+ only,
454 as .pyi, and whether string normalization was omitted.
455
456 To override the location of these files on macOS or Linux, set the environment variable
457 `XDG_CACHE_HOME` to your preferred location. For example, if you want to put the cache
458 in the directory you're running _Black_ from, set `XDG_CACHE_HOME=.cache`. _Black_ will
459 then write the above files to `.cache/black/<version>/`.
460
461 ## Used by
462
463 The following notable open-source projects trust _Black_ with enforcing a consistent
464 code style: pytest, tox, Pyramid, Django Channels, Hypothesis, attrs, SQLAlchemy,
465 Poetry, PyPA applications (Warehouse, Bandersnatch, Pipenv, virtualenv), pandas, Pillow,
466 every Datadog Agent Integration, Home Assistant, Zulip.
467
468 The following organizations use _Black_: Facebook, Dropbox, Mozilla, Quora.
469
470 Are we missing anyone? Let us know.
471
472 ## Testimonials
473
474 **Dusty Phillips**,
475 [writer](https://smile.amazon.com/s/ref=nb_sb_noss?url=search-alias%3Daps&field-keywords=dusty+phillips):
476
477 > _Black_ is opinionated so you don't have to be.
478
479 **Hynek Schlawack**, [creator of `attrs`](https://www.attrs.org/), core developer of
480 Twisted and CPython:
481
482 > An auto-formatter that doesn't suck is all I want for Xmas!
483
484 **Carl Meyer**, [Django](https://www.djangoproject.com/) core developer:
485
486 > At least the name is good.
487
488 **Kenneth Reitz**, creator of [`requests`](http://python-requests.org/) and
489 [`pipenv`](https://readthedocs.org/projects/pipenv/):
490
491 > This vastly improves the formatting of our code. Thanks a ton!
492
493 ## Show your style
494
495 Use the badge in your project's README.md:
496
497 ```md
498 [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
499 ```
500
501 Using the badge in README.rst:
502
503 ```
504 .. image:: https://img.shields.io/badge/code%20style-black-000000.svg
505     :target: https://github.com/psf/black
506 ```
507
508 Looks like this:
509 [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
510
511 ## License
512
513 MIT
514
515 ## Contributing to _Black_
516
517 In terms of inspiration, _Black_ is about as configurable as _gofmt_. This is
518 deliberate.
519
520 Bug reports and fixes are always welcome! However, before you suggest a new feature or
521 configuration knob, ask yourself why you want it. If it enables better integration with
522 some workflow, fixes an inconsistency, speeds things up, and so on - go for it! On the
523 other hand, if your answer is "because I don't like a particular formatting" then you're
524 not ready to embrace _Black_ yet. Such changes are unlikely to get accepted. You can
525 still try but prepare to be disappointed.
526
527 More details can be found in
528 [CONTRIBUTING](https://github.com/psf/black/blob/master/CONTRIBUTING.md).
529
530 ## Change log
531
532 The log's become rather long. It moved to its own file.
533
534 See [CHANGES](https://github.com/psf/black/blob/master/CHANGES.md).
535
536 ## Authors
537
538 Glued together by [Łukasz Langa](mailto:lukasz@langa.pl).
539
540 Maintained with [Carol Willing](mailto:carolcode@willingconsulting.com),
541 [Carl Meyer](mailto:carl@oddbird.net),
542 [Jelle Zijlstra](mailto:jelle.zijlstra@gmail.com),
543 [Mika Naylor](mailto:mail@autophagy.io),
544 [Zsolt Dollenstein](mailto:zsol.zsol@gmail.com),
545 [Cooper Lees](mailto:me@cooperlees.com), and Richard Si.
546
547 Multiple contributions by:
548
549 - [Abdur-Rahmaan Janhangeer](mailto:arj.python@gmail.com)
550 - [Adam Johnson](mailto:me@adamj.eu)
551 - [Adam Williamson](mailto:adamw@happyassassin.net)
552 - [Alexander Huynh](mailto:github@grande.coffee)
553 - [Alex Vandiver](mailto:github@chmrr.net)
554 - [Allan Simon](mailto:allan.simon@supinfo.com)
555 - Anders-Petter Ljungquist
556 - [Andrew Thorp](mailto:andrew.thorp.dev@gmail.com)
557 - [Andrew Zhou](mailto:andrewfzhou@gmail.com)
558 - [Andrey](mailto:dyuuus@yandex.ru)
559 - [Andy Freeland](mailto:andy@andyfreeland.net)
560 - [Anthony Sottile](mailto:asottile@umich.edu)
561 - [Arjaan Buijk](mailto:arjaan.buijk@gmail.com)
562 - [Arnav Borbornah](mailto:arnavborborah11@gmail.com)
563 - [Artem Malyshev](mailto:proofit404@gmail.com)
564 - [Asger Hautop Drewsen](mailto:asgerdrewsen@gmail.com)
565 - [Augie Fackler](mailto:raf@durin42.com)
566 - [Aviskar KC](mailto:aviskarkc10@gmail.com)
567 - Batuhan Taşkaya
568 - [Benjamin Wohlwend](mailto:bw@piquadrat.ch)
569 - [Benjamin Woodruff](mailto:github@benjam.info)
570 - [Bharat Raghunathan](mailto:bharatraghunthan9767@gmail.com)
571 - [Brandt Bucher](mailto:brandtbucher@gmail.com)
572 - [Brett Cannon](mailto:brett@python.org)
573 - [Bryan Bugyi](mailto:bryan.bugyi@rutgers.edu)
574 - [Bryan Forbes](mailto:bryan@reigndropsfall.net)
575 - [Calum Lind](mailto:calumlind@gmail.com)
576 - [Charles](mailto:peacech@gmail.com)
577 - Charles Reid
578 - [Christian Clauss](mailto:cclauss@bluewin.ch)
579 - [Christian Heimes](mailto:christian@python.org)
580 - [Chuck Wooters](mailto:chuck.wooters@microsoft.com)
581 - [Chris Rose](mailto:offline@offby1.net)
582 - Codey Oxley
583 - [Cong](mailto:congusbongus@gmail.com)
584 - [Cooper Ry Lees](mailto:me@cooperlees.com)
585 - [Dan Davison](mailto:dandavison7@gmail.com)
586 - [Daniel Hahler](mailto:github@thequod.de)
587 - [Daniel M. Capella](mailto:polycitizen@gmail.com)
588 - Daniele Esposti
589 - [David Hotham](mailto:david.hotham@metaswitch.com)
590 - [David Lukes](mailto:dafydd.lukes@gmail.com)
591 - [David Szotten](mailto:davidszotten@gmail.com)
592 - [Denis Laxalde](mailto:denis@laxalde.org)
593 - [Douglas Thor](mailto:dthor@transphormusa.com)
594 - dylanjblack
595 - [Eli Treuherz](mailto:eli@treuherz.com)
596 - [Emil Hessman](mailto:emil@hessman.se)
597 - [Felix Kohlgrüber](mailto:felix.kohlgrueber@gmail.com)
598 - [Florent Thiery](mailto:fthiery@gmail.com)
599 - Francisco
600 - [Giacomo Tagliabue](mailto:giacomo.tag@gmail.com)
601 - [Greg Gandenberger](mailto:ggandenberger@shoprunner.com)
602 - [Gregory P. Smith](mailto:greg@krypto.org)
603 - Gustavo Camargo
604 - hauntsaninja
605 - [Hadi Alqattan](mailto:alqattanhadizaki@gmail.com)
606 - [Heaford](mailto:dan@heaford.com)
607 - [Hugo Barrera](mailto::hugo@barrera.io)
608 - Hugo van Kemenade
609 - [Hynek Schlawack](mailto:hs@ox.cx)
610 - [Ivan Katanić](mailto:ivan.katanic@gmail.com)
611 - [Jakub Kadlubiec](mailto:jakub.kadlubiec@skyscanner.net)
612 - [Jakub Warczarek](mailto:jakub.warczarek@gmail.com)
613 - [Jan Hnátek](mailto:jan.hnatek@gmail.com)
614 - [Jason Fried](mailto:me@jasonfried.info)
615 - [Jason Friedland](mailto:jason@friedland.id.au)
616 - [jgirardet](mailto:ijkl@netc.fr)
617 - Jim Brännlund
618 - [Jimmy Jia](mailto:tesrin@gmail.com)
619 - [Joe Antonakakis](mailto:jma353@cornell.edu)
620 - [Jon Dufresne](mailto:jon.dufresne@gmail.com)
621 - [Jonas Obrist](mailto:ojiidotch@gmail.com)
622 - [Jonty Wareing](mailto:jonty@jonty.co.uk)
623 - [Jose Nazario](mailto:jose.monkey.org@gmail.com)
624 - [Joseph Larson](mailto:larson.joseph@gmail.com)
625 - [Josh Bode](mailto:joshbode@fastmail.com)
626 - [Josh Holland](mailto:anowlcalledjosh@gmail.com)
627 - [Joshua Cannon](mailto:joshdcannon@gmail.com)
628 - [José Padilla](mailto:jpadilla@webapplicate.com)
629 - [Juan Luis Cano Rodríguez](mailto:hello@juanlu.space)
630 - [kaiix](mailto:kvn.hou@gmail.com)
631 - [Katie McLaughlin](mailto:katie@glasnt.com)
632 - Katrin Leinweber
633 - [Keith Smiley](mailto:keithbsmiley@gmail.com)
634 - [Kenyon Ralph](mailto:kenyon@kenyonralph.com)
635 - [Kevin Kirsche](mailto:Kev.Kirsche+GitHub@gmail.com)
636 - [Kyle Hausmann](mailto:kyle.hausmann@gmail.com)
637 - [Kyle Sunden](mailto:sunden@wisc.edu)
638 - Lawrence Chan
639 - [Linus Groh](mailto:mail@linusgroh.de)
640 - [Loren Carvalho](mailto:comradeloren@gmail.com)
641 - [Luka Sterbic](mailto:luka.sterbic@gmail.com)
642 - [LukasDrude](mailto:mail@lukas-drude.de)
643 - Mahmoud Hossam
644 - Mariatta
645 - [Matt VanEseltine](mailto:vaneseltine@gmail.com)
646 - [Matthew Clapp](mailto:itsayellow+dev@gmail.com)
647 - [Matthew Walster](mailto:matthew@walster.org)
648 - Max Smolens
649 - [Michael Aquilina](mailto:michaelaquilina@gmail.com)
650 - [Michael Flaxman](mailto:michael.flaxman@gmail.com)
651 - [Michael J. Sullivan](mailto:sully@msully.net)
652 - [Michael McClimon](mailto:michael@mcclimon.org)
653 - [Miguel Gaiowski](mailto:miggaiowski@gmail.com)
654 - [Mike](mailto:roshi@fedoraproject.org)
655 - [mikehoyio](mailto:mikehoy@gmail.com)
656 - [Min ho Kim](mailto:minho42@gmail.com)
657 - [Miroslav Shubernetskiy](mailto:miroslav@miki725.com)
658 - MomIsBestFriend
659 - [Nathan Goldbaum](mailto:ngoldbau@illinois.edu)
660 - [Nathan Hunt](mailto:neighthan.hunt@gmail.com)
661 - [Neraste](mailto:neraste.herr10@gmail.com)
662 - [Nikolaus Waxweiler](mailto:madigens@gmail.com)
663 - [Ofek Lev](mailto:ofekmeister@gmail.com)
664 - [Osaetin Daniel](mailto:osaetindaniel@gmail.com)
665 - [otstrel](mailto:otstrel@gmail.com)
666 - [Pablo Galindo](mailto:Pablogsal@gmail.com)
667 - [Paul Ganssle](mailto:p.ganssle@gmail.com)
668 - [Paul Meinhardt](mailto:mnhrdt@gmail.com)
669 - [Peter Bengtsson](mailto:mail@peterbe.com)
670 - [Peter Grayson](mailto:pete@jpgrayson.net)
671 - [Peter Stensmyr](mailto:peter.stensmyr@gmail.com)
672 - pmacosta
673 - [Quentin Pradet](mailto:quentin@pradet.me)
674 - [Ralf Schmitt](mailto:ralf@systemexit.de)
675 - [Ramón Valles](mailto:mroutis@protonmail.com)
676 - [Richard Fearn](mailto:richardfearn@gmail.com)
677 - Richard Si
678 - [Rishikesh Jha](mailto:rishijha424@gmail.com)
679 - [Rupert Bedford](mailto:rupert@rupertb.com)
680 - Russell Davis
681 - [Rémi Verschelde](mailto:rverschelde@gmail.com)
682 - [Sami Salonen](mailto:sakki@iki.fi)
683 - [Samuel Cormier-Iijima](mailto:samuel@cormier-iijima.com)
684 - [Sanket Dasgupta](mailto:sanketdasgupta@gmail.com)
685 - Sergi
686 - [Scott Stevenson](mailto:scott@stevenson.io)
687 - Shantanu
688 - [shaoran](mailto:shaoran@sakuranohana.org)
689 - [Shinya Fujino](mailto:shf0811@gmail.com)
690 - springstan
691 - [Stavros Korokithakis](mailto:hi@stavros.io)
692 - [Stephen Rosen](mailto:sirosen@globus.org)
693 - [Steven M. Vascellaro](mailto:S.Vascellaro@gmail.com)
694 - [Sunil Kapil](mailto:snlkapil@gmail.com)
695 - [Sébastien Eustace](mailto:sebastien.eustace@gmail.com)
696 - [Tal Amuyal](mailto:TalAmuyal@gmail.com)
697 - [Terrance](mailto:git@terrance.allofti.me)
698 - [Thom Lu](mailto:thomas.c.lu@gmail.com)
699 - [Thomas Grainger](mailto:tagrain@gmail.com)
700 - [Tim Gates](mailto:tim.gates@iress.com)
701 - [Tim Swast](mailto:swast@google.com)
702 - [Timo](mailto:timo_tk@hotmail.com)
703 - Toby Fleming
704 - [Tom Christie](mailto:tom@tomchristie.com)
705 - [Tony Narlock](mailto:tony@git-pull.com)
706 - [Tsuyoshi Hombashi](mailto:tsuyoshi.hombashi@gmail.com)
707 - [Tushar Chandra](mailto:tusharchandra2018@u.northwestern.edu)
708 - [Tzu-ping Chung](mailto:uranusjr@gmail.com)
709 - [Utsav Shah](mailto:ukshah2@illinois.edu)
710 - utsav-dbx
711 - vezeli
712 - [Ville Skyttä](mailto:ville.skytta@iki.fi)
713 - [Vishwas B Sharma](mailto:sharma.vishwas88@gmail.com)
714 - [Vlad Emelianov](mailto:volshebnyi@gmail.com)
715 - [williamfzc](mailto:178894043@qq.com)
716 - [wouter bolsterlee](mailto:wouter@bolsterl.ee)
717 - Yazdan
718 - [Yngve Høiseth](mailto:yngve@hoiseth.net)
719 - [Yurii Karabas](mailto:1998uriyyo@gmail.com)
720 - [Zac Hatfield-Dodds](mailto:zac@zhd.dev)