coop-kobe-downloader


Namecoop-kobe-downloader JSON
Version 0.3.1 PyPI version JSON
download
home_pageNone
SummaryAdd your description here
upload_time2024-09-04 04:24:34
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseMIT License Copyright (c) 2024 日高 凌 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords coop csv japan japanese parser
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # coop-kobe-downloader

[![PyPI version](https://badge.fury.io/py/coop-kobe-downloader.svg)](https://badge.fury.io/py/coop-kobe-downloader)
![build](https://github.com/ryohidaka/coop-kobe-downloader/workflows/Build/badge.svg)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT)

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

## Installation

You can install this library using PyPI:

```shell
pip install coop-kobe-downloader
```

## 使用方法

```py
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](LICENSE) file for details.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "coop-kobe-downloader",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "coop, csv, japan, japanese, parser",
    "author": null,
    "author_email": "ryohidaka <39184410+ryohidaka@users.noreply.github.com>",
    "download_url": "https://files.pythonhosted.org/packages/05/83/9579252730847dac33c58474da8ca7e14f8f2ffc02ba0eba6ed03866ace7/coop_kobe_downloader-0.3.1.tar.gz",
    "platform": null,
    "description": "# coop-kobe-downloader\n\n[![PyPI version](https://badge.fury.io/py/coop-kobe-downloader.svg)](https://badge.fury.io/py/coop-kobe-downloader)\n![build](https://github.com/ryohidaka/coop-kobe-downloader/workflows/Build/badge.svg)\n[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT)\n\n\u30b3\u30fc\u30d7\u3053\u3046\u3079\u306e\u5b85\u914d\u306e\u6ce8\u6587\u66f8(CSV)\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b Python \u30d1\u30c3\u30b1\u30fc\u30b8\n\n## Installation\n\nYou can install this library using PyPI:\n\n```shell\npip install coop-kobe-downloader\n```\n\n## \u4f7f\u7528\u65b9\u6cd5\n\n```py\nfrom coop_kobe_downloader import CoopKobeDownloader, Weekday\n\n# \u30ed\u30b0\u30a4\u30f3ID\nlogin_id = \"hoge@example.com\"\n\n# \u30d1\u30b9\u30ef\u30fc\u30c9\npassword = \"hogehoge\"\n\n# CSV\u51fa\u529b\u5148\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\ndownload_dir = \".output\"\n\n# \u30c0\u30a6\u30f3\u30ed\u30fc\u30c0\u30fc\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f5c\u6210\ndownloader = CoopKobeDownloader(login_id, password, download_dir)\n\n# \u4f01\u753b\u56de\u3092\u53d6\u5f97\nphase = downloader.get_phase(Weekday.WED)\nprint(phase)\n# output: 2024062\n\n# \u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u51e6\u7406\ndownloader.download(phase)\n```\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2024 \u65e5\u9ad8 \u51cc  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
    "summary": "Add your description here",
    "version": "0.3.1",
    "project_urls": {
        "Changelog": "https://github.com/ryohidaka/blob/main/coop-kobe-downloader/CHANGELOG.md",
        "Homepage": "https://github.com/ryohidaka/coop-kobe-downloader",
        "Issues": "https://github.com/ryohidaka/coop-kobe-downloader/issues",
        "Repository": "https://github.com/ryohidaka/coop-kobe-downloader"
    },
    "split_keywords": [
        "coop",
        " csv",
        " japan",
        " japanese",
        " parser"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e9816fc0ff857945027e34aa3f8211f8ebf70ee308bf8b12b3b942ed98c301b",
                "md5": "a6859808b0b46f401eeffef3dd60696f",
                "sha256": "a0f7003db3ae49c4d77175315b3f6cc1333a0f83da3fbd18a86637d10fea0e06"
            },
            "downloads": -1,
            "filename": "coop_kobe_downloader-0.3.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a6859808b0b46f401eeffef3dd60696f",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 8875,
            "upload_time": "2024-09-04T04:24:33",
            "upload_time_iso_8601": "2024-09-04T04:24:33.622031Z",
            "url": "https://files.pythonhosted.org/packages/7e/98/16fc0ff857945027e34aa3f8211f8ebf70ee308bf8b12b3b942ed98c301b/coop_kobe_downloader-0.3.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "05839579252730847dac33c58474da8ca7e14f8f2ffc02ba0eba6ed03866ace7",
                "md5": "0d7777750c16163a27f6f964d87adb2d",
                "sha256": "d49468c34bccd84ac7f85b4abfd6e3552b5d7e2772647f1af134ae3934175708"
            },
            "downloads": -1,
            "filename": "coop_kobe_downloader-0.3.1.tar.gz",
            "has_sig": false,
            "md5_digest": "0d7777750c16163a27f6f964d87adb2d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 9413,
            "upload_time": "2024-09-04T04:24:34",
            "upload_time_iso_8601": "2024-09-04T04:24:34.915331Z",
            "url": "https://files.pythonhosted.org/packages/05/83/9579252730847dac33c58474da8ca7e14f8f2ffc02ba0eba6ed03866ace7/coop_kobe_downloader-0.3.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-04 04:24:34",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ryohidaka",
    "github_project": "blob",
    "github_not_found": true,
    "lcname": "coop-kobe-downloader"
}
        
Elapsed time: 0.34568s