摘要:
1 1、获取手机系统信息( CPU,厂商名称等) 2 adb shell "cat /system/build.prop | grep "product"" 3 4 2、获取手机系统版本 5 adb shell getprop ro.build.version.release 6 7 3、获取手机系统api版本 8 adb shell getprop ro.build.ver... 阅读全文
摘要:
1 import os 2 import time 3 from selenium import webdriver 4 from selenium.webdriver.support.wait import WebDriverWait 5 from selenium.webdriver.support import expected_conditions as EC 6 from ... 阅读全文
摘要:
1 import xlrd 2 3 4 class OpenExecl: 5 def __init__(self, file_path=None): 6 if file_path == None: 7 self.execl_path = r"H:\***.xls" 8 else: 9 s... 阅读全文
摘要:
连接模拟器 如果连接不上,是因为adb版本号的问题,将SDK的adb.exe复制到模拟器目录覆盖模拟器的adb.exe 启动安卓模拟器(示例:逍遥安卓) 然后连接 adb connect 127.0.0.1:21503 夜月神模拟器 adb connect 127.0.0.1:62001 nox_a 阅读全文
摘要:
1、新建文件夹,用来放之后的项目文件 在部署的项目文件夹里开启一个服务 cmd管理员运行: 默认的访问地址 是 http://localhost:6800/ 如果启动成功,可以看到jobs里面的表格内容即是要部署上去的scrapy服务,现在还没部署 2、项目目录里,cmd输入 scrapyd 执行, 阅读全文
摘要:
如果报错 ImportError: urllib3 v2.0 only supports OpenSSL 1.1.1+ pip install requests==2.29.0 GET请求 1 import requests 2 3 headers = { 4 'User-Agent': 'Mozi 阅读全文
摘要:
多进程 互斥锁 队列 进程池 协程 使用协程下载图片 阅读全文
摘要:
1 # 冒泡排序 2 array = [1, 6, 7, 2, 9, 4] 3 for i in range(len(array) - 1, 1, -1): 4 for j in range(0, i): 5 if array[j] > array[j + 1]: 6 array[j], array[j + 1] = array[j +... 阅读全文
摘要:
1 import json 2 3 import requests 4 import urllib3 5 from pymongo import MongoClient 6 7 urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) 8 9 client = MongoClient('loca... 阅读全文
摘要:
1 import pymysql 2 3 4 def main(): 5 conn = pymysql.connect(host="localhost", port=3306, user="", password="", 6 database="all_ip", charset="utf8") 7 8 c... 阅读全文