mirror of
https://github.com/Neocky/pluGET.git
synced 2024-04-29 16:12:30 +00:00
Added OS independent installer and finished console output
This commit is contained in:
parent
4920689f0e
commit
8e51b1976d
3
.gitignore
vendored
3
.gitignore
vendored
@ -133,3 +133,6 @@ dmypy.json
|
|||||||
|
|
||||||
# PyCharm Settings
|
# PyCharm Settings
|
||||||
.idea
|
.idea
|
||||||
|
|
||||||
|
# pluGET Files
|
||||||
|
pluGET_config.yaml
|
||||||
|
12
install_requirements.py
Normal file
12
install_requirements.py
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
"""
|
||||||
|
Install the needed python packages through this script
|
||||||
|
"""
|
||||||
|
|
||||||
|
import os
|
||||||
|
|
||||||
|
try:
|
||||||
|
print("Installing Python packages and dependencies from requirements.txt...")
|
||||||
|
os.system('py -m pip install -r requirements.txt' if os.name=='nt' else 'pip install -r requirements.txt')
|
||||||
|
except:
|
||||||
|
print("Requirements couldn't be installed. Check if file 'requirements.txt' is in the same folder and that Python3\
|
||||||
|
and pip is installed!")
|
@ -1,34 +0,0 @@
|
|||||||
@ECHO OFF
|
|
||||||
|
|
||||||
cd /d %~dp0
|
|
||||||
|
|
||||||
Echo ___ ___ ___ ___ ___ ___
|
|
||||||
Echo /\ \ /\__\ /\__\ /\ \ /\ \ /\ \
|
|
||||||
Echo /::\ \ /:/ / /:/ / /::\ \ /::\ \ \:\ \
|
|
||||||
Echo /:/\:\ \ /:/ / /:/ / /:/\:\ \ /:/\:\ \ \:\ \
|
|
||||||
Echo /::\~\:\ \ /:/ / /:/ / ___ /:/ \:\ \ /::\~\:\ \ /::\ \
|
|
||||||
Echo /:/\:\ \:\__\ /:/__/ /:/__/ /\__\ /:/__/_\:\__\ /:/\:\ \:\__\ /:/\:\__\
|
|
||||||
Echo \/__\:\/:/ / \:\ \ \:\ \ /:/ / \:\ /\ \/__/ \:\~\:\ \/__/ /:/ \/__/
|
|
||||||
Echo \::/ / \:\ \ \:\ /:/ / \:\ \:\__\ \:\ \:\__\ /:/ /
|
|
||||||
Echo \/__/ \:\ \ \:\/:/ / \:\/:/ / \:\ \/__/ \/__/
|
|
||||||
Echo \:\__\ \::/ / \::/ / \:\__\
|
|
||||||
Echo \/__/ \/__/ \/__/ \/__/
|
|
||||||
Echo `
|
|
||||||
Echo `
|
|
||||||
Echo ------------------------------------
|
|
||||||
Echo [By Neocky]
|
|
||||||
Echo https://github.com/Neocky/pluGET
|
|
||||||
Echo pluGET-Installer
|
|
||||||
Echo ------------------------------------
|
|
||||||
Echo `
|
|
||||||
Echo ----------------------------------------------------------------------------------
|
|
||||||
Echo [93mInstalling Python packages and dependencies...[0m
|
|
||||||
|
|
||||||
py -m pip install -r requirements.txt
|
|
||||||
|
|
||||||
Echo `
|
|
||||||
Echo [92mLaunching pluGET...[0m
|
|
||||||
|
|
||||||
launcher.bat
|
|
||||||
|
|
||||||
exit
|
|
@ -1,4 +0,0 @@
|
|||||||
@ECHO OFF
|
|
||||||
cd "%~dp0"
|
|
||||||
cd src
|
|
||||||
py "__main__.py"
|
|
@ -1,3 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
cd src/
|
|
||||||
python3 "__main__.py"
|
|
@ -16,6 +16,7 @@ except:
|
|||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
check_config()
|
check_config()
|
||||||
|
rename_console_title()
|
||||||
#check_requirements()
|
#check_requirements()
|
||||||
parser = argparse.ArgumentParser(description="Just an example",
|
parser = argparse.ArgumentParser(description="Just an example",
|
||||||
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
|
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
|
||||||
@ -30,14 +31,10 @@ if __name__ == "__main__":
|
|||||||
|
|
||||||
else:
|
else:
|
||||||
print("no arguments")
|
print("no arguments")
|
||||||
#consoleTitle()
|
clear_console()
|
||||||
#clearConsole()
|
|
||||||
#createInputLists()
|
#createInputLists()
|
||||||
#printMainMenu()
|
|
||||||
#getInput()
|
#getInput()
|
||||||
rename_console_title()
|
print_logo()
|
||||||
clear_console()
|
|
||||||
print_logo()
|
|
||||||
config = config_value()
|
config = config_value()
|
||||||
validate_config()
|
validate_config()
|
||||||
print(config.connection)
|
print(config.connection)
|
||||||
|
@ -17,7 +17,7 @@ class config_value():
|
|||||||
"""
|
"""
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
yaml = ruamel.yaml.YAML()
|
yaml = ruamel.yaml.YAML()
|
||||||
with open("pluget_config.yaml", "r") as config_file:
|
with open("pluGET_config.yaml", "r") as config_file:
|
||||||
data = yaml.load(config_file)
|
data = yaml.load(config_file)
|
||||||
self.connection = data["Connection"]
|
self.connection = data["Connection"]
|
||||||
self.path_to_plugin_folder = Path(data["Local"]["PathToPluginFolder"])
|
self.path_to_plugin_folder = Path(data["Local"]["PathToPluginFolder"])
|
||||||
@ -35,16 +35,16 @@ class config_value():
|
|||||||
|
|
||||||
def check_config() -> None:
|
def check_config() -> None:
|
||||||
"""
|
"""
|
||||||
Check if there is a pluget_config.yml file in the same folder as pluget.py and if not create a new config
|
Check if there is a pluGET_config.yml file in the same folder as pluget.py and if not create a new config
|
||||||
and exit the programm
|
and exit the programm
|
||||||
"""
|
"""
|
||||||
if not os.path.isfile("pluget_config.yaml"):
|
if not os.path.isfile("pluGET_config.yaml"):
|
||||||
create_config()
|
create_config()
|
||||||
|
|
||||||
|
|
||||||
def create_config() -> None:
|
def create_config() -> None:
|
||||||
"""
|
"""
|
||||||
Creates the yaml config in the current directory with the filename pluget_config.yml
|
Creates the yaml config in the current directory with the filename pluGET_config.yml
|
||||||
"""
|
"""
|
||||||
# this is the whole yaml code because of weird formating indention is not possible
|
# this is the whole yaml code because of weird formating indention is not possible
|
||||||
configuration = """\
|
configuration = """\
|
||||||
@ -78,11 +78,10 @@ def create_config() -> None:
|
|||||||
# load ruamel.yaml to get the # commands right in the yaml code
|
# load ruamel.yaml to get the # commands right in the yaml code
|
||||||
yaml = ruamel.yaml.YAML()
|
yaml = ruamel.yaml.YAML()
|
||||||
code = yaml.load(configuration)
|
code = yaml.load(configuration)
|
||||||
print(code['Local']['SeperateDownloadPath'])
|
with open("pluGET_config.yaml", "w") as config_file:
|
||||||
with open("pluget_config.yaml", "w") as config_file:
|
|
||||||
yaml.dump(code, config_file)
|
yaml.dump(code, config_file)
|
||||||
|
|
||||||
config_file_path = os.path.abspath("pluget_config.yaml")
|
config_file_path = os.path.abspath("pluGET_config.yaml")
|
||||||
print(f"Path of config file: {config_file_path}")
|
print(f"Path of config file: {config_file_path}")
|
||||||
print("Config created. Edit config before executing again!")
|
print("Config created. Edit config before executing again!")
|
||||||
input("Press any key + enter to exit...")
|
input("Press any key + enter to exit...")
|
||||||
|
@ -19,7 +19,12 @@ def clear_console() -> None:
|
|||||||
"""
|
"""
|
||||||
os.system('cls' if os.name=='nt' else 'clear')
|
os.system('cls' if os.name=='nt' else 'clear')
|
||||||
|
|
||||||
|
|
||||||
def print_logo() -> None:
|
def print_logo() -> None:
|
||||||
|
"""
|
||||||
|
Prints the logo of pluGET and the link to the github repo
|
||||||
|
"""
|
||||||
|
# use rich console
|
||||||
console = Console()
|
console = Console()
|
||||||
# line 1
|
# line 1
|
||||||
console.print()
|
console.print()
|
||||||
@ -56,18 +61,66 @@ def print_logo() -> None:
|
|||||||
console.print("██", style="bright_magenta", end='')
|
console.print("██", style="bright_magenta", end='')
|
||||||
console.print("╔══╝", style="bright_yellow")
|
console.print("╔══╝", style="bright_yellow")
|
||||||
# line 4
|
# line 4
|
||||||
console.print(" ██████╔╝██║ ██║ ██║██║ ███╗█████╗ ██║ ")
|
console.print(" ██████", style="bright_magenta", end='')
|
||||||
|
console.print("╔╝", style="bright_yellow", end='')
|
||||||
|
console.print("██", style="bright_magenta", end='')
|
||||||
|
console.print("║ ", style="bright_yellow", end='')
|
||||||
|
console.print("██", style="bright_magenta", end='')
|
||||||
|
console.print("║ ", style="bright_yellow", end='')
|
||||||
|
console.print("██", style="bright_magenta", end='')
|
||||||
|
console.print("║", style="bright_yellow", end='')
|
||||||
|
console.print("██", style="bright_magenta", end='')
|
||||||
|
console.print("║ ", style="bright_yellow", end='')
|
||||||
|
console.print("███", style="bright_magenta", end='')
|
||||||
|
console.print("╗", style="bright_yellow", end='')
|
||||||
|
console.print("█████", style="bright_magenta", end='')
|
||||||
|
console.print("╗ ", style="bright_yellow", end='')
|
||||||
|
console.print("██", style="bright_magenta", end='')
|
||||||
|
console.print("║ ", style="bright_yellow")
|
||||||
# line 5
|
# line 5
|
||||||
console.print(" ██╔═══╝ ██║ ██║ ██║██║ ██║██╔══╝ ██║ ")
|
console.print(" ██", style="bright_magenta", end='')
|
||||||
|
console.print("╔═══╝ ", style="bright_yellow", end='')
|
||||||
|
console.print("██", style="bright_magenta", end='')
|
||||||
|
console.print("║ ", style="bright_yellow", end='')
|
||||||
|
console.print("██", style="bright_magenta", end='')
|
||||||
|
console.print("║ ", style="bright_yellow", end='')
|
||||||
|
console.print("██", style="bright_magenta", end='')
|
||||||
|
console.print("║", style="bright_yellow", end='')
|
||||||
|
console.print("██", style="bright_magenta", end='')
|
||||||
|
console.print("║ ", style="bright_yellow", end='')
|
||||||
|
console.print("██", style="bright_magenta", end='')
|
||||||
|
console.print("║", style="bright_yellow", end='')
|
||||||
|
console.print("██", style="bright_magenta", end='')
|
||||||
|
console.print("╔══╝ ", style="bright_yellow", end='')
|
||||||
|
console.print("██", style="bright_magenta", end='')
|
||||||
|
console.print("║ ", style="bright_yellow")
|
||||||
# line 6
|
# line 6
|
||||||
console.print(" ██║ ███████╗╚██████╔╝╚██████╔╝███████╗ ██║ ")
|
console.print(" ██", style="bright_magenta", end='')
|
||||||
|
console.print("║ ", style="bright_yellow", end='')
|
||||||
|
console.print("███████", style="bright_magenta", end='')
|
||||||
|
console.print("╗╚", style="bright_yellow", end='')
|
||||||
|
console.print("██████", style="bright_magenta", end='')
|
||||||
|
console.print("╔╝╚", style="bright_yellow", end='')
|
||||||
|
console.print("██████", style="bright_magenta", end='')
|
||||||
|
console.print("╔╝", style="bright_yellow", end='')
|
||||||
|
console.print("███████", style="bright_magenta", end='')
|
||||||
|
console.print("╗ ", style="bright_yellow", end='')
|
||||||
|
console.print("██", style="bright_magenta", end='')
|
||||||
|
console.print("║ ", style="bright_yellow")
|
||||||
# line 7
|
# line 7
|
||||||
console.print(" ╚═╝ ╚══════╝ ╚═════╝ ╚═════╝ ╚══════╝ ╚═╝ ", style="bright_yellow")
|
console.print(" ╚═╝ ╚══════╝ ╚═════╝ ╚═════╝ ╚══════╝ ╚═╝ ", style="bright_yellow")
|
||||||
|
# line 8
|
||||||
|
console.print()
|
||||||
console.print(" ┌────────────────────────────────────┐", style="bright_black")
|
# line 9
|
||||||
#print(" │ [" + oColors.brightMagenta + "By Neocky" +oColors.brightBlack +
|
console.print(" ┌────────────────────────────────────┐", style="bright_black")
|
||||||
# "] │ " + oColors.standardWhite)
|
# line 10
|
||||||
#print(oColors.brightBlack + " │ " + oColors.brightMagenta + "https://github.com/Neocky/pluGET" + oColors.brightBlack +
|
console.print(" │ [", style="bright_black", end='')
|
||||||
# " │ " + oColors.standardWhite)
|
console.print("By Neocky", style="bright_magenta", end='')
|
||||||
#print(oColors.brightBlack + " └────────────────────────────────────┘" + oColors.standardWhite)
|
console.print("] │ ", style="bright_black")
|
||||||
|
# line 11
|
||||||
|
console.print(" │ ", style="bright_black", end='')
|
||||||
|
console.print("https://github.com/Neocky/pluGET", style="link https://github.com/Neocky/pluGET", end='')
|
||||||
|
console.print(" │ ", style="bright_black")
|
||||||
|
# line 12
|
||||||
|
console.print(" └────────────────────────────────────┘", style="bright_black")
|
||||||
|
console.print(" ───────────────────────────────────────────────────")
|
||||||
|
Loading…
Reference in New Issue
Block a user