The Community

https://d33wubrfki0l68.cloudfront.net/a9bc258c07a1375c342985440a299d1717ac776e/b8d49/_images/34689432801_78d97ecec9_k_d.jpg

BDFL

Guido van Rossum, the creator of Python, is often referred to as the BDFL — theBenevolent Dictator For Life.

Python Software Foundation

The mission of the Python Software Foundation is to promote, protect, andadvance the Python programming language, and to support and facilitate thegrowth of a diverse and international community of Python programmers.

Learn More about the PSF.

PEPs

PEPs are Python Enhancement Proposals. They describe changes to Python itself,or the standards around it.

There are three different types of PEPs (as defined by PEP 1):

Standards
Describes a new feature or implementation.
Informational
Describes a design issue, general guidelines, or information to thecommunity.
Process
Describes a process related to Python.

Notable PEPs

There are a few PEPs that could be considered required reading:

  • PEP 8: The Python Style Guide.Read this. All of it. Follow it.
  • PEP 20: The Zen of Python.A list of 19 statements that briefly explain the philosophy behind Python.
  • PEP 257: Docstring Conventions.Gives guidelines for semantics and conventions associated with Pythondocstrings.
    You can read more at The PEP Index.

Submitting a PEP

PEPs are peer-reviewed and accepted/rejected after much discussion. Anyonecan write and submit a PEP for review.

Here’s an overview of the PEP acceptance workflow:
https://d33wubrfki0l68.cloudfront.net/7ec567f9633893d967eac9add4d6c49a13a12e5d/283d9/_images/pep-0001-1.png

Python Conferences

The major events for the Python community are developer conferences. The twomost notable conferences are PyCon, which is held in the US, and its Europeansibling, EuroPython.

A comprehensive list of conferences is maintained at pycon.org.

Python User Groups

User Groups are where a bunch of Python developers meet to present or talkabout Python topics of interest. A list of local user groups is maintained atthe Python Software Foundation Wiki.

Online Communities

PythonistaCafe is an invite-only, online communityof Python and software development enthusiasts helping each other succeed and grow.Think of it as a club of mutual improvement for Pythonistas where a broad range ofprogramming questions, career advice, and other topics are discussed every day.

Python Job Boards

Python Jobs HQ is a Python job board, by Python Developersfor Python Developers. The site aggregates Python job postings from across the web andalso allows employers to post Python job openings directly on the site.

原文: https://docs.python-guide.org/intro/community/