python爬虫之自动化爬取网页

以下为公开源码

from selenium import webdriver
from selenium.webdriver.chrome.options import Options
import time
from bs4 import BeautifulSoup
url='https://movie.douban.com/'
chrome_optins=Options()
chrome_optins.add_argument('lan=zh_CN.utf-8'

你可能感兴趣的:(python,selenium,python,chrome)