
Python
ithouse
这个作者很懒,什么都没留下…
展开
-
Python3控制鼠标点击
到Python的官网去下载并安装pip,下载地址是:https://pypi.python.org/pypi/pip#downloads 解压再解压,直到看到有setup.py文件了。 cmd到setup.py文件所在的目录,执行: python setup.py install 在Windows环境变量添加D:\software\work\python3\Scripts 安装P原创 2015-12-29 23:39:10 · 13618 阅读 · 0 评论 -
Python3爬取图片
#coding=utf-8 import urllib.request import redef getHtml(url): page = urllib.request.urlopen(url) html = page.read() return htmldef getImg(html): html = html.decode('utf-8') reg = r转载 2015-12-23 15:12:10 · 2077 阅读 · 0 评论