Metadata-Version: 1.0
Name: aiopeewee
Version: 0.2.0
Summary: Async Peewee
Home-page: http://github.com/kszucs/pandahouse
Author: Krisztian Szucs
Author-email: szucs.krisztian@gmail.com
License: BSD
Description: |Build Status|
        
        
        AioPeewee
        =========
        
        Asyncio interface for peewee_ modeled after torpeewee_
        
        Limitations (hopefully resolved in a couple of weeks):
        
        - currently just aiomysql supported
        - untested transactions
        
        More thorough testing is on the way.
        
        Any feedback would be greatly appreciated!
        
        
        Install
        -------
        
        .. code:: bash
        
            pip install aiopeewee
        
        
        Usage
        -----
        
        .. code:: python
        
           from aiopeewee import AioModel
           from peewee import CharField, TextField, DateTimeField
           from peewee import ForeignKeyField, PrimaryKeyField
        
        
           class User(AioModel):
               username = CharField()
        
               class Meta:
                   database = db
        
        
           class Blog(AioModel):
               user = ForeignKeyField(User)
               title = CharField(max_length=25)
               content = TextField(default='')
               pub_date = DateTimeField(null=True)
               pk = PrimaryKeyField()
        
               class Meta:
                   database = db
        
           
           # create connection pool
           await db.connect(loop)
        
           # count
           await User.select().count()
        
           # insert
           user = await User.insert(username='kszucs')
        
           # modify
           user.username = 'krisztian'
           await user.save()
        
           # async iteration on blog set
           [b.title async for b in user.blog_set.order_by(Blog.title)]
        
           # close connection pool
           await db.close()
        
           # see more in the tests
        
                 
        .. _peewee: http://docs.peewee-orm.com/en/latest/
        .. _torpeewee: https://github.com/snower/torpeewee
        
        .. |Build Status| image:: http://drone.lensa.com:8000/api/badges/kszucs/aiopeewee/status.svg
           :target: http://drone.lensa.com:8000/kszucs/pandahouse
        
        
        
Platform: UNKNOWN
