上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 95 下一页
摘要: 一、官方pip源 不使用-i参数指定,默认就是官方源 二、国内pip源 豆瓣:http://pypi.douban.com/simple/ 阿里:http://mirrors.aliyun.com/pypi/simple/ 清华:https://pypi.tuna.tsinghua.edu.cn/s 阅读全文
posted @ 2024-01-06 19:15 悟透 阅读(6189) 评论(0) 推荐(0)
摘要: 前言全局说明 python flask get请求接收参数 一、安装flask模块 官方源: pip3 install flask 国内源: pip3 install flask -i http://pypi.douban.com/simple/ --trusted-host pypi.douban 阅读全文
posted @ 2024-01-06 18:40 悟透 阅读(1032) 评论(0) 推荐(0)
摘要: 前言全局说明 python 提供的web服务 方式一、运行 Flask 服务 使用python 自带的web服务器 python3 index.py runserver 0.0.0.0:5000 或 python3 index.py runserver index.py 是你写好,要运行的 flas 阅读全文
posted @ 2024-01-06 17:19 悟透 阅读(189) 评论(0) 推荐(0)
摘要: Python flask 路由是什么,怎么理解? 答: 当用户输入 网址URL 时,会向服务器请求, 服务器接收到的链接,用哪个函数处理, 连接和函数绑定叫路由 @app.route('/login') def login(): return redirect('https://passport.b 阅读全文
posted @ 2024-01-06 16:58 悟透 阅读(22) 评论(0) 推荐(0)
摘要: 前言全局说明 Python flask redirect调用其他函数或url连接 一、安装flask模块 官方源: pip3 install flask 国内源: pip3 install flask==2.3.2 -i http://pypi.douban.com/simple/ --truste 阅读全文
posted @ 2024-01-06 16:52 悟透 阅读(360) 评论(0) 推荐(0)
摘要: 前言全局说明 Python flask 网页版执行shell命令并返回结果 源码下载:https://files.cnblogs.com/files/wutou/py_flask_cmd.zip (7.21KB) 一、需要安装的库 pip3 install flask==2.3.2 -i http: 阅读全文
posted @ 2024-01-05 18:01 悟透 阅读(302) 评论(0) 推荐(0)
摘要: 前言全局说明 settings 是对 Android 里设置进行 增、删、改、查 一、帮助 adb shell settings Settings provider (settings) commands: help Print this help text. get [--user <USER_I 阅读全文
posted @ 2024-01-04 13:02 悟透 阅读(1293) 评论(0) 推荐(0)
摘要: 前言全局说明 mumu模拟器版本:MuMuNG-setup-V3.6.4.2333-1110175123 官方解决方法:https://mumu.163.com/help/20240305/35050_1141428.html 将10.0.2.2这段内容填入“对以下网址不使用代理”一栏,保存即可。 阅读全文
posted @ 2024-01-04 11:47 悟透 阅读(1203) 评论(0) 推荐(0)
摘要: adb shell am broadcast系统预定义的广播(文字版) 实例 Action Data URI MIME类型 Category 说明 1 android.intent.action.BOOT_COMPLETED 无 无 无 模拟发送开机广播。 2 android.intent.acti 阅读全文
posted @ 2024-01-02 11:00 悟透 阅读(1312) 评论(0) 推荐(0)
摘要: 前言全局说明 adb 命令是 Android 官方提供,调试 Android 系统的工具。 adb 全称为 Android Debug Bridge(Android 调试桥),是 Android SDK 中提供的用于管理 Android 模拟器或真机的工具。 adb 是一种功能强大的命令行工具,可让 阅读全文
posted @ 2023-12-27 15:09 悟透 阅读(29183) 评论(2) 推荐(1)
上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 95 下一页