摘要:
###爬取图片路径规则并保存本地 import re import requests temp = 'http://wufazhuce.com/one/' count = 1 for i in range(14, 1580): url = temp + str(i) page = requests. 阅读全文
摘要:
###上下滑动 # -*- encoding=utf8 -*- __author__ = "yuanshi" from airtest.core.api import * from airtest.cli.parser import cli_setup from poco.drivers.andro 阅读全文
摘要:
###3DES 加密解密 import pyDes import base64 from Crypto.Cipher import DES3 import codecs import base64 class EncryptDate: def __init__(self, key): self.ke 阅读全文
摘要:
shell编程 1 shell编程是个啥 Shell 是一个命令行解释器,它为用户提供了一个向 Linux 内核发送请求以便运行程序的系统级程序 画图说明 2 shell编程打印hello world 2.1 代码部分 #!/bin/bash echo 'hello world' 代码解释: 1.# 阅读全文
摘要:
网址:https://passport.didichuxing.com/#/ ###1.分析js 查找wsgsig并打断点 ###2.定位生成 wsgsig 位置 ###3.拆解分析各个函数 d.C5T(38) + o(r(new Uint8Array(new Uint32Array([Math.f 阅读全文
摘要:
###python读写操作 SYSTEM_STATUS = True if "windows" in platform.platform().lower() else False # 操作系统 if SYSTEM_STATUS: txt_file_name = os.getcwd() + '\spu 阅读全文
摘要:
抖音与头条登录协议方法相同 从以下图片可以看出 account: password: 都加过密 ###1.在搜索框中输入password ###2.查找password加密并在此处打断点 进入之后跳到此处,继续一步一步往下走 ###3.运行到此处时注意参数变化 e = this.__encryptP 阅读全文
摘要:
#coding=utf-8 import sys import datetime sys.path.append("./") from pymongo import MongoClient #建立MongoDB数据库连接 client = MongoClient('数据库的IP地址', 端口号) # 阅读全文
摘要:
skuid对应普通发货价 # coding: utf-8 import requests import time import json value_list=[{ "propertyId": 4665, "name": "尺码", "value": "35.5", "propertyValueId 阅读全文
摘要:
链接:https://www.jianshu.com/p/6d6e4f745c27 #前言 从Python3.2开始,标准库为我们提供了 concurrent.futures 模块,它提供了 ThreadPoolExecutor (线程池)和ProcessPoolExecutor (进程池)两个类。 阅读全文