Files
YYeTsBot/yyetsweb/craw_data/douban.py
BennyThink ca088d8678 douban enhance and tools
more douban data, douban episode time enhance, douban fix command and douban craw
2021-07-11 10:42:40 +08:00

17 lines
286 B
Python

#!/usr/local/bin/python3
# coding: utf-8
# YYeTsBot - douban.py
# 7/10/21 22:59
#
__author__ = "Benny <benny.think@gmail.com>"
from bs4 import BeautifulSoup
import re
with open("douban_detail.html") as f:
detail_html = f.read()
soup = BeautifulSoup(detail_html, 'html.parser')