Entries tagged by tips
How to update twitter account with python
Published on April 2, 2010
To update your twitter account via python you can use the python-twitter api.
Download it and unzip it within your PYTHONPATH ( you can do it inside a django project ... i think so).
In the python interpreter you can :
api = twitter.Api(username='', password='')
message = 'hello twitter from python'
status = api ...
