Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 850 Bytes

README.rst

File metadata and controls

37 lines (24 loc) · 850 Bytes
https://travis-ci.org/stovorov/StockScraper.svg?branch=master

StockScraper

Repo contains scrapper for Bankier.pl site which delivers information about current stocks exchange prices on GPW - Polish stock exchange.

Getting Started

$ git clone
$ cd StockScraper
$ make venv
$ source venv/bin/activate
$ source prepare.sh

Usage

from StockScraper.Generic.Clients import get_client

client = get_client("http://www.bankier.pl")
data = client.get_market_data(company_symbol="OPONEO.PL", days_back=10)
print(data)

Example can be found in demo.py