Repo contains scrapper for Bankier.pl site which delivers information about current stocks exchange prices on GPW - Polish stock exchange.
$ git clone $ cd StockScraper $ make venv $ source venv/bin/activate $ source prepare.sh
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