Metadata-Version: 2.1
Name: aiosearchads
Version: 0.0.1
Summary: Asynchronous apple searchads framework for asyncio and Python
Home-page: https://github.com/linzhiming0826/aiosearchads
Author: TuoX
Author-email: 120549827@qq.com
License: MIT
Platform: any
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
Requires-Dist: aiohttp (>=3.6.2)



## Aiosearchads

### Asynchronous apple searchads framework for asyncio and Python

## Document

[click me](https://aiosearchads.readthedocs.io)

## Installation
```linux
pip install aiosearchads
```

## Simple uses
```python
import asyncio
import aiomysql
from aiomysql_core import AioMysqlCore


async def test_example(loop):
    pool = await aiomysql.create_pool(host='', port=3306,
                                      user='', password='',
                                      db='', loop=loop)
    core = AioMysqlCore(pool=pool)
    rows = await core.query('select * from users where uid=%s', 113)
    print(rows)
    rows = await core.gener('select * from users limit 100')
    async for row in rows:
        print(row)
    row = await core.get('select * from users where uid=%(uid)s', {'uid': 113})
    print(row)
    rowcount = await core.execute_rowcount('select * from users where uid=%(uid)s', {'uid': 113})
    print(rowcount)
    pool.close()
    await pool.wait_closed()


loop = asyncio.get_event_loop()
loop.run_until_complete(test_example(loop))
```


