Metadata-Version: 2.1
Name: finscraper
Version: 0.0.1.dev4
Summary: Web scraping API for Finnish websites
Home-page: https://github.com/jmyrberg/finscraper
Author: Jesse Myrberg
Author-email: jesse.myrberg@gmail.com
License: MIT
Description: # finscraper
        
        [![Build Status](https://travis-ci.com/jmyrberg/finscraper.svg?branch=master)](https://travis-ci.com/jmyrberg/finscraper) [![Documentation Status](https://readthedocs.org/projects/finscraper/badge/?version=latest)](https://finscraper.readthedocs.io/en/latest/?badge=latest)
        
        ![finscraper cover](https://github.com/jmyrberg/finscraper/blob/master/docs/cover.jpg?raw=true)
        
        The library provides an easy-to-use API for fetching data from various Finnish websites:
        
        | Website     | URL                      | Type         | Spider API class               |
        | ----------- | ------------------------ | ------------ | ------------------------------ |
        | IltaSanomat | https://www.is.fi        | News article | `finscraper.spiders.ISArticle` |
        | Iltalehti   | https://www.iltalehti.fi | News article | `finscraper.spiders.ILArticle` |
        
        Documentation is available at [https://www.finscraper.readthedocs.io](https://www.finscraper.readthedocs.io).
        
        
        ## Installation
        
        `pip install finscraper`
        
        
        ## Quickstart
        
        Fetch 10 news articles as a pandas DataFrame from [IltaSanomat](https://is.fi):
        
        ```python
        from finscraper.spiders import ISArticle
        
        spider = ISArticle().scrape(10)
        
        articles = spider.get()
        ```
        
        ## Contributing
        
        When websites change, spiders tend to break. I can't make a promise to keep this
        repository up-to-date all by myself - pull requests are more than welcome!
        
        
        ---
        
        Jesse Myrberg (jesse.myrberg@gmail.com)
        
Keywords: web,scraping,finnish
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
