Skip to main content

Web scraping API for Finnish websites

Project description

finscraper

finscraper cover

The library provides an easy-to-use API for fetching data from various Finnish websites:

Website URL Type Class
IltaSanomat https://www.is.fi News article finscraper.spiders.ISArticle
Iltalehti https://www.iltalehti.fi News article finscraper.spiders.ILArticle

Installation

pip install finscraper

Quickstart

Fetch 10 news articles as pandas DataFrame from IltaSanomat:

from finscraper.spiders import ISArticle

spider = ISArticle(category='ulkomaat').scrape(10)

articles = spider.get()

Save and load spider

spider_dir = spider.save()

loaded_spider = ISArticle.load(spider_dir)

# Scrape 10 more articles and get all 20 articles scraped so far
articles = loaded_spider.scrape(10).get()

Documentation

Proper documentation is still a work in progress, but meanwhile you may utilize the help -function, e.g. help(ISArticle).

Contributing

Web scrapers tend to break quite easily. Unfortunately, I can't make a promise to keep this repository up-to-date all by myself, and thus I invite you to make a pull request against the dev branch when a spider breaks.


Jesse Myrberg (jesse.myrberg@gmail.com)

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

finscraper-0.0.1.dev1.tar.gz (13.0 kB view hashes)

Uploaded Source

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