The with open
statement is a particularly convenient feature in Python, allowing for automatic closure of objects when operations are completed. For custom objects, it’s also possible to support the with
syntax.
To achieve this, define the __enter__
and __exit__
methods in your class:
1 | class MyClass(object): |
With this setup, when using the with
statement, it will first execute the content within __enter__
, and automatically execute the content within __exit__
at the end of the code block.
1 | >>> with MyClass() as tClass: |