'How do i download videos using praw? my code currently prints the url, but i want it to download the videos, instead of jsut printing it

import praw

reddit = praw.Reddit(client_id='id', client_secret='secret', user_agent='name')

for submission in reddit.subreddit("tiktokcringe").hot(limit=20):

if submission.is_video:
    print(submission.title)


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source