[置顶] 猫眼的数字解密

摘要: 话不多说,直接干货走起: 看到了吗?字体加密了。那就找。。定位到加密字体的地方,然后看右边的styles,你是不是看到了与字体相关的名字—font-family,就是他,复制他然后源码里面全局搜索,你会看到如下东西: woff?就是这个字体文件。正则拿下来,接下来是正题 这样就可以得到解码后的数字了 阅读全文

posted @ 2019-11-02 11:04 零度风格 阅读(2716) 评论(1) 推荐(0) 编辑

2019年11月22日

缺口验证码

摘要: # -*-coding:utf-8 -*- from selenium import webdriver from selenium.webdriver.support import expected_conditions as EC from selenium.webdriver.support. 阅读全文

posted @ 2019-11-22 10:14 零度风格 阅读(894) 评论(0) 推荐(0) 编辑

2019年11月6日

python3使用pymysql操作数据库时字符串中含有单双引号(""/'')的问题

摘要: 错误信息 pymysql.err.ProgrammingError: (1064, 'You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for th 阅读全文

posted @ 2019-11-06 14:02 零度风格 阅读(4396) 评论(0) 推荐(0) 编辑

2019年10月30日

Python实现文件内容的查找并替换(只能添加,没办法了)

摘要: import os import re from collections import Counter count = [] path = r"C:\Users\Administrator\PycharmProjects\计算逗号个数\md_info" #文件夹目录 files= os.listdir(path) #得到文件夹下的所有文件名称 s = [] for file in files: # 阅读全文

posted @ 2019-10-30 13:56 零度风格 阅读(861) 评论(0) 推荐(0) 编辑

2019年9月26日

mysql替换字段里面的内容

摘要: UPDATE quanguo_yao set yaopindanweihao=replace(yaopindanweihao,",","") 阅读全文

posted @ 2019-09-26 11:08 零度风格 阅读(537) 评论(0) 推荐(0) 编辑

2019年9月25日

mysql重复id删除

摘要: DELETE FROM huizong_haodaifu WHERE id IN ( SELECT id FROM ( SELECT id,COUNT(*) FROM huizong_haodaifu GROUP BY id HAVING COUNT(*) > 1 ) AS a ) 阅读全文

posted @ 2019-09-25 11:04 零度风格 阅读(755) 评论(0) 推荐(0) 编辑

2019年8月29日

追踪你的女朋友。

摘要: #!/usr/bin/env python # encoding: utf-8 """ @version: v1.0 @author: xag @license: Apache Licence @contact: xinganguo@gmail.com @site: http://www.xingag.top @software: PyCharm @file: meta_picture.py.py 阅读全文

posted @ 2019-08-29 09:30 零度风格 阅读(515) 评论(0) 推荐(0) 编辑

淘宝登录验证

摘要: import re import os import json import requests s = requests.Session() # cookies序列化文件 COOKIES_FILE_PATH = 'taobao_login_cookies.txt' class UsernameLogin: def __init__(self, username, ua, TPL... 阅读全文

posted @ 2019-08-29 08:37 零度风格 阅读(13870) 评论(2) 推荐(0) 编辑

2019年8月24日

jadx-gui-1.0.0.jar怎么运行?

摘要: java -jar jadx-gui-0.7.1.jar 阅读全文

posted @ 2019-08-24 11:24 零度风格 阅读(827) 评论(0) 推荐(0) 编辑

2019年8月20日

Python实现一个进度条

摘要: from time import sleep def progress(percent=0, width=30): left = width * percent // 100 right = width - left print('\r[', '#' * left, ' ' * right, ']',f' {percent:.0f}%',sep='', end='', flush=True) fo 阅读全文

posted @ 2019-08-20 08:40 零度风格 阅读(1353) 评论(0) 推荐(0) 编辑

导航