Skip to content

crrapi/aioprint

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Provides an asynchronous interface for print by using aiofiles as a backend. (just for fun)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages