# Script for Auto-Login to Campus Network,Checking and Attempting to Fix DNS Malfunctions in the Intranet and Internet **Repository Path**: kancoO/network-detection-script ## Basic Information - **Project Name**: Script for Auto-Login to Campus Network,Checking and Attempting to Fix DNS Malfunctions in the Intranet and Internet - **Description**: 第一次接触脚本和python - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-10-15 - **Last Updated**: 2023-10-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 小白瞎鼓捣,主要用于备份 #### 使用说明 1. py打包为exe可执行程序可以用pyinstaller,pip安装后执行pyinstaller --onefile py文件名.py就可以进行打包 2. 认证时在chrome或者edge认证页登陆前按下f12,点击网络,即可在下面看到相关信息,具体方法可以去百度搜索 3. 需要注意的是这俩py文件中我设置为让用户自己输入学号和密码,如果你只是想要自己用于自动登录的话可以把 student_id = input("请输入你的学号:") password = input("请输入你的密码:") 改成 student_id = "你的学号" password = "你的密码" 只需要改中文不要去掉 " "