Skip to content

Prajwalsrinvas/Enrolled-udemy-courses-exporter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Enrolled Udemy courses exporter

Used to get an excel file containing enrolled udemy courses data

Demonstration

demonstration.mp4

Getting Access token

Access token is required to get the list of enrolled courses in udemy account.

  1. Login to your udemy account.
  2. Open console in devtools (ctrl+shift+i ---> console tab).
  3. Copy the JavaScript snippet given below and paste it into the console window.
function getCookie(name) {
  const value = `; ${document.cookie}`;
  const parts = value.split(`; ${name}=`);
  if (parts.length === 2) return parts.pop().split(';').shift();
}
getCookie('access_token')
  1. Copy the string which is returned.This is your access token.

Get access token

Streamlit webapp

Homepage

  1. Go to this site.
  2. Paste access token in the box and wait till all course information is retrieved.
  3. First few rows are displayed just to get an idea of how the data is formatted.
  4. An Excel sheet containing all course information can be downloaded by clicking the download button.

Streamlit app

About

Streamlit app to export an excel sheet containing all enrolled udemy courses

Topics

Resources

Stars

Watchers

Forks