Pinder: python port of Tinder
Lawrence Oluyede has released Pinder, a Python port of Tinder. Very cool! We’ve been semi-conspiring to try to keep the feature set in sync. It would be cool if we could figure out how to standardize test cases, too.
Lawrence Oluyede has released Pinder, a Python port of Tinder. Very cool! We’ve been semi-conspiring to try to keep the feature set in sync. It would be cool if we could figure out how to standardize test cases, too.
My name is Brandon Keepers. I like to build things, usually in Ruby or JavaScript. I work at GitHub and live in Holland, MI.
4 Comments
I’m open for suggestions :-)
Right now I’m using an home made hack to load html fixtures and some home made mock objects because I really didn’t like the mock objects frameworks available for Python. Anyway I just added a couple of methods in the trunk because I needed them in our app: rooms_names() and rooms()
See: http://dev.oluyede.org/trac/default/browser/pinder/trunk/pinder/campfire.py?rev=56#L109
Bye
Pinder doesn’t seem to be able to room.listen(). That’s no good. :(
For me, the uri = ‘files+transcripts’ in campfire.py needs to have a literal + instead of the urlencoded value to make transcripts() work.
thanks
Paul
another one: urllib.urlencode cannot deal with unicode/8bit. You need something like the unicode_urlencode() function from trac http://trac.edgewall.org/browser/trunk/trac/util/text.py and replace urllib.urlencode(data) in campfire.py around line 222.
thanks
Paul
Post a Comment