Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 551 Bytes

README.rst

File metadata and controls

25 lines (15 loc) · 551 Bytes

Linqp

Release Status License

Simple LINQ implementation for python.

Usage example:

Linqp(foo).where(lambda x: x.bar == 'bar').select_all()

or

Linqp(foo).where(lambda x: x.bar == 'bar').select(lambda x: x.foobar)