Skip to content

Latest commit

 

History

History
46 lines (31 loc) · 952 Bytes

File metadata and controls

46 lines (31 loc) · 952 Bytes

LinkedIn Learning Downloader

Asynchronous scraping tool to fetch LinkedIn-learning's courses videos.

Dependencies:

  • Python 3.6
  • aiohttp
  • lxml (Can be installed via pip)

Info

Please use this script for your own purposes.

This script was written for educational usage only.

Make sure your LinkedIn account is NOT protected with 2FA

Usage

pip3 install -r requirements.txt

Edit config.py file (username, password and courses slugs)

Course's slug can be obtained using its url

e.g:
COURSE URL: https://www.linkedin.com/learning/learning-hadoop/
->
USERNAME = '[email protected]'
PASSWORD = 'xxxxxxxx'
COURSES = [
        'learning-hadoop',
]

python3 linkedin_learning.py

TODO

  • Add Description
  • Use argparser
  • Fetch courses from bookmarks