A simple Hello World app in Python — built as a first project with Claude Code.
- uv (Python package manager)
uv syncuv run python main.pyOutput:
Hello, World!
uv run pytest.
├── main.py # Application entry point
├── tests/
│ └── test_main.py # Pytest test suite
├── pyproject.toml # Project metadata and dependencies
└── README.md