Metadata-Version: 1.1
Name: CuriousORM
Version: 1.0.1
Summary: Simple object-relational mapper for Python and PostgreSQL
Home-page: https://github.com/epandurski/CuriousORM
Author: Evgeni Pandurski
Author-email: epandurski@gmail.com
License: Public Domain
Description: 
        This ORM uses a very minimalistic approach. The general idea is that
        the database schema is defined elsewhere (writing the SQL directly, or
        using some specialized software), and all the transactions are
        implemented either as methods in sub-classes of "Database", or as
        stored procedures.
        
        This ORM allows you to very easily: (1) implement complex database
        transactions, (2) call stored procedures, (3) do simple queries. For
        complex queries you should use database views and stored procedures
        that return tables.
        
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: Public Domain
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Database
Classifier: Topic :: Database :: Front-Ends
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Python Modules
