Where and how can I install twitter's Python API? -
i went twitter's api, redirected me google code, , website wasn't there. alternative twitter apis, plus tutorials? thanks!
try tweepy: http://code.google.com/p/tweepy/
you can tutorial wiki page @ same google code link.
to install easy_install, run easy_install tweepy
to install git:
git clone git://github.com/joshthecoder/tweepy.git cd tweepy python setup.py install
to install source, download source http://pypi.python.org/pypi/tweepy run like:
tar xzvf tweepy-1.7.1.tar.gz cd tweepy-1.7.1 python setup.py install
Comments
Post a Comment