Hello, I am having some issues obtaining python modules to use in zaps.
Code that is not working:
pip or pip3 install webbot
from webbot import Browser
web = Browser()
web.go to('https://patreon.com/login')
web.type('mail@mailaddress.com', into='EMAIL') web.type('password', into='PASSWORD')
web.click('Login')
Error Message:
Failed to run your Python code
Your code had an error! Traceback (most recent call last): SyntaxError: invalid syntax (<string>, line 8)
My goal is to take a post I make on facebook and to copy the information as a post to Patreon, but since no native Patreon integrations do this, I decided to enlist the help of python libraries, how feasible is this. For example, in the code above I am attempting to use the webbot libraries to login automatically before creating a post...