1

当我尝试在 Windws 7 中使用带有 Python 2.7 的 Adwords API 时出现以下错误: ImportError: cannot import name AdWordsClient

使用以下代码(我从谷歌示例中获得):

import os
import sys
sys.path.insert(0, os.path.join('..', '..', '..', '..', '..'))

# Import appropriate classes from the client library.
from adspygoogle import AdWordsClient
from adspygoogle.common import Utils
4

1 回答 1

1

已经解决了。只需在代码开头添加以下行:

import fpconst
于 2013-02-23T18:37:19.753 回答