Skip to main content

A scraper of statistical data from uc.se, built on top of Statscraper.

Project description

This is a non-official scraper for statistical data from the (https://www.uc.se/konkursstatistik)[uc.se] built on top of the Statscraper package <https://github.com/jplusplus/statscraper>.

The scraper is limited to the data availble through https://www.uc.se/konkursstatistik

Install

$ pip install uc_scraper

Example usage

from uc import UCScraper

# Init scraper
scraper = UCScraper()

# List all available datasets
print(scraper.items)
# [<UCDataset: Riks- och länsstatistik (b'Riks- och l\xc3\xa4nsstatistik')>, <UCDataset: Kommunstatistik (b'Kommunstatistik')>, <UCDataset: Branschstatistik (b'Branschstatistik')>]

# Select a dataset
dataset = scraper.items["Branschstatistik"]

# List all available dimensions
print(dataset.dimensions)
#

# Make a query
res = dataset.fetch()  # Get latest available data by default

# Analyze the results with Pandas
df = res.pandas

# You are able to query month ranges
res = dataset.fetch({"from": "2019-06"})

res = dataset.fetch({"from": "2019-06", "to": "2019-07"})

Develop

Set up:

$ pip install -r requirements.txt

Run tests:

$ make tests

Deploy to pypi (assuming you have Twine installed, if not pip install twine)

$ make tests

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

uc_scraper-0.2.tar.gz (3.8 kB view hashes)

Uploaded Source

Built Distribution

uc_scraper-0.2-py3-none-any.whl (4.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page