Metadata-Version: 1.0
Name: pyclj
Version: 0.1.9
Summary: clojure literal reader and writer for python
Home-page: http://github.com/sunng87/pyclj
Author: Sun Ning
Author-email: sunng@about.me
License: mit
Description: pyclj
        =====
        
        A python reader/writer for clojure data literals.
        
        Install
        -------
        
        ``pip install pyclj``
        
        Usage
        -----
        
        The API is very similar to python's built-in json module.
        
        - dump(data, fileobj)
        - dumps(data)
        - load(fileobj)
        - loads(string)
        
        Clojure -> Python Type Mapping
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        ======= ======
        Clojure Python
        ======= ======
        list    list
        vector  list 
        set     set
        map     dict
        nil     None
        string  string
        int     int
        float   float
        boolean boolean
        char    string
        keyword string
        ======= ======
         
        Python -> Clojure Type Mapping
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        ======= =======
        Python  Clojure
        ======= =======
        list    vector
        set     set
        dict    map
        None    nil
        string  string
        int     int
        float   float
        boolean boolean
        ======= =======
        
        License
        -------
        
        pyclj is distributed under MIT license.
        
        
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development
Classifier: Programming Language :: Python
Classifier: Operating System :: OS Independent
