Hello Community,
I am trying to load parquet data into Alteryx (code below) - it all works well, till the point I want to write data into Alteryx (two last rows). Immediately, as I want to wrote output I am getting error:
module 'numpy' has no attribute 'bool'
from ayx import Alteryx
import pandas as pd
file = "C:/Users/nikolnor/Downloads/userdata4.parquet"
df = pd.read_parquet(file)
Alteryx.write(df,1)
#Alteryx.write(pd.read_parquet(par_file) ,1)
Could someone advise?
Thank you,
Nikoleta