爬虫入门学习笔记 encode, decode

1. Install library

install requests and BeautifulSoup libraries 
python3 -m pip install requests

python3 -m pip install BeautifulSoup4

2. Copy libraries folders from local installed path to Pycharm's env site-packages

3.Import libraries into python script

import requests

from bs4 import BeautifulSoup

url='http://xxxxx'
res=requests.get(url)
content=res.text
soup=BeautifulSoup(content,'html.parser')
all_ccy=soup.find_all(class_='Currency')

4. Get USD and Pound currency from website and display

Problem: the currency is displayed like this : £8.87

Solution: first to verify the response encoding

print(res.encoding)

-->ISO-8859-1

try to decode with utf-8

change  content=res.text  to  content=res.text.encode("ISO-8859-1").decode('utf-8')

the final output  : £8.87

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值