Skip to main content

LINQ

Build Status

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 using DistributedQuery.

>>> 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), processes=8)
>>>     .where(less_than_5)
>>>     .select(heavy_transformation)
>>>     .to_list()
>>> )
>>> print(x)
[0, 1, 4, 9, 16]    # Not necessarily in this order.

Release files for python-linq 2.0.4

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for python-linq 2.0.4
File Size Uploaded
python-linq-2.0.4.tar.gz 13.8 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for python-linq 2.0.4
File Interpreter ABI Platform
python_linq-2.0.4-py3-none-any.whl Python 3 none any Details

Total release size: 31.4 kB

Release files / python-linq-2.0.4.tar.gz

Download URL python-linq-2.0.4.tar.gz
Size 13.8 kB
Tags Source
SHA-256 checksum
How to use checksums
69be80f3a975142ecca09815d1b5eed9307dc154b2b5915d1c8f7fa152b25a3c
BLAKE2b-256 checksum
How to use checksums
05418aba6a6610a6c6f63b276d56237cd1f58a23e10dd3451442ab9070b9a2f1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.8.9

Release files / python_linq-2.0.4-py3-none-any.whl

Download URL python_linq-2.0.4-py3-none-any.whl
Size 17.6 kB
Tags Python 3
SHA-256 checksum
How to use checksums
a00b829dfa60da7a8772bd6b126143afd6cbc1bf2fb0811390ea570a4c174b68
BLAKE2b-256 checksum
How to use checksums
2c5fd235a133721138065064baa1537422e9e3bb6e9c514eff66f5e55b2c6201
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.8.9

Release history Release notifications | RSS feed

This release

2.0.4 This release

2 release files

2.0.3

2 release files

2.0.2

2 release files

2.0.1

2 release files

2.0.0

2 release files

1.5.0

2 release files

1.4.1

2 release files

1.4.0

2 release files

1.3.0

2 release files

1.2.1

2 release files

1.2.0

2 release files

1.1.0

2 release files

1.0.0

2 release files

0.1.2

2 release files

0.1.1

2 release files

0.1.0

2 release files

0.0.4

2 release files

0.0.3

1 release file

0.0.2

2 release files

0.0.1

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page