mirror of
https://github.com/Neocky/pluGET.git
synced 2024-04-29 16:12:30 +00:00
commit
a7b528d25d
@ -520,6 +520,18 @@ def search_plugin_spiget(plugin_file: str, plugin_file_name: str, plugin_file_ve
|
||||
"""
|
||||
url = f"https://api.spiget.org/v2/search/resources/{plugin_file_name}?field=name&sort=-downloads"
|
||||
plugin_list = api_do_request(url)
|
||||
|
||||
# Handle failed api request
|
||||
"""
|
||||
{'error': 'Unexpected Exception', 'msg': 'Unexpected Exception. Please report this to
|
||||
https://github.com/SpiGetOrg/api.spiget.org/issues'}
|
||||
"""
|
||||
if "error" in plugin_list:
|
||||
rich_print_error(
|
||||
f"[not bold]Error: Spiget error occurred whilst searching for plugin '{plugin_file}': {plugin_list['msg']}"
|
||||
)
|
||||
return plugin_list['msg']
|
||||
else:
|
||||
plugin_file_version2 = plugin_file_version
|
||||
for i in range(4):
|
||||
if i == 1:
|
||||
|
@ -21,6 +21,7 @@ def rename_console_title() -> None:
|
||||
"""
|
||||
Renames the console title on first startup
|
||||
"""
|
||||
if os.name == "nt":
|
||||
os.system("title " + "pluGET │ By Neocky")
|
||||
return None
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user