You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've got it working with the following workaround:
submissions = reddit.user.me().submissions.new(limit=None)
for submission in submissions:
if "v.redd" in submission.url:
video_url = "https://reddit.com" + submission.permalink #permalink comes in "/r/subreddit/post-title" format, so this string combination creates the requisite URL
redvid.Download(video_url)
The text was updated successfully, but these errors were encountered:
Right now this only works with the full reddit permalink: https://reddit.com/r/subreddit/post-title-goes here
It would be useful to be able to use this with the "https://v.redd.it" URL, for example: https://v.redd.it/c8oic7ppc2751
I've got it working with the following workaround:
The text was updated successfully, but these errors were encountered: