![]() |
Using online python for course, How do I open a File that's a link? - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: Using online python for course, How do I open a File that's a link? (/thread-25110.html) |
Using online python for course, How do I open a File that's a link? - WhatsupSmiley - Mar-19-2020 Hi there! I am doing a (beginner) python course online that allows us to use python in a jupyter notebook. I am trying to open a file that looks like a link and is a .csv. links={'GDP':'https://s3-api.us-geo.objectstorage.softlayer.net/cf-courses-data/CognitiveClass/PY0101EN/projects/coursera_project/clean_gdp.csv',\ 'unemployment':'https://s3-api.us-geo.objectstorage.softlayer.net/cf-courses-data/CognitiveClass/PY0101EN/projects/coursera_project/clean_unemployment.csv'} #GDP = links["GDP"] #print(GDP) with open('https://s3-api.us-geo.objectstorage.softlayer.net/cf-courses-data/CognitiveClass/PY0101EN/projects/coursera_project/clean_gdp.csv', 'r') as GDPFile: GDPData = GDPFile.read() print(GDPData) print(GDPFile.closed) print(GDPData)And I get this error: So I downloaded the file to my local drive and tried it this way: links={'GDP':'https://s3-api.us-geo.objectstorage.softlayer.net/cf-courses-data/CognitiveClass/PY0101EN/projects/coursera_project/clean_gdp.csv',\ 'unemployment':'https://s3-api.us-geo.objectstorage.softlayer.net/cf-courses-data/CognitiveClass/PY0101EN/projects/coursera_project/clean_unemployment.csv'} #GDP = links["GDP"] #print(GDP) with open('C:\Users\Amanda\Documents\Coursera IBM Data Science Certification\Python for Data Science and AI\clean_gdp.csv', 'r') as GDPFile: GDPData = GDPFile.read() print(GDPData) print(GDPFile.closed) print(GDPData)However I get this error: Am I missing something? Does the file need to be saved in the notebook or under the same project? I'm using python on a data platform, IBM cloud.
RE: Using online python for course, How do I open a File that's a link? - buran - Mar-20-2020 The second error is because you use backslash in path and some combinations like \u are escape sequences.When on windows, use raw strings for path, or use forward slash. for reading from web import requests import csv import io import pandas base_url = 'https://s3-api.us-geo.objectstorage.softlayer.net/cf-courses-data/CognitiveClass/PY0101EN/projects/coursera_project/' links={'GDP':'clean_gdp.csv', 'unemployment':'clean_unemployment.csv'} url = f"{base_url}{links['GDP']}" # using requests and csv response = requests.get(url) csv_rdr = csv.reader(io.StringIO(response.text)) # also you can use DictReader instead print(list(csv_rdr)[:5]) # you can iterate over csv_rdr instead # alternative - using pandas data = pandas.read_csv(url) print(data.head()) |