Hello,
Would it be possible to append data frame output in python tool?
I'm writing a web scrape program using a python tool. This python tool contains a loop to scrape multiple pages from the website.
df = pandas.DataFrame.append({"html_page":[html_page]}) --> TypeError: append() missing 1 required positional argument: 'other'
for i in range (0,2):
page += i
webpage = webpage + str(page)
if __name__ == "__main__":
main()
Alteryx.write(df,1)