This introduces the FastAPI editor implementation and related project setup so the app can be run and validated locally. Made-with: Cursor
7 lines
83 B
Python
7 lines
83 B
Python
from time import sleep
|
|
|
|
i = 0
|
|
while True:
|
|
print(f"Hello {i}")
|
|
i += 1
|
|
sleep(1) |