Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SQL Query Builder [closed]

I am looking for a SQL Query builder for python (just like in matlab). I am a beginner and can not write one myself (yet..). Do you know of a open-source query builder written in Python ? Thanks Arthur

like image 709
ArtDijk Avatar asked Apr 13 '11 14:04

ArtDijk


2 Answers

I have used the python-sql library and am very happy with it.

like image 169
ilyak Avatar answered Nov 03 '22 22:11

ilyak


in SQLObject.org there is one see SQLBuilder documentation, to build SQL programatically.

As others are suggesting, you might also want to look at ORM systems such SQLAlchemy ,Django ORM or SQLObject.org itself.

like image 38
Manuel Salvadores Avatar answered Nov 03 '22 23:11

Manuel Salvadores