资源简介
python3.4爬取网络图片,然后写入文件的示例小程序
代码片段和文件信息
#! /usr/bin/python
# -*- coding: utf-8 -*-
import urllib.requesturllib.error
try:
#抓取网络资源
resp=urllib.request.urlopen(‘http://su.bdimg.com/static/superplus/img/logo_white_ee663702.png‘)
html=resp.read()
- 上一篇:python实现可视域算法
- 下一篇:python实现VRPTW求解禁忌搜索算法
评论
共有 条评论