Metadata-Version: 2.1
Name: tcafe-attending-bot
Version: 1.0.0
Summary: Auto attending bot for TCafe.
Author-email: Byeonghoon Yoo <bhyoo@bhyoo.com>
Requires-Python: >3.10
Description-Content-Type: text/markdown
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: AsyncIO
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: Korean
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Typing :: Typed
Requires-Dist: aiohttp==3.8.5
Requires-Dist: beautifulsoup4==4.12.2
Requires-Dist: xdg-base-dirs==6.0.0
Requires-Dist: black ; extra == "lint"
Requires-Dist: pytest ; extra == "test"
Requires-Dist: pytest-asyncio ; extra == "test"
Project-URL: Home, https://github.com/isac322/tcafe-attending-bot
Provides-Extra: lint
Provides-Extra: test

# TCafe attending bot

## 아이디 설정

__OS 별 [`XDG_DATA_DIRS`](https://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html)이 해당하는 곳에 설정__ (복수 설정 가능)

---

`Linux`의 경우

1. `/home/<$HOME>/.local/share/tcafe`
2. `/usr/local/share/tcafe`
3. `/usr/share/tcafe`

---

해당 디렉토리들에 `accounts.json` 이름으로 다음의 템플릿을 참고하여 내용을 작성

```json
[
    {
        "id": "ididid",
        "password": "password"
    },
    {
        "id": "ididid2",
        "password": "password2"
    }
]
```

## 실행

패키지 설치 후

```bash
tcafe_attending_bot
```
