Metadata-Version: 1.0
Name: macaron
Version: 0.2.0
Summary: A simple O/R mapper for SQLite3
Home-page: http://nobrin.github.com/macaron
Author: Nobuo Okazaki
Author-email: UNKNOWN
License: MIT
Description: 
        *Macaron* is a small and simple object-relational mapper (ORM) for SQLite and
        Python. It is distributed as a single file module which has no dependencies
        other than the Python Standard Library.
        
        *Macaron* provides provides easy access methods to SQLite database. And it
        supports Bottle web framework through plugin mechanism.
        
        Example::
        
        >>> import macaron
        >>> macaron.macaronage(dbfile="members.db")
        >>> team = Team.create(name="Houkago Tea Time")
        >>> team.members.append(name="Ritsu", part="Dr")
        <Member object 1>
        >>> mio = team.members.append(name="Mio", part="Ba")
        >>> print mio
        <Member 'Mio : Ba'>
        >>> for member in team.members: print member
        ...
        <Member 'Ritsu : Dr'>
        <Member 'Mio : Ba'>
        
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Database
Classifier: Topic :: Database :: Front-Ends
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
