Metadata-Version: 1.0
Name: sqlwitch
Version: 0.2
Summary: sqlwitch offers idiomatic SQL generation on top of MySQLdb.
Home-page: http://jonasgalvez.com.br/Software/SQLWitch.html
Author: Jonas Galvez
Author-email: jonasgalvez@gmail.com
License: BSD
Description: 
        sqlwitch is a Python 2.5+ library that offers idiomatic SQL generation on top
        of MySQLdb. BSD-licensed.
        
        Usage
        `````
        
        ::
        
        with db.insert(into='foobars') as obj:
        obj.foo = 1
        with db.select('foo, bar', from_='foobars'):
        db.where('foo = 1')
        with db.update('foobars') as changeset:
        changeset.foo = 2
        db.where('foo = 1')
        with db.delete(from_='foobars'):
        db.where('foo = 2')
        
        Setup
        `````
        
        ::
        
        $ pip install sqlwitch # or
        $ easy_install sqlwitch # or
        $ cd sqlwitch-0.2; python setup.py install
        
        Links
        `````
        
        * `Full documentation <http://jonasgalvez.com.br/Software/SQLWitch.html>`_
        * `Development repository <http://github.com/galvez/sqlwitch/>`_
        * `Author's website <http://jonasgalvez.com.br/>`_
        
        
Platform: Python 2.5 and later
Classifier: Intended Audience :: Developers
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Database :: Front-Ends
Classifier: Topic :: Database
