python爬网页存入本地文件

自己写的小代码,对齐上还需要改进

import requests
import os
from bs4 import BeautifulSoup
import bs4

def getHTMLText(url):
    try:
        kv = {'user-agent':'Mozilla/5.0'}
        r = requests.get(url,headers = kv)
        r.raise_for_status()
        r.encoding = r.apparent_encoding
        return r.text
    except:
        return ""

def fillUnivList(ulist,html):
    soup = BeautifulSoup(html,'html.parser')
    for tr in soup.find('tbody').children:
        if isinstance(tr,bs4.element.Tag):
            tds = tr('td')
            ulist.append([tds[0].string,tds[1].string,tds[3].string])

def printUnivList(ulist,num):
    path = '路径,你懂得'
    try:
        if os.path.exists(path):
            with open(path,'wb') as f:
                temp = '{:^10}\t{:^6}\t{:^10}'.format('排名','学校名称','总分',chr(12288))+"\r\n"
                f.write(temp.encode('utf-8'))
                for i in range(num):
                    u = ulist[i]
                    temp = '{:^10}\t{:^6}\t{:^10}'.format(u[0],u[1],u[2],chr(12288))+"\r\n"
                    f.write(temp.encode('utf-8'))
                f.close()
                print('done')
        else:
            print('exited')
    except:
        print('failed')

uinfo = []
url = "http://www.zuihaodaxue.cn/zuihaodaxuepaiming2016.html"
html = getHTMLText(url)
fillUnivList(uinfo,html)
printUnivList(uinfo,20)

值得注意的有两点,写入文件时decode,以及换行时”\r\n”
In python 3, bytes strings and unicode strings are now two different types.
python3中对bytes strings和unicode strings区别对待,因此注意解码

另外换行不能用\n,而是\r\n

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Z_shsf

来包瓜子嘛,谢谢客官~

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值