- 博客(6)
- 资源 (3)
- 收藏
- 关注
原创 BeautifulSoup笔记
BeautifulSoup笔记from bs4 import BeautifulSoup html = '....' soup = BeautifulSoup(html, 'lxml')格式化输出print soup.prettify()Tag类型输出html中的标签,它查找的是在所有内容中的第一个符合要求的标签soup.head soup.input1. 属性a) nameprint sou
2017-01-21 22:34:57 712
原创 python类学习笔记
构造函数 def __init__(self)内部变量访问权限 __var 不允许访问 __var__ 允许访问 _var 尽量不要访问动态绑定方法 假如 class Stu(object): pass 为实例绑定方法 from types import MethodType s = S
2017-01-21 22:25:12 328
原创 nginx笔记
内核参数优化修改/etc/sysctl.conf文件,然后执行sysctl -p,使修改生效net.ipv4.tcp_tw_reuse = net.ipv4.tcp_keepalive_time = 600 net.ipv4.tcp_fin_timeout = 30 net.ipv4.tcp_max_tw_buckets = 5000 net.ipv4.ip_local_port_range =
2017-01-21 22:20:41 349
原创 python requests笔记
导入import requests请求类型requests.request(method, url, **kwargs) • method – 请求的方法 • url – 请求的url • params – url参数,字典或字节格式 • data – 请求体中的数据,字典或字节或file-like对象 • json – 请求体中的数据,json格式 • heade
2017-01-21 21:59:56 963
原创 清空mysql命令历史记录
先退出mysql,然后用任意一种方式清空 $HOME/.mysql_history文件中的内容. 例如:echo “” > $HOME/.mysql_history如果在没有退出mysql的情况下,清空完mysql_history文件,在退出mysql时,mysql会把缓存中的历史记录再写入mysql_history文件.这时你会发现mysql_history文件中一行也没少.
2017-01-21 21:50:42 6937
原创 使用easy_install安装和卸载python扩展包
使用easy_install安装扩展包、卸载扩展包 error: can't create or remove files in install directory Please make the appropriate changes for your system and try again.
2017-01-21 21:44:57 15414
django+celery+redis+supervisor教程代码
2017-03-07
廖雪峰python2.7教程-单机版-2016年10月01日
2016-10-01
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人