up vote 17 down vote favorite
10
share [g+] share [fb]

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.

link|improve this question
Note that, there is pyquery, a jquery-syntax/capabilities like package for Python. – user712092 Aug 30 '11 at 16:27
feedback

6 Answers

Pynq implements expression trees:

http://wiki.github.com/heynemann/pynq

Microsoft created Linq (Language Integrated Query) using Expression trees, which is a math concept on how to parse operations into trees in a way that you can analyze the operations independently from the result.

Pynq is an implementation in Python of the Expression Tree theory and some of the providers. There will be more providers gradually, but Pynq will strive to make it as easy as possible to write your own provider.

link|improve this answer
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:

http://us.pycon.org/2009/conference/schedule/event/70/

link|improve this answer
feedback

If you are looking for an ORM then there is SQLAlchemy

link|improve this answer
2  
Elixir, which is a declarative layer on top of the SQLAlchemy, is easy and convenient to use. elixir.ematia.de – sunqiang Jul 6 '09 at 4:26
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.

link|improve this answer
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, ...).

link|improve this answer
feedback

I haven't used it yet, but this shows promise:

asq is a simple implementation of a LINQ-inspired API for Python which operates over Python iterables, including a parallel version implemented in terms of the Python standard library multiprocessing module. The API sports feature equivalence with LINQ for objects, 100% statement test coverage and comprehensive documentation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.