mirror of
https://github.com/0-8-4/miui-auto-tasks.git
synced 2024-11-16 04:35:51 +00:00
Merge pull request #11 from 0-8-4/feat-system-info
This commit is contained in:
commit
c1a79a58ba
12
README.md
12
README.md
@ -85,20 +85,24 @@
|
||||
|
||||
如果你在使用过程中发现任何问题,可以 [提交 issue](https://github.com/0-8-4/miui-auto-tasks/issues/new) 或自行 fork 修改后提交 pull request。
|
||||
|
||||
如果你要提交 pull request,请确保你的代码风格和项目已有的代码保持一致,遵循 [PEP 8](https://www.python.org/dev/peps/pep-0008/),变量命名清晰,有适当的注释。
|
||||
如果你要提交 pull request,请确保你的代码风格和项目已有的代码保持一致,遵循 [PEP 8](https://www.python.org/dev/peps/pep-0008) ,变量命名清晰,有适当的注释。
|
||||
|
||||
==========
|
||||
|
||||
#### **更新说明**:
|
||||
V1.2.1 :
|
||||
|
||||
v1.2.2 :
|
||||
- 增加 输出系统信息到控制台
|
||||
|
||||
v1.2.1 :
|
||||
- 默认关闭“社区拔萝卜签到”功能
|
||||
- 根据小米社区规则,非正常渠道签到**一经发现可能会导致账户封禁**
|
||||
- 如您愿意承担一切可能的后果,可根据脚本 Line397 下方的说明开启功能
|
||||
|
||||
V1.2.0 :
|
||||
v1.2.0 :
|
||||
- 增加“社区拔萝卜签到”功能
|
||||
|
||||
V1.1.0 :
|
||||
v1.1.0 :
|
||||
- 增加领取延迟保证成功率
|
||||
- 增加完成“发布1篇帖子”活跃分任务功能
|
||||
|
||||
|
@ -2,6 +2,7 @@
|
||||
import requests
|
||||
import time
|
||||
import json
|
||||
import system_info
|
||||
|
||||
from urllib import request
|
||||
from http import cookiejar
|
||||
@ -387,6 +388,9 @@ def milogin():
|
||||
|
||||
if __name__ == "__main__":
|
||||
wLog("miuitask v1.2.1")
|
||||
wLog('----------系统信息-开始-------------')
|
||||
system_info.system_info()
|
||||
wLog('----------系统信息-结束-------------')
|
||||
wLog("项目地址:https://github.com/0-8-4/miui-auto-tasks")
|
||||
wLog("欢迎star,感谢東雲研究所中的大佬")
|
||||
wLog("开始登录小米账号")
|
||||
@ -397,7 +401,7 @@ if __name__ == "__main__":
|
||||
# vipsignin()
|
||||
# 警告:根据小米社区规则,非正常渠道签到可能会导致账户封禁
|
||||
# 本脚本虽是模拟您的操作向社区发送请求,但仍不能保证绝对安全
|
||||
# 如果您愿意自行承担一切风险,删去Line396和397的“#”即可
|
||||
# 如果您愿意自行承担一切风险,删去Line400和401"#"即可
|
||||
startTask("10106263")
|
||||
wLog("正在完成BUG反馈任务")
|
||||
newAnnounce("7")
|
||||
|
23
system_info.py
Normal file
23
system_info.py
Normal file
@ -0,0 +1,23 @@
|
||||
import platform
|
||||
import miuitask
|
||||
from urllib.request import getproxies
|
||||
|
||||
|
||||
def show_info(tip, info):
|
||||
return "{}: {}".format(tip, info)
|
||||
|
||||
|
||||
def system_info():
|
||||
miuitask.wLog(show_info("系统及版本信息", platform.platform()))
|
||||
miuitask.wLog(show_info('系统版本号', platform.version()))
|
||||
miuitask.wLog(show_info('系统名称', platform.system()))
|
||||
miuitask.wLog(show_info('系统位数', platform.architecture()))
|
||||
miuitask.wLog(show_info('计算机类型', platform.machine()))
|
||||
miuitask.wLog(show_info('处理器类型', platform.processor()))
|
||||
miuitask.wLog(show_info('Python版本', str(platform.python_version()) + ' ' + str(platform.python_build())))
|
||||
if getproxies():
|
||||
miuitask.wLog(show_info('系统代理', getproxies()))
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
system_info()
|
Loading…
Reference in New Issue
Block a user