github.com/anuvu/tyk@v2.9.0-beta9-dl-apic+incompatible/coprocess/python/tyk/event.py (about)

     1  from importlib import import_module
     2  import json
     3  
     4  import tyk.decorators as decorators
     5  
     6  class TykEvent:
     7      def __init__(self, event_json):
     8          self.__dict__ = json.loads(event_json)
     9          pass