
python
SnrtIevg
刷刷题吧
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
python 扒取小说2
网络爬虫爬取小说原创 2017-02-07 16:38:49 · 872 阅读 · 0 评论 -
urllib综述
官方文档: https://docs.python.org/3/library/urllib.html 从官方文档中我们可以看出urllib模块使用作处理url。 有四大模块: urllib.request: 一个url请求模块。 urllib.error: 抛出上一个模块的异常。 urllib.parse: url的转换。 urllib.robotparse: robot原创 2018-01-31 14:07:22 · 256 阅读 · 0 评论 -
PAT试题1001题
PAT 1001题 卡拉兹(Callatz)猜想原创 2017-04-23 22:38:22 · 896 阅读 · 0 评论 -
OpenCV python 学习笔记(九)
OpenCV for Python 学习笔记(九)原创 2017-03-26 10:28:12 · 621 阅读 · 0 评论 -
OpenCV python 学习笔记(八)
OpenCV for python 学习笔记(八) 图片二值化原创 2017-03-21 20:49:14 · 575 阅读 · 0 评论 -
OpenCV Python学习笔记(七)
OpenCV for Pyhton 学习笔记(七)原创 2017-03-06 21:00:21 · 904 阅读 · 0 评论 -
python 扒取大主宰
import urllib.request import re def getHtml(url): page = urllib.request.urlopen(url) html = page.read() return html def getTxt(html): html_txt = str(html, encoding="utf-8") star原创 2017-02-03 21:19:07 · 1098 阅读 · 0 评论 -
OpenCV python学习笔记(六)
OpenCV python学习笔记(五)原创 2017-02-20 17:55:51 · 640 阅读 · 0 评论 -
OpenCV python学习笔记(五)
OpenCV for python学习笔记原创 2017-02-20 18:01:07 · 600 阅读 · 0 评论 -
OpenCV python 学习笔记(四)
OpenCV for python 学习笔记(四)原创 2017-02-19 21:43:24 · 908 阅读 · 0 评论 -
OpenCV python 学习笔记(三)
OpenCV python 学习笔记(三)原创 2017-02-18 13:40:57 · 939 阅读 · 0 评论 -
OpenCV python学习笔记(二)
OpenCV python 学习笔记(二)原创 2017-02-18 09:57:24 · 1496 阅读 · 0 评论 -
OpenCV python 学习笔记(一)
opencv for python 学习笔记(一)原创 2017-02-16 17:28:16 · 603 阅读 · 0 评论 -
网络爬虫爬取小说3
网络爬虫爬取小说3原创 2017-02-07 16:47:19 · 5057 阅读 · 0 评论 -
urllib.request 学习
这个urllib.request模块定义了一些函数和类,这些函数和类有助于在复杂的世界中打开URL(主要是HTTP) - 基本和摘要式的认证,重定向,cookies等等 urllib.request: 简介: 定义了一些函数和类,有助于在复杂的世界中打开URL,例如:基本和简要身份验证、重定向、cookie等等。 常用函数: urlopen(url,data = None,[ timeou原创 2018-01-09 19:39:10 · 476 阅读 · 0 评论