An asynchronous API wrapper for the Piston API.
pip install aiopyston
from pyston import PystonClient, File
import asyncio
async def main():
client = PystonClient()
output = await client.execute("python", [File("print('Hello world')")])
print(output)
loop = asyncio.get_event_loop()
loop.run_until_complete(main())