Context Manager in PythonIn this tutorial, we will learn about “Context Manager” in Python and how it is helpful in managing resources, files descriptors, and database connections. Managing Resources: The users use resources like file operations, or database connections are very common in any programming language. But all these resources have a limit. Therefore, the main problem is to make sure these resources will release after usage. Because if they are not released, this could lead to resources leakage, which may cause either slow down the system or crash. If the machine is set up in the system of users, which can automatically teardown the resources, it can be very helpful. In Python, the users can achieve this by using context managers, which are used for facilitating the proper handling of the resources. The most popular way of performing file operations is by using the “with” keyword in Python. Example 1: Let’s see an example of file management. When a file is opened, the file descriptors will be consumed, which is a limited resource. The process can open only a limited number of files at a time. Example 2: Output: OSError Traceback (most recent call last) The above example is the case of the file descriptors leakage. An error occurred saying, “Too many open files”. This has happened because there are so many open files, and they are not closed. There may be a chance where the users may have forgot to close the open files. How to Manage Resources using Context ManagerIt is tough to close a file in all the places if the block of the program raises an exception or has any complex algorithm with numerous return paths. Most of the time, the users use “try-except-finally” in other programming languages while working with the file to make sure that the file resource is closed after usage, even if there is an exception. But in Python, they can use “Context Manager” for managing resources. The users can use the “with” keyword. When it gets evaluated, it will result in an object that can perform context management. We can write context managers by using classes or functions with decorators. How to Create a Context Manager:When the user creates a context manager, they need to make sure that the class has the following methods: __enter__() and __exit__(). The __enter__() method will return the resource that has to be managed. The __exit__() method will not return anything but perform the clean-up operations. Let’s see an example:
Example: Output The 'init' method is called The 'enter' method is called The 'with' statement is block The 'exit' method is called Example – In the above code we have created the “context_manager” object. That is assigned to the variable after the “as” keyword, that is, manager. After running the program, the following methods got executed in the sequence:
File Management by using Context Manager:Now, we will apply the above concept for creating the class, which can help in file resource management. The “file_manager” class will help open the file, read or write content, and then close the file. Example: Output: True How to perform File Management by using Context Manager and “with” StatementAfter the user execute the “with” statement block, the operations will get executed in the following sequence:
How to Manage the Database Connection by using Context MangerNow, we will show how to create a simple database connection management system. There is a limit in opening the number of database connections at a time, sane as File descriptors. Therefore, we use context manager, as it is helpful in managing the connections to the database as the user might have forgotten to close the collection. Install pymongo: To manage the database connection through the content manager, the user first has to install the “pymongo” library by using the following command: Example: Output: Test Explanation: In the above code, after executing the “with” statement block, the following operations will happen in the sequence.
ConclusionIn this tutorial, we have discussed content manager in Python, how to create Content Manager, and how it can help in Resources Management, File management, and managing Database connections. |
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/263426.html