Metadata-Version: 2.1
Name: BUPT-Tools
Version: 0.1.0
Summary: A series of tools that can be used in your BUPT college life.
Author-Email: EliorFoy <1700118540@qq.com>
License: MIT
Requires-Python: >=3.10
Requires-Dist: requests>=2.32.3
Requires-Dist: loguru>=0.7.2
Requires-Dist: beautifulsoup4>=4.12.3
Description-Content-Type: text/markdown

# BUPT
## 用法举例
```python
from bupt_internal import BUPT

# 初始化
BUPT.init()
session = BUPT.login()

# 第一次启动会提示输入要抢的课以及登录教育管理网站需要的账号密码生成配置文件，后续可以直接在配置文件中修改
BUPT.grab_all_course(session)  

BUPT.unchoose_course(session, "射电", "虚拟现实") # 退选
```