Skip to content

Latest commit

 

History

History
38 lines (21 loc) · 1.31 KB

README.md

File metadata and controls

38 lines (21 loc) · 1.31 KB

PyLadies Python Web Scraping: Using BeautifulSoup and Selenium

About this talk

The code and presentation here were done for this PyLadies event. The scrapers developed are pretty basic and they are not intended to work for any meetup group.

The talk is meant to introduce programmers into the scraping data world using python, processing "static" pages with BeautifulSoup and requests, or dynamic pages using Selenium webdriver.

Requirements

As the talk is about BeautifulSoup, requests, and selenium, you'll need this packages.

You can either install them globally:

sudo pip install requests selenium beautifulsoup4

Or create a virtual enviroment in your folder for it:

sudo pip install virtualenv

Run the installation script:

./setup_virtualenv

And run your virtual enviroment:

source bin/activate

Some Documentation