Twitter Python API в терминале - установка ошибок - PullRequest
1 голос
/ 31 августа 2011

Я установил следующие библиотеки и прошел через все этапы настройки Twitter Python:

httplib2-0.7.1          simplegeo-python-oauth2-1fcc1a6
python-twitter-0.8.2        simplejson-2.1.6

Я использую инструкции по установке здесь: http://code.google.com/p/python-twitter/

КогдаЯ запускаю тест python setup.py, я получаю 17 ошибок.Вот фрагмент вывода (извините, это много):

testNewFromJsonDict (twitter_test.UserTest)
Test the twitter.User NewFromJsonDict method ... ok
testProperties (twitter_test.UserTest)
Test all of the twitter.User properties ... ok
testCreateFriendship (twitter_test.ApiTest)
Test the twitter.Api CreateFriendship method ... ERROR
testDestroyDirectMessage (twitter_test.ApiTest)
Test the twitter.Api DestroyDirectMessage method ... ERROR
testDestroyFriendship (twitter_test.ApiTest)
Test the twitter.Api DestroyFriendship method ... ERROR
testDestroyStatus (twitter_test.ApiTest)
Test the twitter.Api DestroyStatus method ... ERROR
testGetDirectMessages (twitter_test.ApiTest)
Test the twitter.Api GetDirectMessages method ... ERROR
testGetFeatured (twitter_test.ApiTest)
Test the twitter.Api GetFeatured method ... ERROR
testGetFollowers (twitter_test.ApiTest)
Test the twitter.Api GetFollowers method ... ERROR
testGetFriends (twitter_test.ApiTest)
Test the twitter.Api GetFriends method ... ERROR
testGetFriendsTimeline (twitter_test.ApiTest)
Test the twitter.Api GetFriendsTimeline method ... ERROR
testGetPublicTimeline (twitter_test.ApiTest)
Test the twitter.Api GetPublicTimeline method ... ERROR
testGetReplies (twitter_test.ApiTest)
Test the twitter.Api GetReplies method ... ERROR
testGetStatus (twitter_test.ApiTest)
Test the twitter.Api GetStatus method ... ERROR
testGetUser (twitter_test.ApiTest)
Test the twitter.Api GetUser method ... ERROR
testGetUserTimeline (twitter_test.ApiTest)
Test the twitter.Api GetUserTimeline method ... ERROR
testPostDirectMessage (twitter_test.ApiTest)
Test the twitter.Api PostDirectMessage method ... ERROR
testPostUpdate (twitter_test.ApiTest)
Test the twitter.Api PostUpdate method ... ERROR
testTwitterError (twitter_test.ApiTest)
Test that twitter responses containing an error message are wrapped. ... ERROR

1 Ответ

0 голосов
/ 31 августа 2011

Я думаю, что пропущенные сообщения об ошибках содержат важную информацию для устранения неполадок. Позвольте мне предположить - вы загрузили файл tar.gz из раздела «Загрузки» проекта, но он по какой-то причине не запаковал тестовые данные. Поэтому причиной сбоя должно быть то, что он не смог найти необходимые тестовые данные. Вы можете увидеть в своем хранилище: http://code.google.com/p/python-twitter/source/browse/#hg%2Ftestdata

Если это правда, не паникуйте. Просто продолжайте свое реальное взаимодействие с Twitter API.

...