About 2,690,000 results
Open links in new tab
  1. python - Difference between a built-in, standard, and frozen module ...

    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 opposed to a built-in …

  2. How to get a list of built-in modules in python? - Stack Overflow

    Dec 4, 2011 · 64 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 there is a …

  3. What is the relationship between Python built-in modules and built-in ...

    Nov 5, 2020 · Built-in modules are more commonly called "standard library", which means they are included with every installation of python, but they're not built into the interpreter the same way …

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

    I brute forced it by writing some code to scrape the TOC of the Standard Library page in the official Python docs. I also built a simple API for getting a list of standard libraries (for Python version 2.6, …

  5. python - When is a function in a standard library module called a built ...

    Apr 10, 2018 · 6 A built-in function, as per the Reference manual is: Built-in functions A built-in function object is a wrapper around a C function. Examples of built-in functions are len() and math.sin() (math …

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

    May 15, 2016 · My use case was bucketing an arbitrary x in a Python import x statement as either: included in the Python stdlib + built-ins installed as a third party module neither This will work for …

  7. 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. …

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

    Long answer: the Adam's approach is based on the pip - package management system used to install and manage software packages written in Python and a result pip.get_installed_distributions() …

  9. 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 installed a python …

  10. Why does importing a custom abc.py file not work as expected in …

    Dec 24, 2024 · On Python 3.11 and up, there's a second reason your abc.py isn't found. In Python 3.11, the devs made a change to "freeze" a bunch of stdlib modules to improve startup time. abc is one of …