Metadata-Version: 2.1
Name: linq-tool
Version: 0.1.1
Summary: A LINQ-like library for Python
Home-page: https://github.com/Zozi96/linq_tool
Author: Zozimo Fernandez
Author-email: zozi.fer96@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# Linq Tool

Linq is a Python package that provides LINQ-like functionality for performing common operations on iterables. Inspired by LINQ from C#, this package allows you to easily manipulate collections in a functional style.

## Features

- **Select**: Project each element of a sequence into a new form.
- **Where**: Filter elements based on a predicate.
- **GroupBy**: Group elements by a key selector function.
- **OrderBy**: Sort elements based on a key.
- **Distinct**: Remove duplicate elements.
- And many more!

## Installation

You can install Linq via pip:

```bash
pip install linq-package
```
