mirror of
https://github.com/kennethreitz/replit-py.git
synced 2026-06-05 23:10:18 +00:00
13 lines
220 B
Python
13 lines
220 B
Python
"""The replit python module."""
|
|
from . import maqpy
|
|
from .audio import Audio
|
|
from .database import db
|
|
|
|
|
|
def clear() -> None:
|
|
"""Clear the terminal."""
|
|
print("\033[H\033[2J", end="", flush=True)
|
|
|
|
|
|
audio = Audio()
|