Skip to content

Instantly share code, notes, and snippets.

View lpetrov's full-sized avatar

Lyubomir Petrov lpetrov

View GitHub Profile
@aandr
aandr / banjo.py
Created May 3, 2011 21:08
Banjo: jQuery proxy for python
import json
class Banjo:
"""
jQuery proxy for Python
>>> from banjo import b, js
>>> b('#home').toggle()
$("#home").toggle()
>>> b.map(b('p.blue'), js.myJsMapFunc)