Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
特定のユーザーのスクリーン名に関する情報を取得するための簡単なリクエストに tweepy を使用しようとしています。これは私がしました:
import tweepy api = tweepy.API api.get_user('name')
エラーが発生します:
unbound method _call() must be called with API instance as first argument (got str instance instead)
APIのインスタンスを作成する必要があります。
api = tweepy.API() api.get_user('name')
デモは常により有益です:
>>> import tweepy >>> api = tweepy.API() >>> api.get_user('zopatista') <tweepy.models.User object at 0x10ffcd910>