为什么打印模块会使代码发挥作用?

时间:2013-05-02 00:56:14

标签: python google-app-engine

我正在使用此代码。直到我在代码中包含print tweepy,GAE页面返回为空白;没有错误,或任何事情。它从命令行运行良好。为什么会这样?有没有更好的方法来使这项工作?

import tweepy
print tweepy

CONSUMER_KEY = "mine"
CONSUMER_SECRET = "mine"

auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET)

try:
    print auth.get_authorization_url()
except Exception,e: print str(e)

0 个答案:

没有答案