Answers for "Download video from a direct URL with Python"

0

Download video from a direct URL with Python

# urllib.URLopener doesn't handle redirects by default
# Use urllib.FancyURLopener instead:

import urllib
test=urllib.FancyURLopener()
test.retrieve("http://www.animefun.com/dl/googDev.php?url=/108994262975881368074/Po270.flv","testout.flv")
Posted by: Guest on May-06-2022

Code answers related to "Download video from a direct URL with Python"

Python Answers by Framework

Browse Popular Code Answers by Language