Metadata-Version: 2.1
Name: hack4u-subiendo
Version: 0.8.0
Summary: A library to list courses on hack4u
Home-page: https://hack4u.io
Author: Test User
Description-Content-Type: text/markdown

## Cursos disponibles:
* Introduccion a Linux[15 horas]
* Personalizacion de Linux[3 horas]
* Introduccion al hacking [53 horas]

## Instalacion
Instala el paquete usando pip3:

```python3
pip3 install hack4u
```

## Uso basico
### Listar todos los cursos
```python3
from hack4u import list_courses

for course in list_courses():
    print(course)
```

### Obtener un curso por nombre
```python3
from hack4u import get_course_by_name

course = get_course_by_name("Introduccion a LInux")
print(course)
Calcular duracion total de los cursos
from hack4u.utils import total_duration
print(f"Duracion total: {total_duration()} horas")
Obtener un curso por nombre
from hack4u import get_course_by_name

course = get_course_by_name("Introduccion a LInux")
print(course)
```

### Calcular duracion total de los cursos
```python3
from hack4u.utils import total_duration
print(f"Duracion total:{total_duration()} horas")
```
