Skip to main content

Generate CQU timetable iCalendar (ics) file

Project description

ICS 课程表文件生成脚本

适用于最新选课站点生成的 xlsx 格式的课表转换为日历软件能认到的 ICS 格式文件.

使用说明

使用 pip 安装依赖:

pip install cqu_timetable_new

直接运行 (demo)

准备从新选课网站下载的 课表.xlsx 或者 json 文件,放置于任意目录。
配置文件格式如下:

[config]
debug = False
base_dir = /home/ddqi/kb.xlsx
start_date = 20210301
file_name = timetable.ics
配置项 类型 示例 注释
debug boolean True 控制是否为调试模式,可选值:True False
base_dir str /home/ddqi/kb.xlsx 指向课表文件的路径
start_date str 20210301 行课日期
file_name str timetable.ics 生成的 ics 文件名(为避免编码问题不要用中文),扩展名请勿更改,文件名不可包含中文

将配置文件 config.txt 放置在工作目录下,终端执行:

cqu_timetable_new

将生成指定文件名的 iCalendar 格式文件

tkinter 前端

使用 pip 安装依赖:

pip install cqu_timetable_new[tk]

之后可运行

cqu_timetable_new-tk

启动 tkinter 前端。

Qt5 前端

使用 pip 安装依赖:

pip install cqu_timetable_new[pyqt]

之后可运行

cqu_timetable_new-qt

启动 Qt5 前端。

作为库来使用

使用时需要先生成课表数据,再从课表数据中生成日历

  1. 生成课表数据

    • 可通过 loadIO_from_jsonloadIO_from_xlsx 函数从文件或数据流中读取 json 或 xlsx,返回解析出的课表数据
    • 也可通过 load_from_jsonload_from_xlsx 函数读取 strbytes 格式的 json 或 xlsx 数据,返回解析出的课表数据
  2. 生成日历数据

    使用 mkical 函数,第一个参数是上一步得到的课表数据,第二个参数是 datetime.date 类型的开学日期,返回 icalendar.Calendar 类型的日历数据,可通过其 to_ical 得到 ics 文件的内容。

example:

from cqu_timetable_new import mkical, loadIO_from_xlsx
from datetime import date
xlsx_path = "Downloads/课表.xlsx"     # 课表 xlsx 文件路径
ical_path = "课表.ics"                # 要保存的日历文件的路径
data = loadIO_from_xlsx(xlsx_path)    # 从 xlsx 文件中中加载课表数据
ical = mkical(data, date(2021,3,1))   # 生成日历,2021.3.1(必须是周一)开学
with open(ical_path, 'wb') as file_:  # 保存 ics 文件时应用二进制模式打开
    file_.write(ical.to_ical())       # 用 to_ical 方法可导出日历数据(类型为 bytes)

另有 demo 可见于 cqu_timetable_new/__init__.py 中的 main 函数

FAQ

Q: 为什么不带有登录功能?
A: 因为我懒。如果你能做出带有登录功能的脚本请随意 pr 。我只信得过可以下载的自动生成的课表。 (主要还是依赖项少一些)

姊妹项目

cm-http-api (开发中)

LICENSES

AGPLv3

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cqu_timetable_new-0.3.2.11.5.tar.gz (21.5 kB view details)

Uploaded Source

Built Distribution

cqu_timetable_new-0.3.2.11.5-py3-none-any.whl (25.8 kB view details)

Uploaded Python 3

File details

Details for the file cqu_timetable_new-0.3.2.11.5.tar.gz.

File metadata

  • Download URL: cqu_timetable_new-0.3.2.11.5.tar.gz
  • Upload date:
  • Size: 21.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.4 CPython/3.9.1 Linux/5.4.0-1039-azure

File hashes

Hashes for cqu_timetable_new-0.3.2.11.5.tar.gz
Algorithm Hash digest
SHA256 dd1189af74a0348bd83be50b8b2b6897c0a0a68790102124fa863eb531c876b3
MD5 e682682a6a149b2a58aefa55fe337a43
BLAKE2b-256 fe2df2cc602850f71c923d15710e40ef4567389af4b82876b8a42abb4608559f

See more details on using hashes here.

File details

Details for the file cqu_timetable_new-0.3.2.11.5-py3-none-any.whl.

File metadata

File hashes

Hashes for cqu_timetable_new-0.3.2.11.5-py3-none-any.whl
Algorithm Hash digest
SHA256 bc6fd68e03f903d4d5e9eba993bdc91efe3994b9a1579c79661e91df82b4368f
MD5 5c9447d6a5aef622336a0e86012bc3be
BLAKE2b-256 3a61f944cd926b700621238152e6e65089943d74c9563db13a99dde64f075040

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page