tool that can scrape any site from internal links

Joined
Dec 17, 2020
Messages
5
Reaction score
0
I want to get all udemy courses links for my small project.
The number of courses is more than 250k, and I have not found any tool that can do this task
Is there any tool that can scrape all udemy internal links? I hope you can help me :)
 
If Scrapebox cannot do this, you could probably just pay a programmer to write you a Python/iMacros script to do this for you.


Python is perfect for this.
 
If Scrapebox cannot do this, you could probably just pay a programmer to write you a Python/iMacros script to do this for you.


Python is perfect for this.
I'm a Python programmer, but I'm looking for an easier solution. it's difficult to impossible because a lot of bot protection in udemy.
 
I'm a Python programmer, but I'm looking for an easier solution. it's difficult to impossible because a lot of bot protection in udemy.

There is nothing easier. If you need to scrape, you need to figure out a way to evade bot protection.

Use proxies, use selenium-stealth, run a multi-threaded approach.

What all data are you looking to scrape?
 
I scraped udemy 2 years ago for free courses, with nothing but a simple php scrapper wrote by me, is very easy!
They use a public api between backend and frontend and you can get everything you want from that api(course, ratings, instructor s,price, total duration, etc)
If you know a bit of php i can give you my old code if you'll be lucky and i will find it :))
 
Back
Top