#!/usr/bin/env python3 """ Hello World - A simple demo script for the tools subdomain This script demonstrates the UV dependency management pattern. To use: curl https://ai-insight-solutions.com/tools/hello_world.py | uv run - Dependencies: - rich: For beautiful terminal output """ # UV dependency declaration # /// script # dependencies = [ # "rich>=13.6.0" # ] # /// from rich.console import Console def main(): """Main function that demonstrates the script capabilities""" console = Console() console.print("[bold]Hello World![/bold]") if __name__ == "__main__": main()