On Wednesday, October 25th, I gave a workshop at PyLadies Vancouver
[http://www.pyladies.com/locations/vancouver/] on how to package up your code
and put it up on PyPI [https://pypi.org/
I recently helped someone release their first project on PyPI and I was asked
why I did version numbers the way I did, so I figured I would share where my
current thinking
I was reading the latest issue of Pycoder's Weekly [http://pycoders.com/] and
they mentioned Thomas Kluyver's pull request
[https://github.com/pypa/pip/pull/4144] to implement PEP
While developing the CLA bot for CPython
[https://github.com/python/the-knights-who-say-ni] (aka, the Knights Who Say
Ni), I decided to make it asynchronous, partially for performance reasons but
also because I simply
When one thinks of ways of customizing classes at creation time, people probably
typically think of metaclasses
[https://docs.python.org/3/reference/datamodel.html#metaclasses] and class
decorators
[https://docs.python.org/