Metadata-Version: 1.1
Name: simple-pinq
Version: 1.0.1
Summary: LINQ style API for Python.
Home-page: https://github.com/tizz98/pinq
Author: Elijah Wilson
Author-email: elijah@elijahwilson.me
License: MIT
Download-URL: https://github.com/tizz98/pinq/tarball/1.0.1
Description: # pinq
        A [LINQ](https://msdn.microsoft.com/en-us/library/bb308959.aspx) style API for Python iterables. Inspired by [JINQ](https://github.com/VivekRagunathan/JINQ).
        
        ## Installation
        ```
        pip install simple-pinq
        ```
        
        ## Docs
        These are a work in progress. For now, check out the [unit tests](./tests).
        
        ## Tests
        [![Build Status](https://travis-ci.org/tizz98/pinq.svg?branch=master)](https://travis-ci.org/tizz98/pinq)
        When contributing, make sure the test code coverage is not below 100%. To run tests:
        ```
        pip install -e .
        pytest tests --cov=pinq
        flake8 pinq tests
        ```
        
Keywords: linq pinq api
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
