Metadata-Version: 1.0
Name: sqlautocode
Version: 0.5.2
Summary: AutoCode is a flexible tool to autogenerate a model from an existing database.
Home-page: http://code.google.com/p/sqlautocode/
Author: Simon Pamies
Author-email: spamsch@gmail.com
License: MIT
Description: 
        This is a tool that helps you creating a model based on an existing database scheme. The resulting code will be compatible with sqlalchemy.
        
        Installation::
        
        easy_install sqlautocode
        $PYTHON/bin/sqlautocode
        
        Example::
        
        sqlautocode postgres://user:password@myhost/database -o out.py -t person*,account
        
        Options::
        
        -h, --help            show this help message and exit
        -o OUTPUT, --output=OUTPUT
        Write to file (default is stdout)
        --force               Overwrite file (default is stdout)
        -s SCHEMA, --schema=SCHEMA
        Optional, reflect a non-default schema
        -t TABLES, --tables=TABLES
        Optional, only reflect this comma-separated list of
        tables. Wildcarding with '*' is supported, e.g:
        --tables account_*,orders,order_items,*_audit
        -i, --noindexes, --noindex
        Do not emit index information
        -g, --generic-types   Emit generic ANSI column types instead of database-
        specific.
        --encoding=ENCODING   Encoding for output, default utf8
        -e, --example         Generate code with examples how to access data (outdated)
        -3, --z3c             Generate code for use with z3c.sqlalchemy
        
        For more information and sourcecode go to: http://code.google.com/p/sqlautocode/
        
        
Platform: Unix
Platform: Windows
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX
