Metadata-Version: 2.1
Name: python-linq
Version: 0.0.4
Summary: Brings LINQ to Python
Home-page: https://github.com/jakkes/python-linq
Author: Jakob Stigenberg
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Python-linq
Provides simple to use LINQ features to Python.

Inspired by `py-linq` and `linq.py`.

## Install
Install using pip
```
pip install python-linq
```

## Usage
1. Import the From class
    - `from python_linq import From`
1. Write beautiful queries!
    - `sq3 = From([1, 2, 3]).select(lambda x: x * x + 3).to_list()`
        - `>>> [4, 7, 12]`

## Examples
Coming soon... Meanwhile, have a look at the tests.

## Documentation
Coming soon...

