Metadata-Version: 2.1
Name: xzitaao
Version: 0.0.2
Summary: Crawler for xzit aao
Home-page: https://github.com/Qualthera/xzitaao.git
Author: Qualthera
Author-email: qualthera@163.com
License: Apache License 2.0
Description: ## XZITAAO
        
        > 本项目是 http://jwc.xzit.edu.cn 的爬虫
        >
        > 非常感谢[xrandx](https://github.com/xrandx)将其开源
        >
        > 我现在把它整理出来供大家使用
        
        ### 使用方法
        
        `pip install xzitaao`
        
        **Demo**
        
        ```python
        import xzitaao
        
        Sid = "" #学号
        Pwd = "" #密码
        Cid = "" #选课的课程号
        
        def main():
            student = xzitaao.Student(Sid,Pwd,Cid)
            try:
                student.login() #登录
                student.get_info()  #保存个人信息
                student.save_score()   #保存成绩单
                student.evaluate()  #教学评估
                student.get_elective_course() #选课
            except Exception as e:
                xzitaao.auto_ip()
                print(e)
        
        if __name__ == '__main__':
            main()
        ```
        
        ### 已知 Bug
        
        验证码图片无法自己关掉，需要手动关
        
        ### LICENSE
        
        [Apache License 2.0](LICENSE)
Platform: all
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
