udemy-userAPI 0.3.2__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.
- udemy_userapi-0.3.2/LICENSE +21 -0
- udemy_userapi-0.3.2/MANIFEST.in +3 -0
- udemy_userapi-0.3.2/PKG-INFO +34 -0
- udemy_userapi-0.3.2/README.md +25 -0
- udemy_userapi-0.3.2/README_PYPI.md +16 -0
- udemy_userapi-0.3.2/setup.cfg +4 -0
- udemy_userapi-0.3.2/setup.py +33 -0
- udemy_userapi-0.3.2/udemy_userAPI/.cache/.udemy_userAPI +0 -0
- udemy_userapi-0.3.2/udemy_userAPI/__init__.py +7 -0
- udemy_userapi-0.3.2/udemy_userAPI/__version__.py +6 -0
- udemy_userapi-0.3.2/udemy_userAPI/api.py +691 -0
- udemy_userapi-0.3.2/udemy_userAPI/authenticate.py +311 -0
- udemy_userapi-0.3.2/udemy_userAPI/bultins.py +495 -0
- udemy_userapi-0.3.2/udemy_userAPI/exeptions.py +22 -0
- udemy_userapi-0.3.2/udemy_userAPI/mpd_analyzer/__init__.py +3 -0
- udemy_userapi-0.3.2/udemy_userAPI/mpd_analyzer/bin.wvd +0 -0
- udemy_userapi-0.3.2/udemy_userAPI/mpd_analyzer/mpd_parser.py +224 -0
- udemy_userapi-0.3.2/udemy_userAPI/sections.py +117 -0
- udemy_userapi-0.3.2/udemy_userAPI/udemy.py +93 -0
- udemy_userapi-0.3.2/udemy_userAPI.egg-info/PKG-INFO +34 -0
- udemy_userapi-0.3.2/udemy_userAPI.egg-info/SOURCES.txt +23 -0
- udemy_userapi-0.3.2/udemy_userAPI.egg-info/dependency_links.txt +1 -0
- udemy_userapi-0.3.2/udemy_userAPI.egg-info/not-zip-safe +1 -0
- udemy_userapi-0.3.2/udemy_userAPI.egg-info/requires.txt +3 -0
- udemy_userapi-0.3.2/udemy_userAPI.egg-info/top_level.txt +1 -0
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2024 PauloCesar-dev404
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
@@ -0,0 +1,34 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: udemy_userAPI
|
3
|
+
Version: 0.3.2
|
4
|
+
Summary: Obtenha detalhes de cursos que o usuário esteja inscrito da plataforma Udemy,usando o EndPoint de usuário o mesmo que o navegador utiliza para acessar e redenrizar os cursos.
|
5
|
+
Author: PauloCesar-dev404
|
6
|
+
Author-email: paulocesar0073dev404@gmail.com
|
7
|
+
License: MIT
|
8
|
+
Project-URL: GitHub, https://github.com/PauloCesar-dev404/udemy-userAPI
|
9
|
+
Project-URL: Bugs/Melhorias, https://github.com/PauloCesar-dev404/udemy-userAPI/issues
|
10
|
+
Project-URL: Documentação, https://github.com/PauloCesar-dev404/udemy-userAPI/wiki
|
11
|
+
Keywords: udemy,udemy python,pyudemy,udemy_userAPI,udemy api
|
12
|
+
Platform: any
|
13
|
+
Description-Content-Type: text/markdown
|
14
|
+
License-File: LICENSE
|
15
|
+
Requires-Dist: requests
|
16
|
+
Requires-Dist: cloudscraper
|
17
|
+
Requires-Dist: pywidevine
|
18
|
+
|
19
|
+
# udemy-userAPI
|
20
|
+
|
21
|
+
|
22
|
+

|
23
|
+

