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
- Host: GitHub
- URL: https://github.com/brainstorm/pystoruman
- Owner: brainstorm
- Created: 2013-03-19T23:53:42.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2013-03-19T23:55:00.000Z (about 13 years ago)
- Last Synced: 2025-02-08T15:25:05.388Z (over 1 year ago)
- Language: Python
- Size: 102 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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'}
]
```