Async Thrift server and client
Project description
Asyncio implementation for thrift protocol, which is heavily based on thriftpy.
Documentation: https://aiothrift.readthedocs.org/
Installation
$ pip install aiothrift
Usage example
Thrift file
service PingPong { string ping(), i64 add(1:i32 a, 2:i64 b), }
Server
import asyncio
import aiothrift
pingpong_thrift = aiothrift.load('pingpong.thrift', module_name='pingpong_thrift')
class Dispatcher:
def ping(self):
return "pong"
async def add(self, a, b):
await asyncio.sleep(1)
return a + b
async def main():
server = await aiothrift.create_server(pingpong_thrift.PingPong, Dispatcher()))
async with server:
await server.serve_forever()
asyncio.run(main())
Client
import asyncio
import aiothrift
pingpong_thrift = aiothrift.load('pingpong.thrift', module_name='pingpong_thrift')
async def go():
conn = await aiothrift.create_connection(pingpong_thrift.PingPong)
print(await conn.ping())
print(await conn.add(5, 6))
conn.close()
asyncio.run(go)
Or use ConnectionPool
import asyncio
import aiothrift
pingpong_thrift = aiothrift.load('pingpong.thrift', module_name='pingpong_thrift')
async def go():
pool = await aiothrift.create_pool(pingpong_thrift.PingPong)
async with pool as c:
print(await c.ping())
print(await c.add(5, 6))
pool.close()
await pool.wait_closed()
asyncio.run(go())
It’s just that simple to begin with aiothrift, and you are not forced to use aiothrift on both server and client side. So if you already have a normal thrift server setup, feel free to create an async thrift client to communicate with that server.
Requirements
Python >= 3.4.2
LICENSE
aiothrift is offered under the MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
aiothrift-0.2.0.tar.gz
(11.7 kB
view details)
Built Distribution
aiothrift-0.2.0-py3-none-any.whl
(12.9 kB
view details)
File details
Details for the file aiothrift-0.2.0.tar.gz
.
File metadata
- Download URL: aiothrift-0.2.0.tar.gz
- Upload date:
- Size: 11.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.0 CPython/3.8.0 Darwin/19.0.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 89c380d2a62d0cbb124fe964ccdd4e2071b2ef4db935f0a6123783b1ec96f6ba |
|
MD5 | 5c16d01c7212a8a76aaf550c9770e310 |
|
BLAKE2b-256 | 92aa1667efa3d5ac9292d65e5b5611ff35a4d9c1d306e7fe433beb271b5baac5 |
File details
Details for the file aiothrift-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: aiothrift-0.2.0-py3-none-any.whl
- Upload date:
- Size: 12.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.0 CPython/3.8.0 Darwin/19.0.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dbaef3ddda048166a75e2311991320c23aca5ab25fc6773542f675a18ac048d0 |
|
MD5 | da68b021daeeaa925632a7cfd495bc40 |
|
BLAKE2b-256 | 0921706438cb030a8af97e510dcefd9c20f89d07860e2ac9ed4744ee8326c554 |