Replies: 1 comment
-
On the command-line this would be This will put metadata and file URL in a separate In Python it would be something lke from gallery_dl.job import DataJob
url = "..."
job = DataJob(url)
job.run()
# all metadata is in job.data or you iterate over the Extractor results yourself: from gallery_dl import extractor
url = "..."
extr = extractor.find(url)
for msg in extr:
# process 'msg'
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Asking this to try and construct an art influence graph (within Python). The data to gather includes the link of each piece of art, and also the artist who made it. Note: When it comes to Pixiv, the artist pages are labeled by ID rather than username.
Beta Was this translation helpful? Give feedback.
All reactions