Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update sign.py #13

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions sign.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@

# 单人签到学号,部分学校可能用一卡通号等代替。可以到 https://fxgl.jx.edu.cn/你的高校代码/ 自己尝试一下
# 仅当选择单人签到,即上面signs = 0时才需要配置,否则可以忽略
yourID = 你的学号
yourID = T2020211121
# 多人签到学号组,部分学校可能用一卡通号等代替。可以到 https://fxgl.jx.edu.cn/你的高校代码/ 自己尝试一下
# 仅当选择多人签到,即上面signs = 1时才需要配置,否则可以忽略,使用英语逗号 , 将每个学号分开哦,需要是同一个学校,两侧的引号别丢了
IDs = '学号1,学号2,学号3,学号4'

# 高校代码,详见GitHub项目介绍
# 多人签到暂不支持多个学校签到(你想干嘛?)
schoolID = 4136010403
schoolID = 4136013423

# 身份类型 0表示学生 1表示教职工
identity = 0
Expand All @@ -33,17 +33,17 @@
# 纬度,至少精确到小数点后6
lat = 22.222222
# 地址 尽量详细 包含省市区/镇,两侧的引号别丢了
zddlwz = '你的地址'
zddlwz = '江西省南昌市红谷滩新区江西工业贸易职业技术学院'

# ##############################用户通知数据配置#######################################
# ##########SERVER酱配置###############
# #SERVER酱Turbo升级版新官网 sct.ftqq.com
# 是否开启SERVER酱通知 0表示关闭 1表示开启
server_chan =0
server_chan =1
# SERVER酱sendkey,两侧的引号别丢了
# 查看网址 sct.ftqq.com/sendkey
# 免费版可每日发送五条推送
sendkey = '你的key'
sendkey = 'SCT81251TlEKAl1hOs2s2wPwDI5MpyYzY'

# ##################################程序开始#########################################
import time
Expand Down