0
我試圖執行下面的代碼,但是在標題中出現錯誤。使用PIP 3,然後easy_install的,仍然錯誤,儘管在安裝被滿足所有的依賴,但沒有ebaysdk.py文件,請參閱下面我的代碼安裝ebaysdk:ModuleNotFoundError:沒有名爲'ebaysdk'的模塊
import datetime
from ebaysdk.exception import ConnectionError
from ebaysdk.finding import Connection
try:
api = Connection(appid=**<mykey>**, config_file='ebay.yaml')
response = api.execute('findItemsAdvanced', {'keywords': 'legos'})
assert(response.reply.ack == 'Success')
assert(type(response.reply.timestamp) == datetime.datetime)
assert(type(response.reply.searchResult.item) == list)
item = response.reply.searchResult.item[0]
assert(type(item.listingInfo.endTime) == datetime.datetime)
assert(type(response.dict()) == dict)
except ConnectionError as e:
print(e)
print(e.response.dict())
我使用Python 3.6(蟒蛇) ,與timotheus' ebaysdk - https://github.com/timotheus/ebaysdk-python一起工作。
我將不勝感激您的幫助。