Webcrawling with Python & Selenium
In a recent project i had to extract data from a website which did not offer any API-access. To make matters worse, the data gets loaded via JS, so trying to automate python-requests would be a huge pain in the butt. If you have come across the same problem, you probably also stumbled upon Selenium. While the official Docs can be pretty bad at times, especially if you’re just starting out and have no idea which modules you need to import, there are lots of stackoverflow-threads which will get you going along. ...