Metadata-Version: 2.1
Name: hack4uTestPG
Version: 0.1.0
Summary: Biblioteca para consultar cursos hack4u
Home-page: https://hack4u.io
Author: PG
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

```python
from hack4u import list_courses

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

### Obtener un curso por nombre


```python
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")
```

### Obtener un curso por nombre

```python
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")
```




















