Metadata-Version: 2.4
Name: Utils03
Version: 0.1.0
Summary: An library that contains a lot of utilities
Author-email: Reyzer <reyzervt@gmail.com>
License: MIT
Description-Content-Type: text/markdown
Requires-Dist: requests

# Utils03

Una pequeña librería en Python para descargar contenido y manejar utilidades.

## Instalación
```bash
    pip install Utils03
```
## Example

```python
    from Utils03 import download
    
    download(url="https://www.test.es/testFile.txt", 
             filename="testFile.txt", 
             directory=".\\"
             )
```
