Welcome to the Python Typer Project! This project is designed to help you quickly create command-line interfaces (CLI) using Python's Typer library.
To install the required dependencies, run:
pip install typerHere's a simple example of how to use Typer in your project:
import typer
def main(name: str):
typer.echo(f"Hello {name}")
if __name__ == "__main__":
typer.run(main)To run the example, use the following command:
python your_script.py NAME- Easy to use
- Automatic help messages
- Supports type annotations
- Built-in validation
Contributions are welcome! Please fork the repository and submit a pull request.
This project is licensed under the MIT License. See the LICENSE file for more details.