@@ -48,7 +48,6 @@ def SearchWalmart(query):
48
48
query_URL = "https://www.walmart.com/search?q=" + query
49
49
return query_URL
50
50
51
-
52
51
def ExploreMicrosoft (query ):
53
52
query = query .replace (" " , "+" )
54
53
query_URL = "https://www.microsoft.com/en-us/search/explore?q=" + query
@@ -68,3 +67,34 @@ def SearchApple(query):
68
67
query = query .replace (" " , "-" )
69
68
query_URL = "https://apple.com/search/" + query
70
69
return query_URL
70
+
71
+ def SearchTarget (query ):
72
+ query = query .replace (" " , "+" )
73
+ query_URL = "https://www.target.com/s?searchTerm=" + query
74
+ return query_URL
75
+
76
+ def SearchGenius (query ):
77
+ query = query .replace (" " , "%20" )
78
+ query_URL = "https://genius.com/search?q=" + query
79
+ return query_URL
80
+
81
+ def SearchTwitch (query ):
82
+ query = query .replace (" " , "%20" )
83
+ query_URL = "https://www.twitch.tv/search?term=" + query
84
+ return query_URL
85
+
86
+ def SearchStackOverflow (query ):
87
+ query = query .replace (" " , "+" )
88
+ query_URL = "https://stackoverflow.com/search?q=" + query
89
+ return query_URL
90
+
91
+ def SearchJetBrains (query ):
92
+ query = query .replace (" " , "+" )
93
+ jbs = "&s=full"
94
+ query_URL = "jetbrains.com/?q=" + query + jbs
95
+ return query_URL
96
+
97
+ def SearchQuora (query ):
98
+ query = query .replace (" " , "%20" )
99
+ query_URL = "https://www.quora.com/search?q=" + query
100
+ return query_URL
0 commit comments