https://github.com/ryu22e/chouseisan_py
Automate the operation of chouseisan.com
https://github.com/ryu22e/chouseisan_py
python rpa
Last synced: 4 months ago
JSON representation
Automate the operation of chouseisan.com
- Host: GitHub
- URL: https://github.com/ryu22e/chouseisan_py
- Owner: ryu22e
- License: mit
- Created: 2021-10-22T04:54:37.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-04-30T23:06:19.000Z (about 1 year ago)
- Last Synced: 2025-11-27T17:30:01.111Z (7 months ago)
- Topics: python, rpa
- Language: Python
- Homepage: https://chouseisan-py.readthedocs.io/en/latest/index.html
- Size: 560 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# chouseisan_py
chouseisan_py automates the operations of [調整さん](https://chouseisan.com/)(Chouseisan).
Currently, it only supports creating events.

[](https://codecov.io/gh/ryu22e/chouseisan_py)
## Installation
```python
$ pip install chouseisan-py
```
## Usage
```python
>>> from datetime import datetime
>>> from chouseisan_py.chouseisan import Auth, Chouseisan
>>> auth = Auth(email="test@example.com", password="")
>>> chouseisan = Chouseisan(auth)
>>> chouseisan.create_event(
... title="test event",
... candidate_days=[datetime(2021, 10, 17, 19, 0), datetime(2021, 10, 18, 19, 0)]
... )
'https://chouseisan.com/s?h=f7b7fc11995b441782844bc3fddaf456'
```