Get Inspire insights from former attendees in our AMA discussion thread on Inspire Buzz. ACEs and other community members are on call all week to answer!

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