Metadata-Version: 2.4
Name: hack4u_project
Version: 1.0.2
Summary: Una biblioteca para consultar cursos de Hack4u.
Home-page: https://hack4u.io
Author: Sn0wBaall
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: summary

# HACK4U ACADEMY COURSES

### Instalation

```bash
pip3 install hack4u-project
```

### List all courses

```python
from hack4u import list_courses

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

### Get a course by name

```python
from hack4u import get_course_by_name

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

### Calculate total duration of courses

```python
from hack4u.utils import total_duration

print(f"Duracion total: {total_duration()} horas")
```
