会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
守护式等待
Powered by
博客园
博客园
|
首页
|
新随笔
|
联系
|
订阅
|
管理
上一页
1
···
37
38
39
40
41
42
43
44
45
···
68
下一页
2019年8月6日
cookiecutter
摘要: 1.安装cookiecutter pip3 install cookiecutter 2.设置模板 https://github.com/cookiecutter/cookiecutter 搜索需要的模板 cookiecutter https://github.com/pydanny/cookiec
阅读全文
posted @ 2019-08-06 16:49 守护式等待
阅读(216)
评论(0)
推荐(0)
编辑
pycharm 远程连接
摘要: 1.连接远程项目 注意:Visible only for this project 这个选项如果勾选,这个配置只使用这个项目,在其他项目是找不到的,后面ssh 远程配置python3.6环境也会找不到这个配置,个人推荐不要勾选,如果服务器有多套环境可以使用 2.连接远程服务器
阅读全文
posted @ 2019-08-06 15:03 守护式等待
阅读(98)
评论(0)
推荐(0)
编辑
2019年8月5日
aiohttp_spider
摘要: aiohttp_spider_def: import asyncio import re import aiohttp import aiomysql from pyquery import PyQuery from lxml import etree start_url = 'http://new
阅读全文
posted @ 2019-08-05 16:09 守护式等待
阅读(61)
评论(0)
推荐(0)
编辑
mysql autocommit
摘要: 当autocommit为开启状态时,即使没有手动start transaction开启事务,mysql默认也会将用户的操作当做事务即时提交(自动帮我们 db.commit()) autocommit开启时,mysql的插入效率会提高 1.autocmmit=False import pymysql
阅读全文
posted @ 2019-08-05 14:58 守护式等待
阅读(129)
评论(0)
推荐(0)
编辑
ADB端口5037被占用 导致adb 停止工作
摘要: 解决ADB端口占用问题 方式一 5037为adb默认端口,若5037端口被占用,打开cmd,输入以下指令, 1.查看占用端口的进程PID netstat -aon|findstr 5037 2. 通过PID查看所有进程 tasklist /fi "PID eq 3704" 3. 杀死占用端口的进程
阅读全文
posted @ 2019-08-05 14:45 守护式等待
阅读(320)
评论(0)
推荐(0)
编辑
2019年8月2日
aiomysql
只有注册用户登录后才能阅读该文。
阅读全文
posted @ 2019-08-02 16:08 守护式等待
阅读(113)
评论(0)
推荐(0)
编辑
2019年8月1日
headers
摘要: headers: # Windows 10 IE 11.0 headers = {"User-Agent" : "Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko"} # Chrome 59.9 headers
阅读全文
posted @ 2019-08-01 16:56 守护式等待
阅读(291)
评论(0)
推荐(0)
编辑
aiohttp
只有注册用户登录后才能阅读该文。
阅读全文
posted @ 2019-08-01 16:44 守护式等待
阅读(143)
评论(0)
推荐(0)
编辑
2019年7月24日
thread_asyncio
摘要: thread_asyncio # 使用多线程:在携程中集成阻塞io import asyncio from concurrent.futures import ThreadPoolExecutor import socket from urllib.parse import urlparse def
阅读全文
posted @ 2019-07-24 13:50 守护式等待
阅读(46)
评论(0)
推荐(0)
编辑
socket服务
摘要: 1.socket_server import socket import threading server = socket.socket(socket.AF_INET, socket.SOCK_STREAM) server.bind(('0.0.0.0', 8000)) server.listen
阅读全文
posted @ 2019-07-24 13:48 守护式等待
阅读(112)
评论(0)
推荐(0)
编辑
上一页
1
···
37
38
39
40
41
42
43
44
45
···
68
下一页