python
36 lines · 6 steps
Writing context managers in Python
Two classes show how __enter__ and __exit__ guarantee setup and teardown, even when exceptions strike.
Explained by
highlit
1class FileManager:
2 """A context manager that safely opens and closes a file."""
3
4 def __init__(self, path, mode="r"):
5 self.path = path
6 self.mode = mode
7 self.file = None
8
9 def __enter__(self):
10 self.file = open(self.path, self.mode)
11 return self.file
12
13 def __exit__(self, exc_type, exc_value, traceback):
14 if self.file:
15 self.file.close()
16 # Returning False lets any exception propagate;
17 # returning True would suppress it.
18 return False
19
20
21class Transaction:
22 """Commits on success, rolls back if an exception occurred."""
23
24 def __init__(self, connection):
25 self.connection = connection
26
27 def __enter__(self):
28 self.connection.begin()
29 return self.connection
30
31 def __exit__(self, exc_type, exc_value, traceback):
32 if exc_type is None:
33 self.connection.commit()
34 else:
35 self.connection.rollback()
36 return False
01 / 01
STEP 01
‹ swipe to step through ›
Walkthrough
Space play
←→ step
click any line
Three takeaways
- 1Implementing __enter__ and __exit__ makes any object usable in a with-block.
- 2__exit__ always runs, which is what makes it the right place for cleanup.
- 3The return value of __exit__ decides whether an exception is swallowed or propagated.
Related explainers
python
import argparse import sys from pathlib import Path
Building a subcommand CLI with argparse
cli
argparse
subcommands
Intermediate
6 steps
python
from collections.abc import Mapping from typing import Any, Iterator
Flattening nested config into dotted keys
recursion
generators
tree-traversal
Intermediate
7 steps
python
import csv import io from datetime import datetime
Streaming a CSV export in Flask
streaming
generators
csv
Intermediate
9 steps
python
import time from collections import defaultdict from threading import Lock
Sliding-window login rate limiting in Flask
rate-limiting
sliding-window
thread-safety
Intermediate
7 steps
python
from django.conf import settings from django.contrib.auth import get_user_model from django.core.mail import EmailMultiAlternatives from django.db.models.signals import post_save
Sending a welcome email with Django signals
signals
email
user-activation
Intermediate
8 steps
python
import csv import io from datetime import date
Streaming a CSV export in FastAPI
streaming
async-generators
csv
Advanced
8 steps
Share this explainer
Here's the card — post it anywhere.
Made with highlit — turn any snippet into a walkthrough like this in about a minute.
Explain your code
Embed this explainer
Drop the interactive walkthrough into a blog or docs. Views never cost a credit.
<iframe src="https://highlit.co/explainers/writing-context-managers-in-python-explained-python-6b43/embed?autoplay=1" width="100%" height="520" loading="lazy" style="border:0"></iframe>
Autoplay is on by default — add ?autoplay=0 to start paused.