Metadata-Version: 2.1
Name: jsdict
Version: 0.1
Summary: like Javascript dict
Author: zuroc
Author-email: zsp007@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries :: Python Modules


from jsdict import JsDict

o = JsDict()
o.xxx = 1
o.bbb = 0

print o.xxx

for k,v in o:
    print k,v



