Skip to content

A Python module used for interacting with collections of objects using LINQ syntax

License

Notifications You must be signed in to change notification settings

wasd52030/py-enumerable

This branch is 2 commits behind viralogic/py-enumerable:development.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

45ddcc5 · Feb 10, 2023
Feb 10, 2023
Sep 16, 2019
Feb 10, 2023
Feb 7, 2023
Feb 7, 2023
Jun 1, 2022
Feb 10, 2023
Feb 7, 2023
Dec 23, 2014
Feb 7, 2023
Nov 16, 2018
Feb 10, 2023
Feb 10, 2023
Feb 7, 2023

Repository files navigation

codecov

py-linq

LINQ (Language Integrated Query) is a popular querying language available in .NET. This library ports the language so that developers can query collections of objects using the same syntax. This library would be useful for Python developers with experience using the expressiveness and power of LINQ.

Install

Available as a package from PyPI.

pip install py-linq

Usage

To access the LINQ functions an iterable needs to be wrapped by the Enumerable

from py_linq import Enumerable
my_collection = Enumerable([1, 2, 3])

Documentation

Please visit the project site for better documentation

Contributing

Contributions are welcomed. This project uses poetry to handle the few library dependencies. Pre-commit is also used so that formatting and linting checks are performed on commit.

  1. Clone the repository using git clone https://github.com/viralogic/py-enumerable.git
  2. Install poetry globally as per the instructions here
  3. CD into the root of your cloned repository directory and poetry install to install all packages from the repository Pipfile.
  4. Install pre-commit by typing poetry run pre-commit install
  5. You should now be ready to start coding!

About

A Python module used for interacting with collections of objects using LINQ syntax

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%