>>> import os>>> os.path.exists('d:/assist')True>>> os.path.exist...
一个HTML5播放器
<head> <link href="http://vjs.zencdn.net/5.8.8/video-js.css" rel="styl...
Python中urllib2总结
使用Python访问网页主要有三种方式: urllib, urllib2, httpliburllib比较简单,功能相对也比较弱,httplib简单强大,但好像不支持session1. 最简单的页面访...
设置 Sublime Text 的 Python 开发环境
最近,当我主要使用Python开发环境编辑的时候,我开始越来越多地用到Sublinme Text 2.这篇文章主要说明了能让Python的编程者使用更方便的一些设置和调整。 为何选择Sublim...
python 将反斜杠u \u字符串转为unicode/utf8
搜了一下,比较简单的方式是使用jsondef to_chinese(unicode_str): x = json.load...
python对SSL(V1,V2,V3)的支持-https
通过 curl -1(2,3) url 检测对应哪个ssl版本V1 #custom HTTPS opener, banner's ...
https(ssl)连接之python实现
import urllib2urllib2.urlopen('https://xxxx.com')本来这段代码很简单的,就是请求一个https的连接,可是报以下错误:?1ur...
python https页面读取
#custom HTTPS opener, banner's oracle 10g server supports&nbs...
使用python程序暴力破解乌云密码(含验证码识别)
需要预安装如下程序1、pytesseract (可以pip install pytesseract安装)2、python imaging library (pil)3、tesseract-ocr原理:...
批量数列生成
#coding:utf8 for i in range(1,50000,1): if len(str(i))<10: i='0'*(10-...