Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thatonecalculator/python-fastprint
Python 3 module to print out long strings of text with intervals of time inbetween
https://github.com/thatonecalculator/python-fastprint
module pip pip3 print python python3
Last synced: 8 days ago
JSON representation
Python 3 module to print out long strings of text with intervals of time inbetween
- Host: GitHub
- URL: https://github.com/thatonecalculator/python-fastprint
- Owner: ThatOneCalculator
- Created: 2019-02-14T02:03:47.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-01-16T04:06:20.000Z (almost 3 years ago)
- Last Synced: 2024-10-11T23:09:43.846Z (about 1 month ago)
- Topics: module, pip, pip3, print, python, python3
- Language: Python
- Homepage:
- Size: 20.5 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python-Fastprint
Python 3 module to print out long strings of text with intervals of time inbetween
Install:
`pip install fastprint`Sync Usage:
```python
from fastprint import prpr("long\ntext") # each line takes 1 second
pr("other\n\long\text", 0.2) # each line takes 0.2 seconds
```Async usage:
```python
from async_fastprint import async_prasync def foo:
return async_pr("This\nis\nasynchrounous!")
```Check out example.py for more