-
-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Weird Request: Getting the watching/bookmark of an artist #515
Comments
Not sure if GitHub sends notifications to relevant users if a commit references a specific issue, but in case it doesn't: The new version supports listing followed users for Pixiv and DeviantArt with the URL patterns listed by you. Use
|
Added Inkbunny name list as a feature request, also thanks for the updates on Pixiv and dA. |
Any news on implementing this for inkbunny? |
@catlover1019 inkbunny got done as well (e9dc6ff), although this uses the website directly instead of the API, which is used for everything else on that site. Do you (or anybody else) know if there are private/protected follower lists on inkbunny that would need a login? At least for your own account's watched users there's an API method that could be used. |
awesome :3 And I think besides some userpages being themselves restricted to logged-in users, all follwers and following are public. |
@mikf for clarification, are there any way of dumping this data into a text file or a json file? |
The Metadata? You can use the Metadata postprocessor. |
You can also use $ gallery-dl -g "URL" > links.txt
$ gallery-dl -j "URL" > data.json |
I would like to get a list of other artists that an artists like.
https://www.deviantart.com/<username>/about#watching
and hit the "load more" button repeatedly to get all the artists list.Challenge: Download user favorites (and create recommendations) kent-lee/deviantart-scraper#2 (comment)
The list will be in the href of
div#watchig div div div span a
and the button is atdiv#watchig div button
https://www.pixiv.net/bookmark.php?id=<some_id>&type=user&p=<page_num>
Challenge: Download user favorites (and create recommendations) kent-lee/pixiv-scraper#1 (comment)
The links will be in the href of the
<a>
element followingul[type="following"] li[type="following"] a
and the name will be atul[type="following"] li[type="following"] div div a div
http://www.furaffinity.net/watchlist/by/<usernaeme>/<page_num>
Everything is in the href at
tr td a
and name is intr td a span
https://inkbunny.net/usersviewall.php?mode=watching&user_id=<come_id>&page=<page_num>&namesonly=yes
Everything is in
tr td span.widget_userNameSmall a.widget_userNameSmall
(either href or name)The text was updated successfully, but these errors were encountered: