searchack4u 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- searchack4u-0.1.0/PKG-INFO +57 -0
- searchack4u-0.1.0/README.md +46 -0
- searchack4u-0.1.0/searchack4u.egg-info/PKG-INFO +57 -0
- searchack4u-0.1.0/searchack4u.egg-info/SOURCES.txt +6 -0
- searchack4u-0.1.0/searchack4u.egg-info/dependency_links.txt +1 -0
- searchack4u-0.1.0/searchack4u.egg-info/top_level.txt +1 -0
- searchack4u-0.1.0/setup.cfg +4 -0
- searchack4u-0.1.0/setup.py +17 -0
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: searchack4u
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Una biblioteca para consultar cursos de hack4u.
|
|
5
|
+
Home-page: https://hack4u.io
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
Dynamic: description
|
|
8
|
+
Dynamic: description-content-type
|
|
9
|
+
Dynamic: home-page
|
|
10
|
+
Dynamic: summary
|
|
11
|
+
|
|
12
|
+
# Hack4U Academy Courses Library.
|
|
13
|
+
|
|
14
|
+
Una biblioteca Python para consultar cursos de la academia Hack4U.
|
|
15
|
+
|
|
16
|
+
## Cursos disponibles:
|
|
17
|
+
|
|
18
|
+
- Introducción a Linux [15 horas]
|
|
19
|
+
- Personalización de Linux [3 horas]
|
|
20
|
+
- Introducción al Hacking [53 horas]
|
|
21
|
+
- Python Ofensivo [35 horas]
|
|
22
|
+
- Hacking Web [51 hoaras]
|
|
23
|
+
- Arch Linux desde Cero [1 Hora]
|
|
24
|
+
|
|
25
|
+
## Instalación:
|
|
26
|
+
|
|
27
|
+
Instala el paquete usando `pip3`:
|
|
28
|
+
|
|
29
|
+
```python3
|
|
30
|
+
pip3 install searchack4u
|
|
31
|
+
```
|
|
32
|
+
## Uso básico:
|
|
33
|
+
|
|
34
|
+
### Listar todos los cursos:
|
|
35
|
+
|
|
36
|
+
```python3
|
|
37
|
+
from searchack4u import list_courses
|
|
38
|
+
|
|
39
|
+
for course in list_courses():
|
|
40
|
+
print(course)
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
### Obtener un curso por nombre:
|
|
44
|
+
|
|
45
|
+
```python3
|
|
46
|
+
from searchack4u import search_course_by_name
|
|
47
|
+
|
|
48
|
+
course = search_course_by_name("Introducción a Linux")
|
|
49
|
+
print(course)
|
|
50
|
+
```
|
|
51
|
+
### Calcular duración total de los cursos:
|
|
52
|
+
|
|
53
|
+
```python
|
|
54
|
+
from searchack4u import total_duration
|
|
55
|
+
|
|
56
|
+
print(f"Duración total: {total_duration()} horas".)
|
|
57
|
+
```
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# Hack4U Academy Courses Library.
|
|
2
|
+
|
|
3
|
+
Una biblioteca Python para consultar cursos de la academia Hack4U.
|
|
4
|
+
|
|
5
|
+
## Cursos disponibles:
|
|
6
|
+
|
|
7
|
+
- Introducción a Linux [15 horas]
|
|
8
|
+
- Personalización de Linux [3 horas]
|
|
9
|
+
- Introducción al Hacking [53 horas]
|
|
10
|
+
- Python Ofensivo [35 horas]
|
|
11
|
+
- Hacking Web [51 hoaras]
|
|
12
|
+
- Arch Linux desde Cero [1 Hora]
|
|
13
|
+
|
|
14
|
+
## Instalación:
|
|
15
|
+
|
|
16
|
+
Instala el paquete usando `pip3`:
|
|
17
|
+
|
|
18
|
+
```python3
|
|
19
|
+
pip3 install searchack4u
|
|
20
|
+
```
|
|
21
|
+
## Uso básico:
|
|
22
|
+
|
|
23
|
+
### Listar todos los cursos:
|
|
24
|
+
|
|
25
|
+
```python3
|
|
26
|
+
from searchack4u import list_courses
|
|
27
|
+
|
|
28
|
+
for course in list_courses():
|
|
29
|
+
print(course)
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
### Obtener un curso por nombre:
|
|
33
|
+
|
|
34
|
+
```python3
|
|
35
|
+
from searchack4u import search_course_by_name
|
|
36
|
+
|
|
37
|
+
course = search_course_by_name("Introducción a Linux")
|
|
38
|
+
print(course)
|
|
39
|
+
```
|
|
40
|
+
### Calcular duración total de los cursos:
|
|
41
|
+
|
|
42
|
+
```python
|
|
43
|
+
from searchack4u import total_duration
|
|
44
|
+
|
|
45
|
+
print(f"Duración total: {total_duration()} horas".)
|
|
46
|
+
```
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: searchack4u
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Una biblioteca para consultar cursos de hack4u.
|
|
5
|
+
Home-page: https://hack4u.io
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
Dynamic: description
|
|
8
|
+
Dynamic: description-content-type
|
|
9
|
+
Dynamic: home-page
|
|
10
|
+
Dynamic: summary
|
|
11
|
+
|
|
12
|
+
# Hack4U Academy Courses Library.
|
|
13
|
+
|
|
14
|
+
Una biblioteca Python para consultar cursos de la academia Hack4U.
|
|
15
|
+
|
|
16
|
+
## Cursos disponibles:
|
|
17
|
+
|
|
18
|
+
- Introducción a Linux [15 horas]
|
|
19
|
+
- Personalización de Linux [3 horas]
|
|
20
|
+
- Introducción al Hacking [53 horas]
|
|
21
|
+
- Python Ofensivo [35 horas]
|
|
22
|
+
- Hacking Web [51 hoaras]
|
|
23
|
+
- Arch Linux desde Cero [1 Hora]
|
|
24
|
+
|
|
25
|
+
## Instalación:
|
|
26
|
+
|
|
27
|
+
Instala el paquete usando `pip3`:
|
|
28
|
+
|
|
29
|
+
```python3
|
|
30
|
+
pip3 install searchack4u
|
|
31
|
+
```
|
|
32
|
+
## Uso básico:
|
|
33
|
+
|
|
34
|
+
### Listar todos los cursos:
|
|
35
|
+
|
|
36
|
+
```python3
|
|
37
|
+
from searchack4u import list_courses
|
|
38
|
+
|
|
39
|
+
for course in list_courses():
|
|
40
|
+
print(course)
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
### Obtener un curso por nombre:
|
|
44
|
+
|
|
45
|
+
```python3
|
|
46
|
+
from searchack4u import search_course_by_name
|
|
47
|
+
|
|
48
|
+
course = search_course_by_name("Introducción a Linux")
|
|
49
|
+
print(course)
|
|
50
|
+
```
|
|
51
|
+
### Calcular duración total de los cursos:
|
|
52
|
+
|
|
53
|
+
```python
|
|
54
|
+
from searchack4u import total_duration
|
|
55
|
+
|
|
56
|
+
print(f"Duración total: {total_duration()} horas".)
|
|
57
|
+
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
# Leer el contenido del archivo README.md
|
|
4
|
+
with open("README.md", "r", encoding="utf-8") as fh:
|
|
5
|
+
long_description = fh.read()
|
|
6
|
+
|
|
7
|
+
setup(
|
|
8
|
+
name="searchack4u",
|
|
9
|
+
version="0.1.0",
|
|
10
|
+
packages=find_packages(),
|
|
11
|
+
install_requires=[],
|
|
12
|
+
autor="Jose Figueroa",
|
|
13
|
+
description="Una biblioteca para consultar cursos de hack4u.",
|
|
14
|
+
long_description=long_description,
|
|
15
|
+
long_description_content_type="text/markdown",
|
|
16
|
+
url="https://hack4u.io",
|
|
17
|
+
)
|