Advance python topics and features

Context Managers for resource Management

Python and statement are regularly used with file management, but you can create custom context managers using the python contextlib module.

Advanced Meta programming and Decorators

Decorators can wrap python functions to adjust their behaviour. Users can also create more complex decorators that support nested decorators & parameters for function wrapping.

Dynamic code execution with AST

The Abstract syntax trees module allows python users to analyse & parse and transform python programming language code.

Data Description

Data description in python is the main features and organization of data, like its type & format.

Custom import hooks and meta-importers

Python programming language is the import file system that can be customised using import hooks. Python allows programmers to control how python modules are imported.