June 2015
Intermediate to advanced
298 pages
7h 15m
English
After scanning the library, the next place to look for additional Python packages is the Python Package Index (PyPI) at https://pypi.python.org/pypi. There are thousands of packages listed here, with varying degrees of support and quality.
As we noted in Chapter 1, Getting Started, Python 3.4 also installs two scripts to help us add packages, pip and easy_install. These search PyPI for the requested package. Most packages can be found by using their name; the tools locate the appropriate release for the platform and Python version.
We've mentioned a few external libraries in other chapters:
nose for writing tests, see https://pypi.python.org/pypi/nose/1.3.6docutils for writing documentation, see https://pypi.python.org/pypi/docutils/0.12 ...Read now
Unlock full access