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