Hello,
I'm just getting started with the eBaySDK and I cant figure out an error that im receiving.
import ebaysdk # I've tried to run the code without this as well, with the same result.
from ebaysdk.finding import Connection as Finding
try:
api = Finding(appid="APP_ID_REMOVED_FOR QUESTION")
response = api.execute('findItemsAdvanced', {'keywords': 'Python'})
print(response.dict())
except ConnectionError as e:
print(e)
print(e.response.dict())
When I run the above, I get this error "from ebaysdk.finding import Connection as Finding
ImportError: No module named finding"
Also my indentation was removed in this post, I'm indenting properly though. Thank You!
Hello,
I'm just getting started with the eBaySDK and I cant figure out an error that im receiving.
import ebaysdk # I've tried to run the code without this as well, with the same result.
from ebaysdk.finding import Connection as Finding
try:
api = Finding(appid="APP_ID_REMOVED_FOR QUESTION")
response = api.execute('findItemsAdvanced', {'keywords': 'Python'})
print(response.dict())
except ConnectionError as e:
print(e)
print(e.response.dict())
When I run the above, I get this error "from ebaysdk.finding import Connection as Finding
ImportError: No module named finding"
Also my indentation was removed in this post, I'm indenting properly though. Thank You!