Entries tagged by python
python delicious intergration
Published on April 2, 2010
In this post i will show how i "communicated" with delicious via python.
There are some python client libraries but i decided not to use them for learning purposes. So there is a chance that my way is not the "right" way...i am quite sure about that.
Look at ...
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 ...
