会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
莫贞俊晗
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
8
9
10
11
12
13
14
15
16
···
20
下一页
2020年11月18日
python 爬取图片路径规则并保存本地
摘要: ###爬取图片路径规则并保存本地 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 莫贞俊晗
阅读(677)
评论(0)
推荐(0)
2020年11月12日
Airtest 滑动
摘要: ###上下滑动 # -*- 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 莫贞俊晗
阅读(421)
评论(0)
推荐(0)
2020年11月6日
Python 3DES 加密解密
摘要: ###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 莫贞俊晗
阅读(3792)
评论(0)
推荐(0)
2020年11月1日
shell 基础编程
摘要: shell编程 1 shell编程是个啥 Shell 是一个命令行解释器,它为用户提供了一个向 Linux 内核发送请求以便运行程序的系统级程序 画图说明 2 shell编程打印hello world 2.1 代码部分 #!/bin/bash echo 'hello world' 代码解释: 1.#
阅读全文
posted @ 2020-11-01 22:37 莫贞俊晗
阅读(135)
评论(0)
推荐(0)
2020年10月27日
python之JS逆向—破解DIDI外卖wsgsig
摘要: 网址: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 莫贞俊晗
阅读(2966)
评论(2)
推荐(2)
2020年10月26日
python 常用读写操作
摘要: ###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 莫贞俊晗
阅读(125)
评论(0)
推荐(0)
2020年10月16日
python之JS逆向—破解头条抖音登录协议
摘要: 抖音与头条登录协议方法相同 从以下图片可以看出 account: password: 都加过密 ###1.在搜索框中输入password ###2.查找password加密并在此处打断点 进入之后跳到此处,继续一步一步往下走 ###3.运行到此处时注意参数变化 e = this.__encryptP
阅读全文
posted @ 2020-10-16 15:52 莫贞俊晗
阅读(2820)
评论(1)
推荐(1)
2020年10月11日
python 连接 mongodb 获取部分字段数据并换行写入txt文件
摘要: #coding=utf-8 import sys import datetime sys.path.append("./") from pymongo import MongoClient #建立MongoDB数据库连接 client = MongoClient('数据库的IP地址', 端口号) #
阅读全文
posted @ 2020-10-11 00:35 莫贞俊晗
阅读(444)
评论(0)
推荐(0)
2020年9月30日
列表套字典三者匹配对应关系
摘要: 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 莫贞俊晗
阅读(272)
评论(0)
推荐(0)
2020年9月29日
python线程池 ThreadPoolExecutor 的用法及实战
摘要: 链接:https://www.jianshu.com/p/6d6e4f745c27 #前言 从Python3.2开始,标准库为我们提供了 concurrent.futures 模块,它提供了 ThreadPoolExecutor (线程池)和ProcessPoolExecutor (进程池)两个类。
阅读全文
posted @ 2020-09-29 19:12 莫贞俊晗
阅读(6702)
评论(0)
推荐(1)
上一页
1
···
8
9
10
11
12
13
14
15
16
···
20
下一页
公告