List of default modules that come along with python 2.x installation [closed]
This question does not appear to be about programming within the scope defined in the help center.
Closed 9 years ago.
Improve this questionI have a project in my mind, for which i am planning to use python for implementation.
Before I start, i am looking for a comprehensive list of all modules which come with a standard python2.x (python2.7) installation so that I can figure out what all can be done without installing a single dependency and later add dependencies accordingly according to the needs.
Is there any online list available or any other way to find this list.
The Python 2.7 library reference has a list, and with documentation of all of them.
The best way to get the list of all python modules is to type following at prompt:
help("modules")
You can find a list of modules for a default Python 2.7 intallation in the Library Reference section of the Python documentation.
Links are provided for the last 2.x version of Python.
http://docs.python.org/modindex.html
Is this what your locking for?
Brgds, Trollchen
Python 2.7 Global Module Index.
精彩评论