Forums

Full Version: How to read data from web url in pipeline using python?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Use python script component.
Paste below script in meta information script section.
Provide URL where csv file is located.

import pandas as pd
def read_data():
   url = 'http://example.com/path/to/file.csv'
   df = pd.read_csv(url)
   return df