×
请登录
账号
密码
登录 Use it
随笔
python
分享
标签
登录
注册
自动识别网站编码
res=requests.get(url,timeout=10) code = res.apparent_encoding # 获取url对应的编码格式 res.encoding = code content=res.text
不写BUG
python
1年前
1113
正则
#匹配中间 ‘(?<=…)’ 前向界定 括号中 ’…’ 代表你希望匹配的字符串的前面应该出现的字符串。 ‘(?=…)’ 后向界定 (?<=id="decrement_\d+_)\d+ re.findall('(?<=<im...
不写BUG
python
1年前
1360
python操作数据库
pymysql.connect(host='127.0.0.1',user='root',password='123456',database='test',charset='utf8') neicur = nei.cursor() neicur...
不写BUG
python
1年前
1075
数据库连接池
config = { 'host': '127.0.0.1', 'port': 3306, 'database': 'test', 'user': 'root', 'password': '123456', 'charset': 'utf8' }...
不写BUG
python
1年前
868
python 解决跨域
from flask_cors import * app = Flask(__name__) CORS(app, supports_credentials=True) api = Api(app)
不写BUG
python
1年前
967
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年前
939
python 写入excel
import xlwt # 创建一个workbook 设置编码 workbook = xlwt.Workbook(encoding = 'utf-8') # 创建一个worksheet worksheet = workbook.add_sheet...
不写BUG
python
1年前
900
1
热门文章
1.
正则
2.
自动识别网站编码
3.
python操作数据库
4.
python 解决跨域
5.
python 打包
6.
查看端口占用
最新发布
1.
自动识别网站编码
2.
正则
3.
python操作数据库
4.
数据库连接池
5.
python 解决跨域
6.
python 打包