TQPQVWNKJLT43UDQN2I4AXWXUMGSAS7XE52SFONZO2PPYII3TFTQC '''Name: File Management System.Details:## this file should implement A manager class for reading, writing and deleting to/from files.## Also it should convert the extracted information to the proper type.## the operations that should be implemented are CRUD "Create - Read - Update - Delete"Author: Zee93'''import jsonclass Manager(object):def create(name):passdef read(fname):with open('data/' + fname + '.json', 'r+') as p_file:projects = json.load(p_file)return [project.get('name') for project in projects]def update(name):passdef delete(name):passmanager = Manager()