Metadata-Version: 2.4
Name: emojdule
Version: 0.0.1
Project-URL: Repository, https://github.com/hmiladhia/emojdule
Project-URL: Issues, https://github.com/hmiladhia/emojdule/issues
Author: Dhia Hmila
License: MIT License
License-File: LICENSE
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# 🐍 emojdule
![PyPI](https://img.shields.io/pypi/v/emojdule)
![PyPI - License](https://img.shields.io/pypi/l/emojdule)
![PyPI - Wheel](https://img.shields.io/pypi/wheel/emojdule)
![Tests](https://github.com/hmiladhia/emojdule/actions/workflows/quality.yaml/badge.svg)

Import Python modules with snake emoji extension!

![Screenshot](assets/screen.png)

## Installation

```bash
pip install emojdule
```

## Usage
Once you have installed emojdule in your venv, there is nothing else to do, you can just import your modules like usual.

You can see an example [here](./example/main.py)

```
example
├── package
│ ├── subpackage
│ │ ├── __init__.🐍
│ │ └── submodule.🐍
│ ├── __init__.🐍
│ └── module.🐍
└── main.py
```

```python
# main.py

from package.module import hello

hello()  # Hello from snake module! 🐍
```
