ANN: pinder 0.5.0

Lawrence Oluyede l.oluyede at gmail.com
Wed Mar 7 15:59:15 CET 2007


Pinder is a straightforward API to interface with Campfire <http://
www.campfirenow.com>, the web chat application from 37Signals.

Pinder allows you to create rooms, delete them, speak from a remote
client and more. For example:

>>> room = campfire.find_room_by_name('Jonz Room')
>>> print room.users()
set([u'Alice'])

or

>>> print campfire.users()
set([u'Alice', u'Bob'])

which gets the list of the users talking in each room of the
subdomain.

>>> room.speak("Foobar")

will send the message to the chat room so you can speak too.

There's more like creating and deleting rooms, toggling guest access,
locking the room etc.

See the usage documentation <http://dev.oluyede.org/pinder/doc.html>
and the API documentation <http://dev.oluyede.org/pinder/api/> for
details.


You can install the latest release with:

$ easy_install pinder

or

download from here: http://dev.oluyede.org/download/pinder/

This is the first public release.



More information about the Python-announce-list mailing list