Skip to content

Context Managers

Todo

  • ELI5: Context managers
  • Examples you may have encountered
    • with open() as f:
    • with sqlalchemy.Session() as sess:
  • Writing a context manager function with @contextmanager
  • Writing a context manager class
    • The __enter__() and __exit__() methods
    • Handling exceptions

Extra reading