Skip to content

MarvinTerry/HustAuth

Repository files navigation

HustAuth

HustPassLogo

This project provides HustPass support for Requests

Variation of HustLogin

Installation

pip install requests-hustauth

Dependency

(automatically handled by PIP)

Requests
Pillow
numpy
pycryptodome
fake_useragent

Usage

example.py

import requests
from requests_hustauth import HustAuth

session = requests.Session()
hust_auth = HustAuth('USERID','PASSWORD')

resp = session.get('http://m.hust.edu.cn/wechat/apps_center.jsp',auth=hust_auth)
print(resp.text)