mirror of
https://github.com/tgbot-collection/YYeTsBot.git
synced 2025-11-25 03:15:05 +08:00
17 lines
286 B
Python
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')
|
|
|