udemy-userAPI 0.3.2__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -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,3 @@
1
+ include README_PYPI.md
2
+ include udemy_userAPI/mpd_analyzer/bin.wvd
3
+ include udemy_userAPI/.cache/.udemy_userAPI
@@ -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
+ ![Versão](https://img.shields.io/badge/version-0.3.2-orange)
23
+ ![Licença](https://img.shields.io/badge/license-MIT-orange)
24
+ [![Sponsor](https://img.shields.io/badge/💲Donate-yellow)](https://paulocesar-dev404.github.io/me-apoiando-online/)
25
+ [![Sponsor](https://img.shields.io/badge/Documentation-green)](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
+ ![Versão](https://img.shields.io/badge/version-0.3.2-orange)
7
+ ![Licença](https://img.shields.io/badge/license-MIT-orange)
8
+ [![Sponsor](https://img.shields.io/badge/💲Donate-yellow)](https://paulocesar-dev404.github.io/me-apoiando-online/)
9
+ [![Sponsor](https://img.shields.io/badge/Documentation-green)](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
+ ![Versão](https://img.shields.io/badge/version-0.3.2-orange)
5
+ ![Licença](https://img.shields.io/badge/license-MIT-orange)
6
+ [![Sponsor](https://img.shields.io/badge/💲Donate-yellow)](https://paulocesar-dev404.github.io/me-apoiando-online/)
7
+ [![Sponsor](https://img.shields.io/badge/Documentation-green)](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,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -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
+ )
@@ -0,0 +1,7 @@
1
+ from .udemy import Udemy
2
+ from .authenticate import UdemyAuth
3
+ from .exeptions import UdemyUserApiExceptions,LoginException
4
+
5
+
6
+ __all_ = ['Udemy','UdemyAuth','UdemyUserApiExceptions','LoginException']
7
+
@@ -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."""