上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 123 下一页
摘要: requests.post('https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=你的机器人的key', headers={'Content-Type': 'application/json'},data=json.dumps({'msgtype 阅读全文
posted @ 2020-11-03 15:39 公众号python学习开发 阅读(545) 评论(0) 推荐(0) 编辑
摘要: 首先创建的工程的时候 使用pycharm就没事,也就是推荐python环境是virtualenv 缺少依赖,安装依赖就好了 brew install cmake brew install automake brew install autoconf brew install libtool 再次运行 阅读全文
posted @ 2020-11-03 11:07 公众号python学习开发 阅读(258) 评论(0) 推荐(0) 编辑
摘要: from kivy.app import App from kivy.uix.button import Button from kivy.uix.boxlayout import BoxLayout from kivy.uix.label import Label from kivy.uix.te 阅读全文
posted @ 2020-11-03 02:18 公众号python学习开发 阅读(239) 评论(0) 推荐(0) 编辑
摘要: var current_application = Java.use('android.app.ActivityThread').currentApplication(); var context = current_application.getApplicationContext(); Andr 阅读全文
posted @ 2020-11-02 21:35 公众号python学习开发 阅读(3495) 评论(0) 推荐(0) 编辑
摘要: 安装环境 brew install ffmpeg 脚本 # -*- coding: utf-8 -*- # @时间 : 2020/10/30 11:16 下午 # @作者 : 陈祥安 # @文件名 : dlmp4.py # @公众号: Python学习开发 from concurrent.futur 阅读全文
posted @ 2020-10-31 01:30 公众号python学习开发 阅读(2296) 评论(0) 推荐(0) 编辑
摘要: 查找jni.h 可能搜到很多,以ndk目录下的为主 导入jni.h File->Load File->Parse C Header File ida加载jni.h 出现如下错误: Error /Users/chennan/soft/app/app-debug/jni.h,27: Can't open 阅读全文
posted @ 2020-10-28 22:12 公众号python学习开发 阅读(812) 评论(0) 推荐(0) 编辑
摘要: python3.6 -m pip install frida==12.8.0 python3.6 -m pip install frida-tools==5.3.0 python3.6 -m pip install objection==1.8.4 然后安装frida-server12.8.0 阅读全文
posted @ 2020-10-28 21:04 公众号python学习开发 阅读(835) 评论(0) 推荐(0) 编辑
摘要: def next_requests(self): body ={"count":24,"ff":"share","need":False,"sourceFrom":1,"request":1,"fontId":153} headers = { 'User-Agent': 'Mozilla/5.0 ( 阅读全文
posted @ 2020-10-28 16:33 公众号python学习开发 阅读(150) 评论(0) 推荐(0) 编辑
摘要: demo.py x = 123 def hello(): t = (1,2) class User: pass run.py import sys import demo import types import marshal import dis def show_code(code, inden 阅读全文
posted @ 2020-10-22 23:39 公众号python学习开发 阅读(826) 评论(0) 推荐(0) 编辑
摘要: 1.断言 Python 的断言语句是一种调试辅助功能,不是用来处理运行时错误的机制。 assert 在条件为 False 的时候触发,后面的内容是报错信息。 import sys assert sys.version_info >= (3, 7), "请在Python3.7及以上环境执行" 如果这个 阅读全文
posted @ 2020-10-22 00:35 公众号python学习开发 阅读(225) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 123 下一页