Is there any LINQ-like project for Python that can automatically query XML files and/or RDBMS tables? The syntax does not have to be exactly like LINQ in C#, but hopefully close in a pythonic way.
|
|
I'm not an expert, but the Dejavu people claims Dejavu makes much of what LINQ does, and did it way before LINQ. Could be worth checking out: |
||
|
|
|
|
I don't know much about Linq but you may be interested in this: http://code.activestate.com/recipes/442447/ It allows using generator expressions to query an SQL database. |
||
|
|
|
|
Pynq implements expression trees: http://wiki.github.com/heynemann/pynq
|
|||
|
|
|
|
If you are looking for an ORM then there is SQLAlchemy |
||||
|
