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.
feedback
|
|
Pynq implements expression trees: http://wiki.github.com/heynemann/pynq
| ||||
|
feedback
|
|
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: | |||
|
feedback
|
|
If you are looking for an ORM then there is SQLAlchemy | |||||
feedback
|
|
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. | |||
|
feedback
|
|
You may want to look at kalamar: http://dyko.org/api/kalamar.html It is an unified data access library using a syntax more or less similar to linq for accessing data stored in different format (xml, mp3, ...) on heterogeneous backend (files, sql, ...). | |||
|
feedback
|
|
I haven't used it yet, but this shows promise:
| |||
|
feedback
|