Metadata-Version: 1.1
Name: eztable
Version: 0.1.3
Summary: Simple in-memory tables in pure Python.
Home-page: https://github.com/salimfadhley/eztable
Author: Salim Fadhley
Author-email: salimfadhley@gmail.com
License: MIT
Description: EZTable
        =======
        
        EZTable is a lightweight python table library. It is designed to be as
        easy as possible:
        
        It's easy to install because it's pure python, you don't need to compile
        any C extensions, however if you do have a compiler then a few of the
        components can be made to work faster.
        
        It's easy to deploy because it's packaged both sdist (.tar.gz format)
        and also as a Python Wheel. You can use the Pip command to install it or
        add it as a dependency of your project without introducing any extra
        hassle.
        
        It's easy to learn: There's plenty of documentation and examples of how
        to use EZTable's main features.
        
        It's easy to use, because the API is familiar to anybody who has used
        lists and common Python sequences.
        
        Basic Usage
        -----------
        
        This Asciinema explains how to programatically build, filter and join
        EZTable's table object:
        
        |asciicast|
        
        Project Status
        --------------
        
        -  Current test status: |Build Status|
        
        -  Dependencies: |Requirements Status|
        
        -  Code Quality: |Code Health|
        
        About this project
        ------------------
        
        -  Documentation: http://pythonhosted.org/eztable/
        -  Latest release: https://pypi.python.org/pypi/eztable/
        -  Latest source: https://github.com/salimfadhley/eztable
        -  Issues: https://github.com/salimfadhley/eztable/issues
        
        .. |asciicast| image:: https://asciinema.org/a/1gll4ddmgvp0grq705y5f7l8s.png
           :target: https://asciinema.org/a/1gll4ddmgvp0grq705y5f7l8s
        .. |Build Status| image:: https://travis-ci.org/salimfadhley/eztable.svg?branch=master
           :target: https://travis-ci.org/salimfadhley/eztable
        .. |Requirements Status| image:: https://requires.io/github/salimfadhley/eztable/requirements.svg?branch=master
           :target: https://requires.io/github/salimfadhley/eztable/requirements/?branch=master
        .. |Code Health| image:: https://landscape.io/github/salimfadhley/eztable/master/landscape.svg?style=plastic
           :target: https://landscape.io/github/salimfadhley/eztable/master
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Utilities