|
24
|
+
[](https://paulocesar-dev404.github.io/me-apoiando-online/)
|
25
|
+
[](https://github.com/PauloCesar-dev404/udemy-userAPI/blob/main/docs/iniciando.md)
|
26
|
+
|
27
|
+
|
28
|
+
Obtenha detalhes de cursos da plataforma udemy com a api de usuário,usando esta lib
|
29
|
+
|
30
|
+
|
31
|
+
- [x] Obter cursos inscritos(acesso por plano ou cursos free)
|
32
|
+
- [x] Obter detalhes de Aulas
|
33
|
+
- [x] Obter detalhes de um Curso
|
34
|
+
|
@@ -0,0 +1,25 @@
|
|
1
|
+
<div align="center">
|
2
|
+
<img src="assets/udemy_userAPI-logo.png" alt="udemy_userAPI-logo" width="200"/>
|
3
|
+
|
4
|
+
|
5
|
+
|
6
|
+

|
7
|
+

|
8
|
+
[](https://paulocesar-dev404.github.io/me-apoiando-online/)
|
9
|
+
[](https://github.com/PauloCesar-dev404/udemy-userAPI/blob/main/docs/iniciando.md)
|
10
|
+
|
11
|
+
<i>Obtenha detalhes completos de cursos cujo o usuário esteja inscrito ,da plataforma [Udemy](https://www.udemy.com/) com esta biblioteca</i>
|
12
|
+
|
13
|
+
---
|
14
|
+
</div>
|
15
|
+
|
16
|
+
|
17
|
+
### Funcionalidades
|
18
|
+
- [x] Obter cursos inscritos (cursos com acesso por plano ou comprados ou cursos Grátis)
|
19
|
+
- [x] Obter detalhes de Aulas
|
20
|
+
- [x] Obter detalhes de um Curso
|
21
|
+
|
22
|
+
Se tiver dúvidas ou sugestões, abra uma [issue aqui](https://github.com/PauloCesar-dev404/udemy_userAPI/issues).
|
23
|
+
|
24
|
+
---
|
25
|
+
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# udemy-userAPI
|
2
|
+
|
3
|
+
|
4
|
+

|
5
|
+

|
6
|
+
[](https://paulocesar-dev404.github.io/me-apoiando-online/)
|
7
|
+
[](https://github.com/PauloCesar-dev404/udemy-userAPI/blob/main/docs/iniciando.md)
|
8
|
+
|
9
|
+
|
10
|
+
Obtenha detalhes de cursos da plataforma udemy com a api de usuário,usando esta lib
|
11
|
+
|
12
|
+
|
13
|
+
- [x] Obter cursos inscritos(acesso por plano ou cursos free)
|
14
|
+
- [x] Obter detalhes de Aulas
|
15
|
+
- [x] Obter detalhes de um Curso
|
16
|
+
|
@@ -0,0 +1,33 @@
|
|
1
|
+
from udemy_userAPI.__version__ import __version__, __autor__, __repo__, __lib_name__, \
|
2
|
+
__description__
|
3
|
+
from setuptools import setup, find_packages
|
4
|
+
|
5
|
+
# Lê o conteúdo do README.md
|
6
|
+
with open('README_PYPI.md', 'r', encoding='utf-8') as file:
|
7
|
+
long_description = file.read()
|
8
|
+
|
9
|
+
setup(
|
10
|
+
name=__lib_name__,
|
11
|
+
version=__version__,
|
12
|
+
description=__description__,
|
13
|
+
long_description=long_description,
|
14
|
+
long_description_content_type="text/markdown",
|
15
|
+
author=__autor__,
|
16
|
+
author_email="paulocesar0073dev404@gmail.com",
|
17
|
+
license="MIT",
|
18
|
+
keywords=["udemy", "udemy python", "pyudemy","udemy_userAPI","udemy api"],
|
19
|
+
install_requires=[
|
20
|
+
'requests',
|
21
|
+
'cloudscraper',
|
22
|
+
'pywidevine'
|
23
|
+
],
|
24
|
+
packages=find_packages(),
|
25
|
+
zip_safe=False,
|
26
|
+
include_package_data=True,
|
27
|
+
platforms=["any"],
|
28
|
+
project_urls={
|
29
|
+
'GitHub': __repo__,
|
30
|
+
"Bugs/Melhorias": f"{__repo__}/issues",
|
31
|
+
"Documentação": f"{__repo__}/wiki",
|
32
|
+
}
|
33
|
+
)
|
File without changes
|
@@ -0,0 +1,6 @@
|
|
1
|
+
__version__ = '0.3.2'
|
2
|
+
__lib_name__ = 'udemy_userAPI' # local name
|
3
|
+
__repo_name__ = 'udemy-userAPI'
|
4
|
+
__autor__ = 'PauloCesar-dev404'
|
5
|
+
__repo__ = f'https://github.com/PauloCesar-dev404/{__repo_name__}'
|
6
|
+
__description__ = """Obtenha detalhes de cursos que o usuário esteja inscrito da plataforma Udemy,usando o EndPoint de usuário o mesmo que o navegador utiliza para acessar e redenrizar os cursos."""
|