随笔分类 - Python
Python
摘要:print同时需要设置flush=True来动态显示
阅读全文
摘要:下载pyinstaller pyinstaller 改变图标 pyinstaller -F --icon=my.ico xxx.py 采用命令行操作的办法 在cmd命令行中,输入代码: pip install pyinstaller 或者采用更新、升级的方法: pip install --upgra
阅读全文
摘要:在开头加入: 大量元素情况 可以采用set_printoptions(threshold='nan')
阅读全文
摘要:import subprocess import base64 thunder_path = 'E:\Thunder\Program\Thunder.exe' def Url2Thunder(url): url = 'AA' + url + 'ZZ' url = base64.b64encode(url.encode('ascii')) url = b'thunder...
阅读全文
摘要:# -*- coding: utf-8 -*- import requests import js2xml from lxml import etree headers = { # 这边cookie替换成你的cookie 'Cookie':'9b', 'User-Agent': 'Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IM...
阅读全文
摘要:Package Control Anaconda SublimeREPL 支持input 主题:https://packagecontrol.io/packages/Theme%20-%20Soda 添加ctags实现代码跳转 方法跳转,跳转到你方法 Python PEP8 Autoformat 一
阅读全文
摘要:X-Forwarded-For(XFF)是用来识别通过HTTP代理或负载均衡方式连接到Web服务器的客户端最原始的IP地址的HTTP请求头字段。 Squid 缓存代理服务器的开发人员最早引入了这一HTTP头字段,并由IETF在Forwarded-For HTTP头字段标准化草案中正式提出。这一HTT
阅读全文
摘要:shell里执行:sudo update-alternatives --install /usr/bin/python python /usr/local/lib/python2.7 100sudo update-alternatives --install /usr/bin/python pyth
阅读全文
摘要:print (object .__dict__) print (dir(object))
阅读全文
摘要:import requests,json,re,winsound,time class Stock(object): def __init__(self): self.province_dict={value:key for key,value in { 1:'北京',2:'上海',3:'天津',4:'重庆',5:'河北',6:'山西',7:'河...
阅读全文
摘要:import http.client import time import os def get_webservertime(host): conn=http.client.HTTPConnection(host) conn.request("GET", "/") r=conn.getresponse() #r.getheaders() #获取所有的http头 ...
阅读全文
摘要:Python2模拟登陆获取cookie 直接从本地读取cookie模拟登陆 Python3版本
阅读全文
摘要:cookielib模块的主要作用是提供可存储cookie的对象,以便于与urllib2模块配合使用来访问Internet资源。Cookielib模块非常强大,我们可以利用本模块的CookieJar类的对象来捕获cookie并在后续连接请求时重新发送,比如可以实现模拟登录功能。该模块主要的对象有Coo
阅读全文
摘要:Python设置Headers 这样,我们设置了一个headers,在构建request时传入,在请求时,就加入了headers传送,服务器若识别了是浏览器发来的请求,就会得到响应。 另外,我们还有对付”反盗链”的方式,对付防盗链,服务器会识别headers中的referer是不是它自己,如果不是,
阅读全文
摘要:Python爬虫之Urllib库的基本使用 其实上面的urlopen参数可以传入一个request请求,它其实就是一个Request类的实例,构造时需要传入Url,Data等等的内容。比如上面的两行代码,我们可以这么改写 运行结果是完全一样的,只不过中间多了一个request对象,推荐大家这么写,因
阅读全文