Answers for "download data from url colab"

7

colab download file from url

!wget yoururl
#that's it
Posted by: Guest on January-24-2021
7

upload file in colab

from google.colab import files
files.upload()
Posted by: Guest on May-05-2020
1

colab read file

from google.colab import files
import io
uploaded = files.upload()
df2 = pd.read_csv('Filename.csv')# Dataset is now stored in a Pandas Dataframe
Posted by: Guest on February-21-2020

Python Answers by Framework

Browse Popular Code Answers by Language