Pywriter is a Python module for printing text to your console or terminal in the classic typewriter effect.
Use the package manager pip to install pywriter.
pip install pywriter
import pywriter as pw
# returns 'Hello World!' character by character at the rate of one character per second
pw.write('Hello World!', rate=1)
# Let's introduce my latest features
pw.writer('Hello World!', rate=1)
pw.typewriter('Hello World!', new="Jesse", idx=6, rate=1)
# You can decide to exclude the rate argument.
# That will print out your text at the default rate of 0.035
from pywriter import write, writer, typewriter
# returns 'Hello World!' character by character at the rate of one character per second
write('Hello World!', rate=1)
# Let's introduce my latest features
writer('Hello World!', rate=1)
typewriter('Hello World!', new="Jesse", idx=6, rate=1)
# However, it is recommended that you use pywriter.write
#instead of using the write function directly.
# Since this will help prevent any conflict in case there
#is another python module which also has a write function.
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
- Adding more features soon.
-
👨💻 All of my projects are available at https://www.github.com/amarquaye.
-
📫 You can reach me via mail.
If you have any feedback, please reach out to me.