In my python (2.7) application I make use of a Cloudant database as follows:
from cloudant.client import Cloudant
client = Cloudant('XXX', 'YYY', account='ZZZ')
client.connect()
my_db = client['my_database']
for doc in my_db: print doc
The environment in which this application runs makes use of proxy.pac which can not be bypassed. How could I make the connection to Cloudant .pac aware or how could I let Cloudant automatically look for proxy.pac?
I've found the python package PyPac (https://pypac.readthedocs.io/en/latest/) but do not have the slightest idea how I should use this in the Cloudant context.
Thanks for your ideas and help in advance.