Skip to content

Latest commit

 

History

History
48 lines (30 loc) · 956 Bytes

README.md

File metadata and controls

48 lines (30 loc) · 956 Bytes

PKU-login-python

A Python module to login to iaaa.pku.edu.cn

不会写求带

欢迎测试

选课系统的认证流程参考的是 刷课机

感谢 Xtuz 提供的 古人的智慧

Test

Set your environment variables:

export PKU_STUDENT_ID=0; # 你的学号
export PKU_PASSWORD=''; # 你的密码

then run:

python3 -m unittest test

Installation

pip install git+https://github.com/sjfhsjfh/PKU-login-python.git

Usage

from PKULogin import PKULogin

student_id = 0 # 你的学号
password = '' # 你的密码

pku_login = PKULogin(student_id=student_id, password=password)
pku_login.login()

# 你的代码
pku_login.session.get('http://portal.pku.edu.cn/portal2017/#/bizCenter')