Metadata-Version: 2.1
Name: imp2importlib
Version: 0.1.1
Summary: Fixes `ModuleNotFoundError: No module named 'imp'` for Python3.12+
Keywords: imp,importlib
Author-Email: Waket Zheng <waketzheng@gmail.com>
License: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Typing :: Typed
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Project-URL: homepage, https://github.com/waketzheng/imp2importlib
Project-URL: repository, https://github.com/waketzheng/imp2importlib.git
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# imp2importlib
![Python Versions](https://img.shields.io/pypi/pyversions/imp2importlib)
[![LatestVersionInPypi](https://img.shields.io/pypi/v/imp2importlib.svg?style=flat)](https://pypi.python.org/pypi/imp2importlib)
[![GithubActionResult](https://github.com/waketzheng/imp2importlib/workflows/ci/badge.svg)](https://github.com/waketzheng/imp2importlib/actions?query=workflow:ci)
![Mypy coverage](https://img.shields.io/badge/mypy-100%25-green.svg)
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)

Fixes `ModuleNotFoundError: No module named 'imp'` for Python3.12+

## Install

```
pip install imp2importlib
```

## Usage
```
from imp import load_source
```
