Metadata-Version: 1.1
Name: nlist
Version: 0.1
Summary: A lightweight multidimensional list in Python
Home-page: https://github.com/swarmer/nlist
Author: Anton Barkovsky
Author-email: anton@swarmer.me
License: MIT
Description: nlist
        =====
        |travis| |space| |coveralls| |space| |license| |space| |version|
        
        .. |space| unicode:: 0x200B
        .. |travis| image:: http://img.shields.io/travis/swarmer/nlist.png
        .. |coveralls| image:: http://img.shields.io/coveralls/swarmer/nlist.png
        .. |license| image:: http://img.shields.io/badge/license-MIT-blue.png
        .. |version| image:: http://img.shields.io/pypi/v/nlist.png
        
        nlist is a lightweight multidimensional list in Python.
        
        nlist supports Python 3.4+.
        
        
        Example code
        ------------
        ::
        
            from nlist import NList
        
            l = NList([[1, 2], [3, 4]])
            l[1, 0] = '42'
            print(l.index('42')) #=> (1, 0)
        
        
        Documentation
        -------------
        `<http://nlist.readthedocs.org/>`_
        
        
        Installation
        ------------
        ``pip install nlist``
        
        Or just grab ``nlist.py``.
        
        
        License
        -------
        MIT (see LICENSE.txt)
Keywords: array list container multidimensional
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
