diff --git a/GUI.py b/GUI.py index 90e37ae..bc41838 100644 --- a/GUI.py +++ b/GUI.py @@ -1,6 +1,7 @@ # Import the server module import http.server import webbrowser + # Set the hostname HOST = "localhost" # Set the port number @@ -9,15 +10,16 @@ PORT = 4000 # Define class to display the index page of the web server class PythonServer(http.server.SimpleHTTPRequestHandler): def do_GET(self): - if self.path == '/GUI': - self.path = 'index.html' + if self.path == "/GUI": + self.path = "index.html" return http.server.SimpleHTTPRequestHandler.do_GET(self) + # Declare object of the class webServer = http.server.HTTPServer((HOST, PORT), PythonServer) # Print the URL of the webserver, new =2 opens in a new tab print(f"Server started at http://{HOST}:{PORT}/GUI/") -webbrowser.open(f'http://{HOST}:{PORT}/GUI/', new = 2) +webbrowser.open(f"http://{HOST}:{PORT}/GUI/", new=2) print("Website opened in new tab") print("Press Ctrl+C to quit") try: @@ -27,4 +29,4 @@ except KeyboardInterrupt: # Stop the web server webServer.server_close() print("The server is stopped.") - exit() \ No newline at end of file + exit() diff --git a/TTS/pyttsx.py b/TTS/pyttsx.py index 06d27c5..b5ffb29 100644 --- a/TTS/pyttsx.py +++ b/TTS/pyttsx.py @@ -19,9 +19,7 @@ class pyttsx: if voice_id == "" or voice_num == "": voice_id = 2 voice_num = 3 - raise ValueError( - "set pyttsx values to a valid value, switching to defaults" - ) + raise ValueError("set pyttsx values to a valid value, switching to defaults") else: voice_id = int(voice_id) voice_num = int(voice_num) diff --git a/main.py b/main.py index b078c10..a4abd81 100755 --- a/main.py +++ b/main.py @@ -38,6 +38,7 @@ print_markdown( ) checkversion(__VERSION__) + def main(POST_ID=None): cleanup() reddit_object = get_subreddit_threads(POST_ID) diff --git a/utils/console.py b/utils/console.py index 1518c27..6f99a41 100644 --- a/utils/console.py +++ b/utils/console.py @@ -118,4 +118,3 @@ def handle_input( console.print( "[red bold]" + err_message + "\nValid options are: " + ", ".join(map(str, options)) + "." ) - diff --git a/utils/version.py b/utils/version.py index 3042c0c..a8177cc 100644 --- a/utils/version.py +++ b/utils/version.py @@ -1,11 +1,16 @@ import requests from utils.console import print_step + def checkversion(__VERSION__): - response = requests.get("https://api.github.com/repos/elebumm/RedditVideoMakerBot/releases/latest") - latestversion = (response.json()["tag_name"]) + response = requests.get( + "https://api.github.com/repos/elebumm/RedditVideoMakerBot/releases/latest" + ) + latestversion = response.json()["tag_name"] if __VERSION__ == latestversion: print_step(f"You are using the newest version ({__VERSION__}) of the bot") return True else: - print_step(f"You are using an older version ({__VERSION__}) of the bot. Download the newest version ({latestversion}) from https://github.com/elebumm/RedditVideoMakerBot/releases/latest") \ No newline at end of file + print_step( + f"You are using an older version ({__VERSION__}) of the bot. Download the newest version ({latestversion}) from https://github.com/elebumm/RedditVideoMakerBot/releases/latest" + )