Coverage for docs_src / parameter_types / file / tutorial003_an_py39.py: 100%
9 statements
« prev ^ index » next coverage.py v7.13.1, created at 2026-02-09 12:36 +0000
« prev ^ index » next coverage.py v7.13.1, created at 2026-02-09 12:36 +0000
1from typing import Annotated 1abcdefgh
3import typer 1abcdefgh
5app = typer.Typer() 1abcdefgh
8@app.command() 1abcdefgh
9def main(file: Annotated[typer.FileBinaryRead, typer.Option()]): 1abcdefgh
10 processed_total = 0 1abcdefgh
11 for bytes_chunk in file: 1abcdefgh
12 # Process the bytes in bytes_chunk
13 processed_total += len(bytes_chunk) 1abcdefgh
14 print(f"Processed bytes total: {processed_total}") 1abcdefgh
17if __name__ == "__main__": 1abcdefgh
18 app() 1abcdefgh