Python library for scraping data sources and creating readable deltas
Project description
delta-scraper
IN EARLY DEVELOPMENT
Python library for scraping data sources and creating readable deltas.
For background, see Scraping hurricane Irma.
Concepts
This library allows you to define scrapers, which are objects that know how to retrieve information from a source (usually a web API, but scrapers can be written to operate against HTML or other formats) and persist that data somewhere as JSON.
When a scraper fetches fresh information it has the ability to compare that data to the old data and use the difference to create a human-readable message.
These capabilities can be combined with a git repository to create a commit log, with human-readable commit messages that accompany a machine-readable diff againts the generated JSON.
See disaster-scrapers and disaster-data for some examples of this pattern in action.
Basic usage
You can define new scrapers by subclassing DeltaScraper
. Here's an example which scrapes a list of FEMA shelters.
class FemaShelters(DeltaScraper):
url = "https://gis.fema.gov/geoserver/ows?service=WFS&version=1.0.0&request=GetFeature&typeName=FEMA:FEMANSSOpenShelters&maxFeatures=250&outputFormat=json"
owner = "simonw"
repo = "disaster-data"
filepath = "fema/shelters.json"
record_key = "SHELTER_ID"
noun = "shelter"
def fetch_data(self):
data = requests.get(self.url, timeout=10).json()
return [feature["properties"] for feature in data["features"]]
def display_record(self, record):
display = []
display.append(
" {SHELTER_NAME} in {CITY}, {STATE} ({SHELTER_STATUS})".format(**record)
)
display.append(
" https://www.google.com/maps/search/{LATITUDE},{LONGITUDE}".format(
**record
)
)
display.append(" population = {TOTAL_POPULATION}".format(**record))
display.append("")
return "\n".join(display)
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 Distributions
Built Distribution
File details
Details for the file delta_scraper-0.1a1-py3-none-any.whl
.
File metadata
- Download URL: delta_scraper-0.1a1-py3-none-any.whl
- Upload date:
- Size: 9.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 88b863a1a436f184799aad0f2325bd3bab9c0e5d1c3a534779fd494734048a26 |
|
MD5 | 217fed4f228456b699a53717cefac981 |
|
BLAKE2b-256 | 9004082f6b9b55c85a82f3c354ea3b7ea29075cce0984b2782a6acee7b7ee16e |