Coverage for docs_src / parameter_types / file / tutorial004_py39.py: 100%

10 statements  

« prev     ^ index     » next       coverage.py v7.13.1, created at 2026-02-09 12:36 +0000

1import typer 1abcdefgh

2 

3app = typer.Typer() 1abcdefgh

4 

5 

6@app.command() 1abcdefgh

7def main(file: typer.FileBinaryWrite = typer.Option(...)): 1abcdefgh

8 first_line_str = "some settings\n" 1abcdefgh

9 # You cannot write str directly to a binary file, you have to encode it to get bytes 

10 first_line_bytes = first_line_str.encode("utf-8") 1abcdefgh

11 # Then you can write the bytes 

12 file.write(first_line_bytes) 1abcdefgh

13 # This is already bytes, it starts with b" 

14 second_line = b"la cig\xc3\xbce\xc3\xb1a trae al ni\xc3\xb1o" 1abcdefgh

15 file.write(second_line) 1abcdefgh

16 print("Binary file written") 1abcdefgh

17 

18 

19if __name__ == "__main__": 1abcdefgh

20 app() 1abcdefgh