Adds basic CLI input and output functionality

Introduces a simple command-line interface to capture user input and display it back. Lays groundwork for future command processing and interaction.
This commit is contained in:
Vxrtrauter
2025-06-30 16:22:25 +02:00
parent 42eea1f371
commit 628e9ee2c4
6 changed files with 68 additions and 79 deletions
+1 -7
View File
@@ -91,12 +91,6 @@ def get_magnet_link(post_url):
if __name__ == "__main__":
search_input = input("Enter the Name of the Program you want to search for: ")
selected = scrape_uztracker(search_input)
maintitle = get_post_title(selected)
magnetlink = get_magnet_link(selected)
print(maintitle)
print(magnetlink)