Skip to content

Commit 03099f1

Browse files
committed
fixed some issues on cse tutorial
1 parent dbbf8d8 commit 03099f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

general/using-custom-search-engine-api/search_engine.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
import sys
33

44
# get the API KEY here: https://developers.google.com/custom-search/v1/overview
5-
API_KEY = "AIzaSyCzSrJGrnLjkRovkjxvHTjaogMZX63MEo0"
5+
API_KEY = "<INSERT_YOUR_API_KEY_HERE>"
66
# get your Search Engine ID on your CSE control panel
7-
SEARCH_ENGINE_ID = "017479214723175900468:rx94qcojslh"
7+
SEARCH_ENGINE_ID = "<INSERT_YOUR_SEARCH_ENGINE_ID_HERE>"
88
# the search query you want, from the command line (e.g python search_engine.py 'python')
99
try:
1010
query = sys.argv[1]

0 commit comments

Comments
 (0)