Error installing oauth python library
Hi,
I'm attempting to install the oauth ebay client for python and have cloned the repo: https://github.com/eBay/ebay-oauth-python-client. I however have followed the instructions to install the modules: oauth2api, credentialutil and model:
with the following errors:
ModuleNotFoundError Traceback (most recent call last)
Cell In[6], line 2
1 #from oauthclient.oauth2api import *
----> 2 from oauthclient.credentialutil import *
3 from oauthclient.model.model import *
4 from oauthclient.oauth2api import *
File ~/Downloads/ebay-oauth-python-client/oauthclient/credentialutil.py:20
18 import yaml, json
19 import logging
---> 20 from model.model import environment, credentials
22 user_config_ids = ["sandbox-user", "production-user"]
24 class credentialutil(object):
ModuleNotFoundError: No module named 'model'
i checked on the issues tab in the above repo and this is an issue that has been documented before.
Does anyone know a fix for this so that I can import the model module?
Thanks
angebi-8546
Posted 1 year ago · Edited 1 year ago
0 comments