Python library for scraping with Selenium.
Project description
as-scraper
Python library for scraping using Selenium
If you are looking for the library implemented inside airflow, go to https://github.com/Avila-Systems/as-scraper-airflow.
Installation
The as-scraper library uses Geckodriver (Firefox) for scraping with the Selenium library. In order to use it, you need to have an Geckodriver dependency. Check the selenium documentation for details about how to install the Firefox browser driver.
Usage
Creating a simple scraper
Lets say that we want to scrap yellowpages.com. Our target data would be the popular cities that we can find in the sitemap url.
Our output data will have two columns: name of the city and url which is linked to the city. For example, for Houston, we would want the following output:
| name | url |
|---|---|
| Houston | https://www.yellowpages.com/houston-tx |
Declaring our Scraper Class
So first we create a scraper that extends from the Scraper class, and define the COLUMNS variable to ['name', 'url'].
Create the scrapers/yellowpages.py file and type the following code into it:
from as_scraper.scraper import Scraper
class YellowPagesScraper(Scraper):
COLUMNS = ['name', 'url']
Deciding wether to load javascript or not
Now, there are two execution options when running scrapers. We can either load javascript which uses the Selenium library, or not load javascript and use the requests library for http requests.
For this example, let's go ahead and use the Selenium library. To configure this, simply add the following variable to your scraper:
from as_scraper.scraper import Scraper
class YellowPagesScraper(Scraper):
COLUMNS = ['name', 'url']
LOAD_JAVASCRIPT = True
Defining the scrape_handler
And the magic comes in the next step. We will define the scrape_handler method in our class, which will have the responsibility to scrape a given url and extract the data from it.
All scrapers must define the
scrape_handlermethod.
from typing import Optional
from selenium.webdriver import Firefox
from selenium.webdriver.common.by import By
import pandas as pd
from as_scraper.scraper import Scraper
class YellowPagesScraper(Scraper):
COLUMNS = ['name', 'url']
LOAD_JAVASCRIPT = True
def scrape_handler(self, url: str, html: Optional[str] = None, driver: Optional[Firefox] = None, **kwargs) -> pd.DataFrame:
rows = []
div_tag = driver.find_element(By.CLASS_NAME, "row-content")
div_tag = div_tag.find_element(By.CLASS_NAME, "row")
section_tags = div_tag.find_elements(By.TAG_NAME, "section")
for section_tag in section_tags:
a_tags = section_tag.find_elements(By.TAG_NAME, "a")
for a_tag in a_tags:
city_name = a_tag.text
city_url = a_tag.get_attribute("href")
rows.append({"name": city_name, "url": city_url})
df = pd.DataFrame(rows, columns=self.COLUMNS)
return df
Execution
Finally, to execute the scraper you must call the *execute method.
from typing import Optional
from selenium.webdriver import Firefox
from selenium.webdriver.common.by import By
import pandas as pd
from as_scraper.scraper import Scraper
class YellowPagesScraper(Scraper):
COLUMNS = ['name', 'url']
LOAD_JAVASCRIPT = True
def scrape_handler(self, url: str, html: Optional[str] = None, driver: Optional[Firefox] = None, **kwargs) -> pd.DataFrame:
rows = []
div_tag = driver.find_element(By.CLASS_NAME, "row-content")
div_tag = div_tag.find_element(By.CLASS_NAME, "row")
section_tags = div_tag.find_elements(By.TAG_NAME, "section")
for section_tag in section_tags:
a_tags = section_tag.find_elements(By.TAG_NAME, "a")
for a_tag in a_tags:
city_name = a_tag.text
city_url = a_tag.get_attribute("href")
rows.append({"name": city_name, "url": city_url})
df = pd.DataFrame(rows, columns=self.COLUMNS)
return df
if __name__ == '__main__':
urls = ['https://www.yellowpages.com/sitemap']
scraper = YellowPagesScraper(urls)
results, errors = scraper.execute()
print(results)
print(errors)
Now go ahead and run python scrapers/yellowpages.py. Have fun!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file as-scraper-2.5.1.tar.gz.
File metadata
- Download URL: as-scraper-2.5.1.tar.gz
- Upload date:
- Size: 9.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e69f39295b8e9e12c73029426e507c87be688cfac6bae71392b352ad3aed993e
|
|
| MD5 |
11750b0780097be9a3af177059ba13a4
|
|
| BLAKE2b-256 |
7df732492474e43d614ba394da890f875ed877e8cced8051fc394e4d32b9b6da
|
File details
Details for the file as_scraper-2.5.1-py3-none-any.whl.
File metadata
- Download URL: as_scraper-2.5.1-py3-none-any.whl
- Upload date:
- Size: 9.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc3e2fdc69dd43781bfefefc1afba67f12b46cdbc07c18c2c93abe494bca64dc
|
|
| MD5 |
4c04556e4fbe73e1589655d4605dabca
|
|
| BLAKE2b-256 |
4af7ecd0fbe1a79e08d5752b2e18d95d3958a4f2f96e7a2d14682d2c29325c7a
|