About 62,200 results
Open links in new tab
  1. How to get a list of built-in modules in python? - Stack Overflow

    Dec 4, 2011 · I would like to get a list of names of built-in modules in python such that I can test the popularity of function's naming conventions (underline, CamelCase or mixedCase). I know …

  2. How do I get a list of locally installed Python modules?

    Caveats I have noticed a strange behaviour of this technique - when the Python interpreter is invoked in the same directory as a setup.py file, it does not list the package installed by …

  3. Finding the source code for built-in Python functions?

    Dec 22, 2011 · Since Python is open source you can read the source code. To find out what file a particular module or function is implemented in you can usually print the __file__ attribute. …

  4. Building Python and OpenSSL from source, but ssl module fails

    Mar 5, 2020 · I'm trying to build Python and OpenSSL from source in a container. Both seem to build correctly, but Python does not successfully create the _ssl module. I've found a few …

  5. Determining if a given Python module is a built-in module

    May 15, 2016 · The distutils.sysconfig.get_python_lib(standard_lib=True) call returns the top-level directory of the platform independent standard library. These are easy to miss because they …

  6. python - Difference between a built-in, standard, and frozen …

    Jul 24, 2019 · Python module and built-in module are mentioned in the loader documentation: Loaders must satisfy the following requirements: If the module is a Python module (as …

  7. How do I find the location of Python module sources?

    How do I learn where the source file for a given Python module is installed? Is the method different on Windows than on Linux? I'm trying to look for the source of the datetime module in …

  8. Where are the python modules stored? - Stack Overflow

    Dec 24, 2015 · Is there a way to obtain a list of Python modules available (i.e. installed) on a machine? I am using Ubuntu Karmic and Synaptic for package management. I have just …

  9. How to get a list of all the Python standard library modules?

    Other things that didn't work: sys.modules - only shows modules that have already been loaded sys.prefix - a path that would include non-standard library modules and doesn't seem to work …

  10. How to write a Python module/package? - Stack Overflow

    Apr 1, 2013 · Make a python module install-able with "pip install ..." Here is an absolute minimal example, showing the basic steps of preparing and uploading your package to PyPI using …