Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
.github/ | H | 29-Aug-2021 | - | 73 | 66 | |
docs/ | H | 29-Aug-2021 | - | 442 | 317 | |
importlib_metadata/ | H | 07-May-2022 | - | 1,554 | 1,196 | |
importlib_metadata.egg-info/ | H | 03-May-2022 | - | 99 | 71 | |
prepare/ | H | 29-Aug-2021 | - | 29 | 22 | |
tests/ | H | 29-Aug-2021 | - | 1,113 | 897 | |
.coveragerc | H A D | 29-Aug-2021 | 150 | 12 | 10 | |
.editorconfig | H A D | 29-Aug-2021 | 195 | 16 | 12 | |
.flake8 | H A D | 29-Aug-2021 | 159 | 11 | 8 | |
.gitignore | H A D | 29-Aug-2021 | 154 | 14 | 13 | |
.pre-commit-config.yaml | H A D | 29-Aug-2021 | 81 | 6 | 5 | |
.readthedocs.yml | H A D | 29-Aug-2021 | 79 | 7 | 6 | |
CHANGES.rst | H A D | 29-Aug-2021 | 16.9 KiB | 655 | 481 | |
LICENSE | H A D | 29-Aug-2021 | 571 | 14 | 10 | |
PKG-INFO | H A D | 29-Aug-2021 | 2.8 KiB | 99 | 71 | |
README.rst | H A D | 29-Aug-2021 | 2.2 KiB | 77 | 52 | |
conftest.py | H A D | 29-Aug-2021 | 668 | 26 | 18 | |
exercises.py | H A D | 29-Aug-2021 | 760 | 37 | 23 | |
mypy.ini | H A D | 29-Aug-2021 | 37 | 3 | 2 | |
pyproject.toml | H A D | 29-Aug-2021 | 367 | 21 | 14 | |
pytest.ini | H A D | 29-Aug-2021 | 416 | 12 | 11 | |
setup.cfg | H A D | 29-Aug-2021 | 1.2 KiB | 62 | 54 | |
setup.py | H A D | 29-Aug-2021 | 92 | 7 | 3 | |
tox.ini | H A D | 29-Aug-2021 | 1 KiB | 54 | 47 |
README.rst
1.. image:: https://img.shields.io/pypi/v/importlib_metadata.svg 2 :target: `PyPI link`_ 3 4.. image:: https://img.shields.io/pypi/pyversions/importlib_metadata.svg 5 :target: `PyPI link`_ 6 7.. _PyPI link: https://pypi.org/project/importlib_metadata 8 9.. image:: https://github.com/python/importlib_metadata/workflows/tests/badge.svg 10 :target: https://github.com/python/importlib_metadata/actions?query=workflow%3A%22tests%22 11 :alt: tests 12 13.. image:: https://img.shields.io/badge/code%20style-black-000000.svg 14 :target: https://github.com/psf/black 15 :alt: Code style: Black 16 17.. image:: https://readthedocs.org/projects/importlib-metadata/badge/?version=latest 18 :target: https://importlib-metadata.readthedocs.io/en/latest/?badge=latest 19 20.. image:: https://img.shields.io/badge/skeleton-2021-informational 21 :target: https://blog.jaraco.com/skeleton 22 23 24Library to access the metadata for a Python package. 25 26This package supplies third-party access to the functionality of 27`importlib.metadata <https://docs.python.org/3/library/importlib.metadata.html>`_ 28including improvements added to subsequent Python versions. 29 30 31Compatibility 32============= 33 34New features are introduced in this third-party library and later merged 35into CPython. The following table indicates which versions of this library 36were contributed to different versions in the standard library: 37 38.. list-table:: 39 :header-rows: 1 40 41 * - importlib_metadata 42 - stdlib 43 * - 4.4 44 - 3.10 45 * - 1.4 46 - 3.8 47 48 49Usage 50===== 51 52See the `online documentation <https://importlib_metadata.readthedocs.io/>`_ 53for usage details. 54 55`Finder authors 56<https://docs.python.org/3/reference/import.html#finders-and-loaders>`_ can 57also add support for custom package installers. See the above documentation 58for details. 59 60 61Caveats 62======= 63 64This project primarily supports third-party packages installed by PyPA 65tools (or other conforming packages). It does not support: 66 67- Packages in the stdlib. 68- Packages installed without metadata. 69 70Project details 71=============== 72 73 * Project home: https://github.com/python/importlib_metadata 74 * Report bugs at: https://github.com/python/importlib_metadata/issues 75 * Code hosting: https://github.com/python/importlib_metadata 76 * Documentation: https://importlib_metadata.readthedocs.io/ 77