Hiding or showing the console cursor on Windows and Unix platforms with the Python Standard Library only
This module use Python Standard Library only. Python version should be higher than 3.10
pip install termcursor
This code works as module not a script.
import termcursor
# hiding the console cursor
termcursor.hidecursor()
# showing the console cursor
termcursor.showcursor()
from termcursor import hidecursor, showcursor
# hiding the console cursor
hidecursor()
# showing the console cursor
showcursor()
import termcursor
help(termcursor)
Example is available in the example.py
Example is available in the example2.py
The content of this repository is licensed under MIT license. For more details, check LICENSE