mirror of
https://github.com/JoeanAmier/XHS-Downloader.git
synced 2025-12-26 04:48:05 +08:00
11 lines
200 B
Python
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()
|