欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Pyhton入门 笔记 第五天 实战:原生爬虫

程序员文章站 2022-05-04 13:17:45
from urllib import requestclass Spider(): url='https://www.panda.tv/cate/lol' #目录地址 def __fetch__content(self): #定义私有方法,要取得页面内容 r=request.urlopen(Spid ......

from urllib import request
class Spider():
    url='https://www.panda.tv/cate/lol'    #目录地址
    def __fetch__content(self):            #定义私有方法,要取得页面内容
        r=request.urlopen(Spider.url)      #通过request.urlopen()函数得到
        htmls=r.read()                                 #再通过read()读取出来     现在是数字类型
        htmls=str(htmls,encoding='utf-8')    #进行字符转化 得到内容

    def go(self):                                      # 类入口
        self.__fetch__content()


spider=Spider()
spider.go()