Skip to main content

Provides an asynchronous interface for print() using aiofiles.

Project description

aioprint

aioprint provides an asynchronous interface for print by using aiofiles as a backend.

Installation

Using PyPI

pip3 install -U aioprint

Using git with this GitHub repo

pip3 install -U git+https://github.com/crrapi/aioprint

Usage

import asyncio
import sys

import aioprint


class A:

    async def __aiostr__(self):
        # The __aiostr__ magic method is preferred
        # over the __str__ method to provide
        # a coroutine interface
        return "pony trick yasuo"

async def main():
    await print(["sub", 2, "pew"], "he is great", end="", sep="LOL")
    a = A()
    await print("error", file=sys.stderr)
    await print(a, file="out.txt")

loop = asyncio.get_event_loop()
loop.run_until_complete(main())

Acknowledgements

Special thanks to Gelbpunkt aka Adrian for reviving this and making it useful

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aioprint-0.0.4.tar.gz (67.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page