Metadata-Version: 2.4
Name: pip-importer
Version: 0.1.0
Summary: This is pip-importer, which can import a package, or pip install first if the package does not exist.
Author-email: Tony Lee <iamtonylee@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/hktonylee/pip-importer
Project-URL: Repository, https://github.com/hktonylee/pip-importer
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 3 - Alpha
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"

# Welcome

This is a small Python utility which can import a package, or pip install first if the package does not exist.


#  Installation

```bash
pip install pip-importer
```

# Usage

```python
import pip_importer

# This is same as `import pytest`
# Or `pip install pytest` then `import pytest` if pytest is not installed
pip_importer.pip_import("pytest")
```
