From eb3470896ef4bea5906929b9bd7122a3b96d599d Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Sat, 22 May 2021 06:40:48 -0400 Subject: [PATCH] removed api key --- groundstation/loc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/groundstation/loc.py b/groundstation/loc.py index 97bbf496..e85f06af 100644 --- a/groundstation/loc.py +++ b/groundstation/loc.py @@ -7,7 +7,7 @@ print("In order to track satellites, we need to know your location\n") print("You can enter your state or country or region\n") print("as your exact location is not needed. \n\n") location = input("Type your location: ") #taking user input -api_key = 'EabUlpQK8GcVVEMs2OLI0Bdb6A9Wj_yeli6d4Wwe8u0' # Acquire from developer.here.com +api_key = '' # Acquire from developer.here.com PARAMS = {'apikey':api_key,'q':location} # sending get request and saving the response as response object