|
|
@ -32,9 +32,13 @@ def Get(theme,_url= URL) :
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
try:
|
|
|
|
_url = '/'.join([_url,'api','themes','Get']) +f'?theme={theme}'
|
|
|
|
_url = '/'.join([_url,'api','themes','Get']) +f'?theme={theme}'
|
|
|
|
|
|
|
|
try:
|
|
|
|
return requests.get(_url).json()
|
|
|
|
return requests.get(_url).json()
|
|
|
|
except Exception as e:
|
|
|
|
except Exception as e:
|
|
|
|
pass
|
|
|
|
pass
|
|
|
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
except Exception as e:
|
|
|
|
|
|
|
|
pass
|
|
|
|
return {}
|
|
|
|
return {}
|
|
|
|
def installed (path):
|
|
|
|
def installed (path):
|
|
|
|
return os.listdir(os.sep.join([path,'_assets','themes']))
|
|
|
|
return os.listdir(os.sep.join([path,'_assets','themes']))
|
|
|
|