Files
TexTeller/texteller/cli/commands/web/__init__.py

10 lines
206 B
Python
Raw Normal View History

2025-04-16 14:23:02 +00:00
import os
import click
from pathlib import Path
@click.command()
def web():
"""Launch the web interface for TexTeller."""
os.system(f"streamlit run {Path(__file__).parent / 'streamlit_demo.py'}")