XHS_Downloader/main.py
2023-08-16 19:59:50 +08:00

11 lines
200 B
Python

from source import get_image_link
def example():
demo = "https://www.xiaohongshu.com/explore/64a3a5170000000031008914"
print(get_image_link(demo))
if __name__ == '__main__':
example()