使用python3爬取都摆即将上映和正在热映的电影,代码如下
直接使用bs4获取页面,使用css 获取到对应的信息后,使用字符串拼接的方式,将正在热映和即将上映的信息拼接出来并写入到html页面中,在爬取完毕后打开生成的html。
内容比较简单
直接使用bs4获取页面,使用css 获取到对应的信息后,使用字符串拼接的方式,将正在热映和即将上映的信息拼接出来并写入到html页面中,在爬取完毕后打开生成的html。
内容比较简单
[码云的地址](https://gitee.com/xlelou/spider/blob/master/doubai.py)
import requests
import json
from bs4 import BeautifulSoup
import webbrowser
# 热映的url
nowplayingUrl = 'https://movie.douban.com/cinema/nowplaying/dongying/'
class getM():
# 获取热映的数据
def getNowPlaying (url):
r = requests.get(u