In case you missed the announcement: The Alteryx One Fall Release is here! Learn more about the new features and capabilities here
ACT NOW: The Alteryx team will be retiring support for Community account recovery and Community email-change requests Early 2026. Make sure to check your account preferences in my.alteryx.com to make sure you have filled out your security questions. Learn more here
Start Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.

Reading sharepoint data into python tool

nidahahmad
5 - Atom

Hi,

have a data set which has been pulled from sharepoint, the data needs to be converted into data frame for python tool in alteryx.

as i have forecating model to be build in python, but i can't figure out how to read the data in python tool after pulling it from sharepoint server

3 REPLIES 3
danilang
19 - Altair
19 - Altair

Hi @nidahahmad 

 

If you already have the data in Alteryx, just connect the last tool in the workflow that reads the input to the input on the Python tool.  Within the Python tool use a line similar to df = Alteryx.read("#1").  This will read the data from the 1st data input as a dataframe

 

Dan

 

nidahahmad
5 - Atom

if it just reads the 1st data input how would it read 5000 data points then?

 

salbol1
8 - Asteroid

He means since you can read in multiple streams into the python tool, the stream representing your data can be read in as #1 alteryx.read("#1"). You can, of course, name your connections in to be more descriptive of the data so it makes more sense in your scripting. Then it would be Alteryx.read("Excel_Data"), etc. - whatever you name the streams.

python.PNG

Labels
Top Solution Authors