Python学习52 爬虫学习(图片和有道翻译)

如何查找答案:

1.all属性是这个模块可供调用的属性:

>>> timeit.__all__
['Timer', 'timeit', 'repeat', 'default_timer']
>>> 
file属性是源代码位置

>>> timeit.__file__
'C:\\Python36\\lib\\timeit.py'
>>> 
print(timeit.__doc__)打开介绍文档

网络爬虫:urllib包

1.URL:网页地址 

>>> import urllib.request
>>> response = urllib.request.urlopen("http://www.fishc.com")
>>> html = response.read()
>>> print(html)
>>> html = html.decode("utf-8")
>>> print(html)
打印网页源码

2.F12查看审查元素,gson轻量级的数据交换格式

3.实现有道翻译的爬取;

import urllib.request
import urllib.parse
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值