SocialBooth Beta

Thursday, 29 January 2009

Today I am excited to announce the Beta release of a project that I have been working on called SocialBooth. SocialBooth will allow users to push content out to virtually any social network of their choice. I am also providing support for mainstream photo and video services such as Flickr Photobucket, etc....

The killer feature for developers, is the API system that I have created. Developers will now be able to tie in their new application to use my services. Be sure to thank the creators of the OAuth protocol for making the authenication of my API system possible.

While SocialBooth is still in Beta, developers and users are welcome to request access to try out my new service.

If you would like to try my service out, send me a message through the contact form located on my website and I will set you up with a Beta testers account.

Cheers!

Leave a comment

Python TwitPic

Thursday, 29 January 2009

Today I created a dead simple python lib called python-TwitPic. It makes use of the extremely simple API that http://twitpic.com/ has to offer offer.

Check out the code here:

http://code.google.com/p/python-twitpic/

Usage:

1
2
3
4
5
import twitpic
twit = twitpic.TwitPicAPI('USERNAME', 'PASSWORD')
twitpic_url = twit.upload('FILE_LOCATION')
# twitpic_url = twit.upload('FILE_LOCATION', message='messages rock!')
print twitpic_url

Enjoy!

Leave a comment