Skip to content

fy0/jsdict

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

jsdict

JavaScript-style Dict for python.

Tested on py2.7/py3.4

from jsdict import JsDict

d = JsDict({'a': 1, 'b': 2})

>>>> print(d.a)
1

>>>> print(d.c)
None

d.c = 3

>>>> print(d.c)
3

About

JavaScript-style Dict for python

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages