coop-kobe-downloader

コープこうべの宅配の注文書(CSV)をダウンロードする Python パッケージ
Installation
You can install this library using PyPI:
pip install coop-kobe-downloader
使用方法
from coop_kobe_downloader import CoopKobeDownloader, Weekday
login_id = "hoge@example.com"
password = "hogehoge"
download_dir = ".output"
downloader = CoopKobeDownloader(login_id, password, download_dir)
phase = downloader.get_phase(Weekday.WED)
print(phase)
downloader.download(phase)
License
This project is licensed under the MIT License - see the LICENSE file for details.