Metadata-Version: 1.1
Name: pinq
Version: 0.1.1
Summary: LINQ for python.
Home-page: https://github.com/dlshriver/pinq
Author: David Shriver
Author-email: david.shriver@outlook.com
License: MIT
Description: pinq
        ====
        
        .. image:: https://travis-ci.org/dlshriver/pinq.svg?branch=master
            :alt: Build Status
            :target: https://travis-ci.org/dlshriver/pinq
        
        .. image:: https://coveralls.io/repos/github/dlshriver/pinq/badge.svg?branch=master
            :alt: Coverage Status
            :target: https://coveralls.io/github/dlshriver/pinq?branch=master
        
        **pinq** is a partial python implementation of the Language Integrated Query (LINQ) framework's method syntax api.
        
        Installation
        ------------
        
        Easy
        ~~~~
        
        To install pinq, use pip:
        
        .. code-block:: bash
        
            $ pip install pinq
        
        From Source
        ~~~~~~~~~~~
        
        To install pinq from source, download the `source`_ and extract the contents. Then run:
        
        .. code-block:: bash
        
            $ python setup.py install
        
        To run the tests, run the following command from the source directory:
        
        .. code-block:: bash
            
            $ python tests
        
        Documentation
        -------------
        
        *Better documentation is currently under development.*
        
        The pinq api documentation can be found `here <https://pinq.readthedocs.org>`_.
        
        Contribute
        ----------
        
        #. Check for open issues or open a new issue.
        #. Fork `the repository`_ on GitHub to start making changes.
        #. Write a test that shows the bug was fixed or the feature works as expected.
        #. Send a pull request
        
        .. _`the repository`: http://github.com/dlshriver/pinq
        .. _`source`: https://github.com/dlshriver/pinq/archive/0.1.1.tar.gz
        
        
        .. :changelog:
        
        RELEASE HISTORY
        ---------------
        
        0.1.1 (08-04-2016)
        +++++++++++
        
        * Added documentation
        
            - History
            
            - Static docs for API
            
        * Refactor
        
            - Add more tests and split old tests into distinct modules
            
            - Add `OrderedQueryable`
            
            - Allow multiple arguments in passed lambda functions 
            
        * Bugfixes
        
        0.1.0 (31-03-2016)
        ++++++++++++++++++
        
        * Initial release
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
