response = urllib.request.urlopen('http://www.iqiyi.com/a_19rrgja8xd.html')
html = response.read()
soup = BeautifulSoup(html)
dramaList = soup.findAll('div', attrs={'class':'list_block1 align_c'})
dramaItems = []
if(dramaList):
lis = dramaList[0].findAll('li')
for li in lis:
ps = li.findAll('p')
description = ps[1].text if len(ps)>1 else ''
num = ps[0].find('a').text
url = ps[0].find('a')['href']
di = DramaItem(num, description, url)
dramaItems.append(di)
for di in dramaItems:
print(di)
diLen = len(dramaItems)
userChoice = int(input('input number to watch the drama:'))
if userChoice >= 1 and userChoice <=diLen:
dramaItems[userChoice-1].openDrama()
</div>
您可能想查找下面的文章:
- Python利用Beautiful Soup模块创建对象详解
- Python利用Beautiful Soup模块修改内容方法示例
- Python利用Beautiful Soup模块搜索内容详解
- Python利用Beautiful Soup模块创建对象详解
- Python利用Beautiful Soup模块修改内容方法示例
- Python使用BeautifulSoup库解析HTML基本使用教程
- python基于BeautifulSoup实现抓取网页指定内容的方法
- Python中使用Beautiful Soup库的超详细教程
- Python中使用Beautiful Soup库的超详细教程
- python使用BeautifulSoup分页网页中超链接的方法

