Alteryx not reading correctly
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I have two text inputs where i'm entering my api key and secret, but when reading it via Alteryx.read("#1") in python tool , it doesn't read the whole string
and prints it as "xxxxxxxxx..." basically wrong because of the three dots.
I have a text input after the text box. What am i doing wrong and how to pass the whole value?
Solved! Go to Solution.
- Labels:
- Python
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
@Heer maybe put a select tool right after your input tool and check the character size before feeding into a python tool
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
cam you share a screengrab of your workflow? do you have a text box/action tool updating a text input box? can you add a select after to see the size of your text field?
often Alteryx will default to the size of your dummy data in your text input (say 4) - and if your actual data is larger it will truncate.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I did add a select to see the size also the connector between Text input and python tool shows the size 68
Attached is the issue
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
This is a dataframe. Include [0] to specify the row.
print(k["Key"][0])
print(k["Secret"][0])
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
oh thank you. you are right.
