I 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 Pip, Pipenv, Anaconda Navigator, and Conda Package Managers can all be used to list installed Python packages. You can also use the ActiveState Platform's command line interface (CLI), the State Tool to list all installed packages using a simple “state packages” command.
To check all the installed Python modules, we can use the following two commands with the 'pip': Using 'pip freeze' command. Using 'pip list command.
In Python, Modules are simply files with the “. py” extension containing Python code that can be imported inside another Python Program. In simple terms, we can consider a module to be the same as a code library or a file that contains a set of functions that you want to include in your application.
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")
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With