We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbbf8d8 commit 03099f1Copy full SHA for 03099f1
general/using-custom-search-engine-api/search_engine.py
@@ -2,9 +2,9 @@
2
import sys
3
4
# get the API KEY here: https://developers.google.com/custom-search/v1/overview
5
-API_KEY = "AIzaSyCzSrJGrnLjkRovkjxvHTjaogMZX63MEo0"
+API_KEY = "<INSERT_YOUR_API_KEY_HERE>"
6
# get your Search Engine ID on your CSE control panel
7
-SEARCH_ENGINE_ID = "017479214723175900468:rx94qcojslh"
+SEARCH_ENGINE_ID = "<INSERT_YOUR_SEARCH_ENGINE_ID_HERE>"
8
# the search query you want, from the command line (e.g python search_engine.py 'python')
9
try:
10
query = sys.argv[1]
0 commit comments