Socket
Socket
Sign inDemoInstall

coop-kobe-downloader

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

coop-kobe-downloader

Add your description here


Maintainers
1

coop-kobe-downloader

PyPI version build License

コープこうべの宅配の注文書(CSV)をダウンロードする Python パッケージ

Installation

You can install this library using PyPI:

pip install coop-kobe-downloader

使用方法

from coop_kobe_downloader import CoopKobeDownloader, Weekday

# ログインID
login_id = "hoge@example.com"

# パスワード
password = "hogehoge"

# CSV出力先のディレクトリ
download_dir = ".output"

# ダウンローダーのインスタンスを作成
downloader = CoopKobeDownloader(login_id, password, download_dir)

# 企画回を取得
phase = downloader.get_phase(Weekday.WED)
print(phase)
# output: 2024062

# ダウンロード処理
downloader.download(phase)

License

This project is licensed under the MIT License - see the LICENSE file for details.

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc