From a442fecc8088eee349599e3d7dc53e739a34b46c Mon Sep 17 00:00:00 2001 From: Erick <74315338+erickahmed@users.noreply.github.com> Date: Sun, 14 Aug 2022 02:45:56 +0200 Subject: [PATCH] What?? This does not belong here lol Old code that got pushed for some reason --- vision-env/src/google_search.py | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 vision-env/src/google_search.py diff --git a/vision-env/src/google_search.py b/vision-env/src/google_search.py deleted file mode 100644 index 56d7831..0000000 --- a/vision-env/src/google_search.py +++ /dev/null @@ -1,18 +0,0 @@ -import webbrowser - -try: - from googlesearch import search -except ImportError: - print("No module named 'google' found") - -#search_tm = ["never", "gonna", "give", "you", "up"] - -def google_search(search_terms): - google_base_link = "https://www.google.com/search?q=" - - url = google_base_link + " ".join(search_terms) - print(url) - -if __name__ == "__main__": - search_terms = [] - google_search(search_terms) \ No newline at end of file