How to use the extensions.bas_extension.BaseExtension.__init__ function in extensions

To help you get started, we’ve selected a few extensions examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github wowdd1 / xlinkBook / extensions / content / content.py View on Github external
def __init__(self):
        BaseExtension.__init__(self)
        self.utils = Utils()
        self.data_dir = 'extensions/content/data/'
        self.data_type = 'content'
        self.contentref = ''
github wowdd1 / xlinkBook / extensions / reference / reference.py View on Github external
def __init__(self):
        BaseExtension.__init__(self)
        self.utils = Utils()
        self.semanticscholar = Semanticscholar()
        self.category_obj = Category()
        self.helper = YoutubeHelper()
github wowdd1 / xlinkBook / extensions / search / search.py View on Github external
def __init__(self):
        BaseExtension.__init__(self)
        self.utils = Utils()
github wowdd1 / xlinkBook / extensions / filefinder / filefinder.py View on Github external
def __init__(self):
        BaseExtension.__init__(self)
        self.utils = Utils()
github wowdd1 / xlinkBook / extensions / history / history.py View on Github external
def __init__(self):
        BaseExtension.__init__(self)
        self.utils = Utils()
        #self.loadHistory()
        self.form_dict = None
        self.divID = ''
github wowdd1 / xlinkBook / extensions / keyword / keyword.py View on Github external
def __init__(self):
        BaseExtension.__init__(self)
        self.utils = Utils()
github wowdd1 / xlinkBook / extensions / bookmark / bookmark.py View on Github external
def __init__(self):
        BaseExtension.__init__(self)
        self.utils = Utils()
        self.loadBookmark()
        self.form_dict = None
github wowdd1 / xlinkBook / extensions / save / save.py View on Github external
def __init__(self):
        BaseExtension.__init__(self)
        self.utils = Utils()
github wowdd1 / xlinkBook / extensions / pathways / pathways.py View on Github external
def __init__(self):
	BaseExtension.__init__(self)
	self.utils = Utils()