mirror of
https://github.com/JoeanAmier/XHS-Downloader.git
synced 2025-12-26 04:48:05 +08:00
10 lines
186 B
Python
10 lines
186 B
Python
from re import compile
|
|
|
|
|
|
class Explore:
|
|
explore_data = compile(r'"noteDetailMap": (\{.*?})')
|
|
|
|
def __init__(self, html, url: str):
|
|
self.html = html
|
|
self.url = url
|