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