Skip to content

Instantly share code, notes, and snippets.

@kolibril13
Created December 30, 2024 20:40
Show Gist options
  • Save kolibril13/f1c0f2d2083ff207de098edd77dcc963 to your computer and use it in GitHub Desktop.
Save kolibril13/f1c0f2d2083ff207de098edd77dcc963 to your computer and use it in GitHub Desktop.
uv run custom arguments
# /// script
# title = "UV togtether with typer"
# author = "Jan-Hendrik Müller"
# license = "MIT"
# version = "0.0.3"
# classifiers = [
# "License :: OSI Approved :: MIT License",
# "Programming Language :: Python :: 3.12",
# "Topic :: Scientific/Engineering :: Visualization",
# ]
# requires-python = ">=3.12"
# dependencies = [
# "typer",
# ]
# ///
import typer
from typing import Optional
def main(
my_message: Optional[str] = typer.Argument(None)
):
print("Hello World", my_message)
if __name__ == "__main__":
typer.run(main)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment