Metadata-Version: 2.1
Name: finscraper
Version: 0.0.1.dev19
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                                                        | Type              | Spider API class   |
        | -------------------------------------------------------------- | ----------------- | ------------------ |
        | [Ilta-Sanomat](https://www.is.fi)                              | News article      | `ISArticle`        |
        | [Iltalehti](https://www.il.fi)                                 | News article      | `ILArticle`        |
        | [YLE Uutiset](https://www.yle.fi/uutiset)                      | News article      | `YLEArticle`       |
        | [Vauva](https://www.vauva.fi)                                  | Discussion thread | `VauvaPage`        |
        | [Oikotie Asunnot](https://asunnot.oikotie.fi/myytavat-asunnot) | Apartment ad      | `OikotieApartment` |
        
        Documentation is available at [https://finscraper.readthedocs.io](https://finscraper.readthedocs.io) and [simple online demo here](https://storage.googleapis.com/jmyrberg/index.html#/demo-projects/finscraper).
        
        
        ## Installation
        
        `pip install finscraper`
        
        
        ## Quickstart
        
        Fetch 10 news articles as a pandas DataFrame from [Ilta-Sanomat](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,nlp
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
