Using the URLconf defined in MyFirstProject.urls, Django tried these URL patterns, in this order:
1. admin/
2. about/
3. home/
The empty path didn't match any of these.
import msvcrt
import sys
text = "This is just a long text"
for c in text:
while True:
if msvcrt.kbhit():
msvcrt.getch()
print(c, end='', flush=True)
break
sys.stdout.flush()