An open API service indexing awesome lists of open source software.

https://github.com/brainstorm/pystoruman

Scrapy web crawler for storumanenergy.se
https://github.com/brainstorm/pystoruman

Last synced: about 1 year ago
JSON representation

Scrapy web crawler for storumanenergy.se

Awesome Lists containing this project

README

          

pystoruman
==========

Scrapy web crawler to fetch invoices from the
electrical company storuman.

Quick start
===========

```
pip install scrapy && git clone https://github.com/brainstorm/pystoruman && cd pystoruman
```

Edit `settings.py` and edit `STORUMAN_USER` and `STORUMAN_PASSWORD`.

```
$ scrapy crawl storuman.se -o items.json -t json
(...)

$ cat items.json
[ {'amount': u'106,00',
'date': u'2013-03-31',
'invoice_nr': u'666623888',
'paid': u'106,00'}
]
```