Repository URL to install this package:
|
Version:
5.15.7 ▾
|
import os
from ulauncher.config import CACHE_DIR
from ulauncher.utils.db.KeyValueDb import KeyValueDb
from ulauncher.utils.decorator.singleton import singleton
class AppCacheDb(KeyValueDb):
@classmethod
@singleton
def get_instance(cls):
db = cls(os.path.join(CACHE_DIR, 'app_cache.db'))
db.open()
return db