You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
4 months ago | |
---|---|---|
README.md | 12 months ago | |
examples.py | 12 months ago | |
fastprint.py | 4 months ago |
README.md
Python-Fastprint
Python 3 module to print out long strings of text with intervals of time inbetween
Install:
pip install fastprint
Sync Usage:
from fastprint import pr
pr("long\ntext") # each line takes 1 second
pr("other\n\long\text", 0.2) # each line takes 0.2 seconds
Async usage:
from async_fastprint import async_pr
async def foo:
return async_pr("This\nis\nasynchrounous!")
Check out example.py for more