Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 656 Bytes

01_quickstart.md

File metadata and controls

36 lines (24 loc) · 656 Bytes

Quick start

Turn any function into a command line tool:

import chz

def main(name: str, age: int) -> None:
    print(f"Hello, {name}! You are {age} years old.")

if __name__ == "__main__":
    chz.entrypoint(main)

# python script.py name=foo age=21

Or instantiate a class containing your configuration:

import chz

@chz.chz
class PersonConfig:
    name: str
    age: int

def main(c: PersonConfig) -> None:
    print(f"Hello, {c.name}! You are {c.age} years old.")

if __name__ == "__main__":
    chz.nested_entrypoint(main)

# python script.py name=foo age=21