Last active
June 29, 2017 06:10
-
-
Save praveen-krishn/6fbf250f422e975f784687aa27e15598 to your computer and use it in GitHub Desktop.
python most used packages
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # pip install -r requirements.txt | |
| # refer https://pip.pypa.io/en/stable/reference/pip_install/#example-requirements-file | |
| # refer top packages @ http://pypi-ranking.info/alltime | |
| virtualenv # basic | |
| virtualenvwrapper # wrapper to virtualenvwrapper | |
| pep8 # Code Style Guide | |
| pycodestyle # enforces pep8 style, | |
| pylint # enforces pep8 style | |
| flake8 # enforces pep8 style (alternate) | |
| autopep8 # enforces pep8 style (alternate) | |
| pep257 # static analysis tool for checking compliance with Python PEP 257. | |
| pydocstyle # enforces pep257, doctoring checker | |
| behave # BDD, Acceptance Testing, Functional Testing | |
| nose2 # Advanced Unit Testing, More plugins at # https://nose-plugins.jottit.com/ | |
| nose-cov # for coverage reporting, including subprocesses and multiprocessing | |
| tox # Integration Testing | |
| sphinx # Documentation | |
| pigments # Syntax highlighter for sphinx | |
| requests # http library | |
| beautifulsoap # pulls data out of HTML and XML files. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment