09-29-2024 11:56 AM - edited 09-29-2024 11:57 AM
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:
from oauthclient.credentialutil import *
from oauthclient.model.model import *
from oauthclient.oauth2api import *
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