
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Documentation
•
pip install tyro
tyro.cli()
is a tool for generating CLI
interfaces from type-annotated Python.
We can define configurable scripts using functions:
"""A command-line interface defined using a function signature.
Usage: python script_name.py --foo INT [--bar STR]
"""
import tyro
def main(
foo: int,
bar: str = "default",
) -> None:
... # Main body of a script.
if __name__ == "__main__":
# Generate a CLI and call `main` with its two arguments: `foo` and `bar`.
tyro.cli(main)
Or instantiate config objects defined using tools like dataclasses
, pydantic
, and attrs
:
"""A command-line interface defined using a class signature.
Usage: python script_name.py --foo INT [--bar STR]
"""
from dataclasses import dataclass
import tyro
@dataclass
class Config:
foo: int
bar: str = "default"
if __name__ == "__main__":
# Generate a CLI and instantiate `Config` with its two arguments: `foo` and `bar`.
config = tyro.cli(Config)
# Rest of script.
assert isinstance(config, Config) # Should pass.
Other features include helptext generation, nested structures, subcommands, and shell completion. For examples and the API reference, see our documentation.
tyro
?Define things once. Standard Python type annotations, docstrings, and default values are parsed to automatically generate command-line interfaces with informative helptext.
Static types. Unlike tools dependent on dictionaries, YAML, or dynamic
namespaces, arguments populated by tyro
benefit from IDE and language
server-supported operations — tab completion, rename, jump-to-def,
docstrings on hover — as well as static checking tools like pyright
and
mypy
.
Modularity. tyro
supports hierarchical configuration structures, which
make it easy to decentralize definitions, defaults, and documentation.
tyro
is designed to be lightweight enough for throwaway scripts, while
facilitating type safety and modularity for larger projects. Examples:
nerfstudio-project/nerfstudio
| Open-source tools for neural radiance fields. |
Sea-Snell/JAXSeq
| Train very large language models in Jax. |
kevinzakka/obj2mjcf
| Interface for processing OBJ files for Mujoco. |
blurgyy/jaxngp
| CUDA-accelerated implementation of instant-ngp, in JAX. |
NVIDIAGameWorks/kaolin-wisp
| PyTorch library for neural fields. |
autonomousvision/sdfstudio
| Unified framework for surface reconstruction. |
openrlbenchmark/openrlbenchmark
| Collection of tracked experiments for reinforcement learning. |
vwxyzjn/cleanrl
| Single-file implementation of deep RL algorithms. |
tyro
is an opinionated library. If any design decisions don't make sense,
feel free to file an issue!
You might also consider one of many alternative libraries. Some that we particularly like:
We also have some notes on tyro
's design goals and other alternatives in the
docs here.
FAQs
CLI interfaces & config objects, from types
We found that tyro demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.