def __init__(self): launchy.Plugin.__init__(self) self.icon = os.path.join(launchy.getIconsPath(), "pydiry.ico") self.hash = launchy.hash(self.getName()) self.labelHash = launchy.hash("pydiry") self.dirs = CaselessDict()
def __init__(self): launchy.Plugin.__init__(self) self.icon = os.path.join(launchy.getIconsPath(), "weby.png") self.hash = launchy.hash(self.getName()) self.labelHash = launchy.hash("pywebindex") self.widget = None self.masterPages = [] self.db = LinksDB()
def __init__(self): launchy.Plugin.__init__(self) self.hash = launchy.hash(self.getName()) # self.labelHash = launchy.hash("pydiry") self.dirs = CaselessDict()
def __init__(self): """ Every plugin should have the following __init__ function. """ launchy.Plugin.__init__(self) self.addons = [] self.name = "Thruster" self.id = launchy.hash(self.name) self.icon = os.path.join(launchy.getIconsPath(), "%s.png" % self.name)
def __init__(self): launchy.Plugin.__init__(self) self.name = "pybookkeeper" self.hash = launchy.hash(self.name) self.icon = os.path.join(launchy.getIconsPath(), "pybookkeeper.png") self.bookmarks = {} BOOKKEEPPER_DEBUG("instance created: %s" % self) BOOKKEEPPER_DEBUG("name: %s" % self.name) BOOKKEEPPER_DEBUG("hash: %s" % self.hash) BOOKKEEPPER_DEBUG("icon: %s" % self.icon)
def __init__(self): super(LaunchySQLite, self).__init__() self.name = "SQLite" self.hash = launchy.hash(self.name) self.icon = os.path.join(launchy.getIconsPath(), "pysimple.png") script_path = launchy.getScriptsPath() config_filename = os.path.join(script_path, "sqlite_config.json") self.config = read_json(config_filename) self.database_filename = self.config["database"] self.conn = None
def __init__(self): launchy.Plugin.__init__(self) self.icon = os.path.join(launchy.getIconsPath(), "python.ico") self.hash = launchy.hash(self.getName())
def __init__(self): launchy.Plugin.__init__(self) self.icon = os.path.join(launchy.getIconsPath(), "python.ico") self.hash = launchy.hash(self.getName()) self.fileCache = [] self.lastCacheUpdate = 0 # Should cause cache on first time
def resetAddonId(self): self.id = launchy.hash(self.getAddonName())
def __init__(self): launchy.Plugin.__init__(self) self.name = 'FooLaunchy' self.hash = launchy.hash(self.name) self.icon = os.path.join(launchy.getIconsPath(), 'foobar2000_64.png')
def __init__(self): launchy.Plugin.__init__(self) self.name = "PyMusicbeeQueue" self.hash = launchy.hash(self.name) self.icon = os.path.join(launchy.getIconsPath(), "musicbee.png")
def __init__(self): launchy.Plugin.__init__(self) self.icon = os.path.join(launchy.getIconsPath(), "pysimple.png") self.hash = launchy.hash(self.getName()) self.labelHash = launchy.hash("pyverby")
def __init__(self): launchy.Plugin.__init__(self) ### 2 self.name = "PySimple" ### 3 self.hash = launchy.hash(self.name) self.icon = os.path.join(launchy.getIconsPath(), "pysimple.png")
def __init__(self): launchy.Plugin.__init__(self) self.icon = os.path.join(launchy.getIconsPath(), "pycalc.ico") self.hash = launchy.hash(self.getName()) self.labelHash = launchy.hash("pycalc")
def __init__(self): launchy.Plugin.__init__(self) self.name = "pyEverything" self.hash = launchy.hash(self.name) self.icon = os.path.join(launchy.getIconsPath(), "everything.png")
def __init__(self): launchy.Plugin.__init__(self) self.hash = launchy.hash(self.getName())
def __init__(self): launchy.Plugin.__init__(self) self.hash = launchy.hash(self.getName()) self.dirs = CaselessDict()