tessl install tessl/pypi-textual@6.1.0Modern Text User Interface framework for building cross-platform terminal and web applications with Python
Agent Success
Agent success rate when using this tile
93%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.18x
Baseline
Agent success rate without this tile
79%
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