Skip to content

monkeyapple/UdemyAPI

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Welcome

This repository provides you with a simple interface to interact with the Udemy API.

All you need to do is:

  • Get an API client from here
  • Then use the module :)
  • Feel free to extend or modify it as you would like to!

You can either set the udemyClientID and udemyClientSecret environment variable or specify them as keyword arguments. All the API functions are supported with additional query parameters

Example

In order to use the os environment variable defined clientID and clientSecret

from udemy import *
Client = PyUdemy()
Client.get_publiccurriculumlist(courseID = "1967128",page=1)

In order to specify as keyword argument the cliendID and clientSecret

from udemy import *
Client = PyUdemy(clientID = '<clientID>', clientSecret = '<clientSecret>')
Client.get_courseslist()

About

This is the official repository for the package on the pypi.org

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • Python 100.0%