Skip to content

Commit

Permalink
[weverse] add extractors
Browse files Browse the repository at this point in the history
  • Loading branch information
bradenhilton committed Aug 18, 2024
1 parent 8ea7520 commit b1b1cfe
Show file tree
Hide file tree
Showing 7 changed files with 902 additions and 0 deletions.
23 changes: 23 additions & 0 deletions docs/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4536,6 +4536,29 @@ Description
Download video files.


extractor.weverse.embeds
------------------------
Type
``bool``
Default
``true``
Description
Download YouTube embeds found in ``Media`` posts.

Note: Setting `extractor.weverse.videos`_ to ``false`` will
override this setting.


extractor.weverse.videos
------------------------
Type
``bool``
Default
``true``
Description
Download video files.


extractor.ytdl.cmdline-args
---------------------------
Type
Expand Down
8 changes: 8 additions & 0 deletions docs/gallery-dl.conf
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,14 @@
"retweets": true,
"videos": true
},
"weverse":
{
"username": null,
"password": null,
"cookies": null,
"embeds": true,
"videos": true
},
"ytdl":
{
"enabled": false,
Expand Down
6 changes: 6 additions & 0 deletions docs/supportedsites.md
Original file line number Diff line number Diff line change
Expand Up @@ -997,6 +997,12 @@ Consider all listed sites to potentially be NSFW.
<td>Albums, Articles, Feeds, Images from Statuses, User Profiles, Videos</td>
<td></td>
</tr>
<tr>
<td>Weverse</td>
<td>https://weverse.io/</td>
<td>Feed Tab, Artist Tab, Media Files, Media Categories, Media Tabs, Member Profiles, Moments, Posts</td>
<td><a href="https://github.com/mikf/gallery-dl#cookies">Cookies</a></td>
</tr>
<tr>
<td>WikiArt.org</td>
<td>https://www.wikiart.org/</td>
Expand Down
1 change: 1 addition & 0 deletions gallery_dl/extractor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@
"webmshare",
"webtoons",
"weibo",
"weverse",
"wikiart",
"wikifeet",
"wikimedia",
Expand Down
Loading

0 comments on commit b1b1cfe

Please sign in to comment.