a scraper to mirror edi-energy.de
Project description
edi-energy.de scraper
The Python package edi_energy_scraper
provides easy to use methods to mirror the website edi-energy.de.
Rationale / Why?
If you'd like to be informed about new regulations or data formats being published on edi-energy.de you can either
- visit the site every day and hope that you see the changes if this is your favourite hobby,
- or automate the task.
This repository helps you with the latter. It allows you to create an up-to-date copy of edi-energy.de on your local
computer. Other than if you mirrored the files using wget
or curl
, you'll get a clean and intuitive directory
structure.
From there you can e.g. commit the files into a VCS, scrape the PDF/Word files for later use...
We're all hoping for the day of true digitization on which this repository will become obsolete.
How to use the Package (as a user)
Install via pip:
pip install edi_energy_scraper
Create a directory in which you'd like to save the mirrored data:
mkdir edi_energy_de
Then import it and start the download:
import asyncio
from edi_energy_scraper import EdiEnergyScraper
async def mirror():
scraper = EdiEnergyScraper(path_to_mirror_directory="edi_energy_de")
await scraper.mirror()
if __name__ == "__main__":
loop = asyncio.get_event_loop()
loop.run_until_complete(mirror())
This creates a directory structure:
-|-your_script_cwd.py
|-edi_energy_de
|- past (contains archived files)
|- ahb.pdf
|- ahb.docx
|- ...
|- current (contains files valid as of today)
|- mig.pdf
|- mig.docx
|- ...
|- future (contains files valid in the future)
|- allgemeine_festlegungen.pdf
|- schema.xsd
|- ...
How to use this Repository on Your Machine (for development)
Please follow the instructions in our Python Template Repository . And for further information, see the Tox Repository.
Contribute
You are very welcome to contribute to this template repository by opening a pull request against the main branch.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for edi_energy_scraper-0.2.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bdfa636d5c8e4482b4268516e7f16250e23ada77a29e8a1000e5755f06120939 |
|
MD5 | 10b98c9ea63e64b811728c3d24ded2eb |
|
BLAKE2b-256 | 5e89deae805a007951026c73d2ae3130ec85a08cf62ce6f4ed6861da1a1c90c2 |