Requests is a versatile HTTP library in python with various applications. One of its applications is to download a file from web using the file URL.
Installation: First of all, you would need to download the requests library. You can directly install it using pip by typing following command:
pip install requests
Or download it directly from here and install manually.
Downloading files
import requests
r = requests.get(image_url)
with open ( "python_logo.png" , 'wb' ) as f:
f.write(r.content)
|
This small piece of code written above will download the following image from the web. Now check your local directory(the folder where this script resides), and you will find this image:
All we need is the URL of the image source. (You can get the URL of image source by right-clicking on the image and selecting the View Image option.)
Download large files
The HTTP response content (r.content) is nothing but a string which is storing the file data. So, it won’t be possible to save all the data in a single string in case of large files. To overcome this problem, we do some changes to our program:
Since all file data can’t be stored by a single string, we use r.iter_content method to load data in chunks, specifying the chunk size.
r = requests.get(URL, stream = True)
Setting stream parameter to True will cause the download of response headers only and the connection remains open. This avoids reading the content all at once into memory for large responses. A fixed chunk will be loaded each time while r.iter_content is iterated.
Here is an example:
import requests
r = requests.get(file_url, stream = True )
with open ( "python.pdf" , "wb" ) as pdf:
for chunk in r.iter_content(chunk_size = 1024 ):
if chunk:
pdf.write(chunk)
|
Downloading Videos
In this example, we are interested in downloading all the video lectures available on this web-page. All the archives of this lecture are available here. So, we first scrape the webpage to extract all video links and then download the videos one by one.
import requests
from bs4 import BeautifulSoup
def get_video_links():
r = requests.get(archive_url)
soup = BeautifulSoup(r.content, 'html5lib' )
links = soup.findAll( 'a' )
video_links = [archive_url + link[ 'href' ] for link in links if link[ 'href' ].endswith( 'mp4' )]
return video_links
def download_video_series(video_links):
for link in video_links:
file_name = link.split( '/' )[ - 1 ]
print ( "Downloading file:%s" % file_name)
r = requests.get(link, stream = True )
with open (file_name, 'wb' ) as f:
for chunk in r.iter_content(chunk_size = 1024 * 1024 ):
if chunk:
f.write(chunk)
print ( "%s downloaded!\n" % file_name )
print ( "All videos downloaded!" )
return
if __name__ = = "__main__" :
video_links = get_video_links()
download_video_series(video_links)
|
Advantages of using Requests library to download web files are:
This blog is contributed by Nikhil Kumar. If you like GeeksforGeeks and would like to contribute, you can also write an article using write.geeksforgeeks.org or mail your article to review-team@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!