We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
Start Free Trial

Alteryx Designer Desktop Discussions

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

Python: module 'ayx.Alteryx' has no attribute 'Read'

mewongme
6 - Meteoroid

Hi,

 

I'm trying to use the Python tool and I've followed all the import steps (from ayx import Alteryx), but every time i try to read something from an input source I get the below error, does anyone know why?

 

code:

from ayx import Alteryx
input=Alteryx.Read("#1")

error:

AttributeError: module 'ayx.Alteryx' has no attribute 'Read'

Appreciate any input here.

2 REPLIES 2
BrandonB
Alteryx
Alteryx

read needs to be lowercase 🙂

 

Alteryx.read("#1")

mewongme
6 - Meteoroid

thanks!!

Labels
Top Solution Authors