I've been using PAD for a few weeks now and am really liking it. I've started to automate some things at work and have been using Python successfully until I started using scripts to query API's. I first have to import requests, which gives me an error saying no module exists for requests. When I point the Python script step to the path for the modules, I continue to get the same error. I found the parent folder for requests is in site-packages, so I pointed it there, but it continues to complain about not having other modules. I then created a new folder, copied the Python modules here and also put those from site-packages in the root here so everything is under the same directory. However, this creates errors such as this:
File "C:\Users\Administrator\Documents\Modules\logging\__init__.py", line 1477
def exception(self, msg, *args, exc_info=True, **kwargs):
^
SyntaxError: unexpected token 'exc_info'
Not sure what to do here. Has anyone else experienced this with Python modules and PAD?