• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/H29-Aug-2021-7366

docs/H29-Aug-2021-442317

importlib_metadata/H07-May-2022-1,5541,196

importlib_metadata.egg-info/H03-May-2022-9971

prepare/H29-Aug-2021-2922

tests/H29-Aug-2021-1,113897

.coveragercH A D29-Aug-2021150 1210

.editorconfigH A D29-Aug-2021195 1612

.flake8H A D29-Aug-2021159 118

.gitignoreH A D29-Aug-2021154 1413

.pre-commit-config.yamlH A D29-Aug-202181 65

.readthedocs.ymlH A D29-Aug-202179 76

CHANGES.rstH A D29-Aug-202116.9 KiB655481

LICENSEH A D29-Aug-2021571 1410

PKG-INFOH A D29-Aug-20212.8 KiB9971

README.rstH A D29-Aug-20212.2 KiB7752

conftest.pyH A D29-Aug-2021668 2618

exercises.pyH A D29-Aug-2021760 3723

mypy.iniH A D29-Aug-202137 32

pyproject.tomlH A D29-Aug-2021367 2114

pytest.iniH A D29-Aug-2021416 1211

setup.cfgH A D29-Aug-20211.2 KiB6254

setup.pyH A D29-Aug-202192 73

tox.iniH A D29-Aug-20211 KiB5447

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