Metadata-Version: 2.1
Name: safeloader
Version: 0.1.2
Summary: A simple loading text for simple tasks!
Author: Jonathan Motta
Author-email: jonathangmotta98@gmail.com
License: The Unlicense
Project-URL: Source, https://github.com/Safe-Solutions-Engenharia/safeloader
Classifier: Intended Audience :: Developers
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >= 3.9
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# Safeloader

Safeloader is a simple Python module that creates a straightforward loading text message while your code executes.

## Instalation

Use the package manager [pip](https://pip.pypa.io/en/stable) to install.

```bash
pip install safeloader
```

## Usage

```python
from safeloader import Loader
simple_loader = Loader()
simple_loader.start()
# Code to execute while loading.
simple_loader.stop()
```

## License
[MIT](https://choosealicense.com/licenses/mit/)
