Skip to main content

Brings LINQ to Python

Project description

LINQ

Provides simple to use LINQ features to Python 3.x.

Documentation

See this link: https://jakkes.github.io/python-linq/

Installing

From pip

pip install python-linq

From source

git clone https://github.com/jakkes/python-linq.git
cd python-linq
pip install -r requirements.txt

Usage

  1. Import the Query class
  2. Write beautiful queries!
>>> from linq import Query
>>> x = Query([1, 2, 3]).select(lambda x: x * x + 3).to_list()
>>> assert x == [4, 7, 12]

Distribute heavy queries across multiple processes.

>>> import time
>>> from linq import DistributedQuery
>>> 
>>> def heavy_transformation(x: int):
>>>     time.sleep(10)
>>>     return x*2
>>> 
>>> def less_than_5(x: int):
>>>     return x < 5
>>> 
>>> x = (
>>>     DistributedQuery(range(100))
>>>     .where(less_than_5)
>>>     .select(heavy_transformation)
>>>     .to_list()
>>> )
>>> assert x == [0, 1, 4, 9, 16]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python-linq-2.0.0.tar.gz (13.0 kB view hashes)

Uploaded Source

Built Distribution

python_linq-2.0.0-py3-none-any.whl (16.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page