## What does it do?
**Here is your repository:**
```
├─ src
│ └─ project
│ ├─ __init__.py
│ └─ module.py
└─ test
└─ test.py
```
**test.py can't find module.py:**
```python
ModuleNotFoundError: No module named 'module'
ImportError: attempted relative import with no known parent package
SystemError: Parent module '' not loaded, cannot perform relative import
```
**importmonkey will fix that:**
```python
import importmonkey # In test.py
importmonkey.add_path("../src")
import project
```
### Documentation / Licensing / Dev stuff