Modern Text User Interface framework for building cross-platform terminal and web applications with Python
Overall
score
93%
Build a simple command-line task tracker application using Textual that allows users to add tasks, view their task list, and quit the application.
Create a terminal user interface application with the following features:
The application should have a title displayed at the top and accept keyboard commands to control its behavior.
Implement the following keyboard shortcuts:
@generates
from textual.app import App
class TaskTrackerApp(App):
"""A simple task tracker terminal application."""
pass
def main():
"""Entry point for the task tracker application."""
app = TaskTrackerApp()
app.run()Provides the TUI framework for building terminal applications.
@satisfied-by
Install with Tessl CLI
npx tessl i tessl/pypi-textualevals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10