Top "Pep" questions

Python Enhancement Proposals are used to propose and document Python language features, development processes and best practices.

ERROR: Could not build wheels for PyNaCl which use PEP 517 and cannot be installed directly

Im using the latest Version of Pycharm: When i Enter this command: pip install -U discord.py[voice] This Error …

python pycharm pep pynacl pep517
Python - most convenient way to define constant variables used just once

Let's say I have a file "icon.ico" and an url "url.com". The'll be used just once within the …

python coding-style pyqt convention pep
pip failing to build wheels for scipy

I've just downloaded the new python 3.8 and I'm trying to install the scipy package using the following: pip3.8 install scipy …

scipy pip pep python-3.8
How to write a pep8 configuration (pep8.rc) file?

I found the documentation for pep8 but wasn't able to understand how to write these. I couldn't even find any …

python pep8 pep
What's the difference on docstrings with triple SINGLE quotes and triple DOUBLE quotes?

I was just wondering what is the difference between two ways of writing Python Docstrings (__doc__): three single quotes: ''' …

python documentation docstring pep
How can I use setuptools to generate a console_scripts entry point which calls `python -m mypackage`?

I am trying to be a good Pythonista and following PEP 338 for my package I plan on deploying. I am …

python deployment setuptools pep