×
请登录
账号
密码
登录 Use it
随笔
python
分享
标签
登录
注册
自动识别网站编码
res=requests.get(url,timeout=10) code = res.apparent_encoding # 获取url对应的编码格式 res.encoding = code content=res.text
不写BUG
python
1年前
1110
正则
#匹配中间 ‘(?<=…)’ 前向界定 括号中 ’…’ 代表你希望匹配的字符串的前面应该出现的字符串。 ‘(?=…)’ 后向界定 (?<=id="decrement_\d+_)\d+ re.findall('(?<=<im...
不写BUG
python
1年前
1357
python操作数据库
pymysql.connect(host='127.0.0.1',user='root',password='123456',database='test',charset='utf8') neicur = nei.cursor() neicur...
不写BUG
python
1年前
1072
数据库连接池
config = { 'host': '127.0.0.1', 'port': 3306, 'database': 'test', 'user': 'root', 'password': '123456', 'charset': 'utf8' }...
不写BUG
python
1年前
864
python 解决跨域
from flask_cors import * app = Flask(__name__) CORS(app, supports_credentials=True) api = Api(app)
不写BUG
python
1年前
964
python 打包
pyinstaller -p d:\software\python\lib;d:\software\python\lib\site-packages -F pyinstaller -p e:\software\python\lib;F:\Pyth...
不写BUG
python
1年前
936
python 写入excel
import xlwt # 创建一个workbook 设置编码 workbook = xlwt.Workbook(encoding = 'utf-8') # 创建一个worksheet worksheet = workbook.add_sheet...
不写BUG
python
1年前
897
双系统启动菜单
bcdedit /set {bootmgr} displaybootmenu yes
不写BUG
分享
1年前
855
查看端口占用
netstat -ano|findstr 6 00 tasklist|findstr 19848
不写BUG
分享
1年前
898
黑苹果需要修改VM代码
smc.version = "0" cpuid.0.eax = "0000:0000:0000:0000:0000:0000:0000:1011" cpuid.0.ebx = "0111:0101:0110:1110:0110:0101:0100...
不写BUG
随笔
1年前
857
1
2
热门文章
1.
正则
2.
自动识别网站编码
3.
python操作数据库
4.
python 解决跨域
5.
python 打包
6.
查看端口占用
最新发布
1.
自动识别网站编码
2.
正则
3.
python操作数据库
4.
数据库连接池
5.
python 解决跨域
6.
python 打包