Advertisement

You're blocking ads, which pay for BlenderNation. Read about other ways to support us.

Blender Python Bites #7 – Implementing your own Context Managers

0

Salai Vedha Viradhan writes:

If you have ever used Python, you would have definitely come across the 'with' statement. It’s widely used when reading from or writing to files on the disk. But, ever wondered what are we getting out of using the 'with' statement exactly?

The 'with' statement allows us to create a context manager (not related to bpy.context in Blender) in Python. Context managers solve the problem of ‘setup’ and ‘teardown’. The ‘setup’ is done when you enter into a with block and the ‘teardown’ is done when you leave its scope.

Context managers can help us greatly eliminate repetitive boilerplate from our code by taking care of ‘setup’ and ‘teardown’.

Here’s how you can implement your own:

About the Author

Salai Vedha Viradhan

I am a tech enthusiast from India, currently based out of Chennai. I am interested in Python, Blender, Three.js, GLTF, Web Development, and 3D graphics in general. I have experience in building CLIs, tools for manipulating 3D assets, automating processes, 3D visualization, etc. I write regularly on my blog and Twitter.

Leave A Reply

To add a profile picture to your message, register your email address with Gravatar.com. To protect your email address, create an account on BlenderNation and log in when posting a message.

Advertisement

×