Created
December 30, 2024 20:40
-
-
Save kolibril13/f1c0f2d2083ff207de098edd77dcc963 to your computer and use it in GitHub Desktop.
uv run custom arguments
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /// 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