Skip to content

Instantly share code, notes, and snippets.

@harshityadav95
Last active May 2, 2020 07:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save harshityadav95/51985737e60c1abecee6c21d5c8d6df8 to your computer and use it in GitHub Desktop.
Save harshityadav95/51985737e60c1abecee6c21d5c8d6df8 to your computer and use it in GitHub Desktop.
Importing Data in Google Colab Notebook

1 .Using wget

 !wget http://your_domain/your_file.zip
  1. Mounting Google Drive locally
drive.mount(‘/content/gdrive’)
  1. Downloading into Google Drive :
import requests 
file_url = "http://1.droppdf.com/files/5iHzx/automate-the-boring-stuff-with-python-2015-.pdf"
	
r = requests.get(file_url, stream = True) 

with open("/content/gdrive/My Drive/python.pdf", "wb") as file: 
	for block in r.iter_content(chunk_size = 1024): 
		if block: 
			file.write(block) 

More Reference : https://towardsdatascience.com/downloading-datasets-into-google-drive-via-google-colab-bcb1b30b0166

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment