I am trying the python-upwork library and followed the setup. pip freeze
shows required libraries:
httplib2==0.10.3
httplib2.system-ca-certs-locater==0.1.2
macholib==1.5.1
matplotlib==1.3.1
modulegraph==0.10.4
numpy==1.8.0rc1
oauth2==1.5.211
urllib3==1.10
However trying to create client gives
client = upwork.Client(public_key, secret_key)
File "/Library/Python/2.7/site-packages/upwork/client.py", line 119, in __init__
ca_certs=ca_certs_locater.get(),
File "/Library/Python/2.7/site-packages/ca_certs_locater/__init__.py", line 36, in get
raise ImportError()
I found this link and it sounds like python cannot find the cert to validate upwork.com. I tried following suggestions but still same issue. I'm not sure where to put the cacerts.pem file.
Answering my own question. Here is what worked for me. I am on Mac.
Download the latest pem file from link at bottom of this page. Then force copy to specific location and rename it:
Then it works!