Context Managers in Python


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Context Managers in Python
# 1  
Old 09-12-2015
Context Managers in Python

Could anyone please explain Context Managers in Python with some detailed example or any URL that explains in detail?

Initially tried to get some help from google... but not much satisfied.

Thanks in advance...

Regards,
J
# 2  
Old 09-12-2015
A Context Manager is any class that must, at least, implement a __enter__() method and a __exit__() method. The purpose of this class is to setup, or build up an object and tear it down when you are done with it.
The __enter__() method would initialize the object, it would utilized the try, except and finally statements, and it would produce a proper return.
The __exit__() method would do the proper clean up after the object is not necessary any longer.

A common example of using a Context Manager is with opening files.
If you do it manually, you would have to do the checks necessary: that the file exists, that it can be accessed and opened, etc. After that you need to release the object file by closing it. This setup and tear-down action can be taken care of, nicely, using a Context Manager.

Last edited by Aia; 09-12-2015 at 08:57 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. Programming

Create a C source and compile inside Python 1.4.0 to 3.7.0 in Python for ALL? platforms...

Hi all... As you know I like making code backwards compatible for as many platforms as possible. This Python script was in fact dedicated for the AMIGA A1200 using Pythons 1.4.0, 1.5.2, 1.6.0, 2.0.1, and 2.4.6 as that is all we have for varying levels of upgrades from a HDD and 4MB FastRam... (1 Reply)
Discussion started by: wisecracker
1 Replies

2. Shell Programming and Scripting

Questions related to if in awk context and if without awk context

I wrote this code, questions follow #! /bin/bash -f # Purpose - to show how if syntax is used within an awk clear; ls -l; echo "This will print out the first two columns of the inputted file in this directory"; echo "Enter filename found in this directory"; read input; ... (11 Replies)
Discussion started by: Seth
11 Replies

3. Solaris

Solaris 10 Window Managers

Hello all, I just discovered something weird in my system, well maybe you already knew it, but it's new for me, i was looking for a file when i ended up in the /opt/sfw folder, and well, first i saw the bin folder, so i entered and discovered a bunch of programs that installed with the companion... (0 Replies)
Discussion started by: sx3v1l_1n51de
0 Replies

4. Linux

Question regarding window managers

Does anyone know of an article, or tutorial concerning the development of a window manager ? I would like to create my own window manager, and maybe even a small lightweight widget set, but I haven't been able to find any texts containing the theory behind the creation of a new window manager.... (4 Replies)
Discussion started by: NanoSec
4 Replies
Login or Register to Ask a Question