Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

List of default modules that come along with python 2.x installation [closed]

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.

like image 789
Shiv Deepak Avatar asked Feb 25 '11 10:02

Shiv Deepak


People also ask

How do I get a list of Python libraries installed?

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.

How do I see all available modules in Python?

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.

What are standard modules in Python?

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.


2 Answers

The Python 2.7 library reference has a list, and with documentation of all of them.

like image 105
The Communist Duck Avatar answered Sep 20 '22 13:09

The Communist Duck


The best way to get the list of all python modules is to type following at prompt:

help("modules")
like image 32
silverflash Avatar answered Sep 18 '22 13:09

silverflash