Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to read data from web url in pipeline using python?
#1
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
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)