From 029a0c4288358dd732e74cd95958ea894d98881d Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Sat, 3 Sep 2016 12:01:16 -0400 Subject: [PATCH] Remove key from the code. Each client must acquire their own key. --- wolframalpha/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolframalpha/__init__.py b/wolframalpha/__init__.py index 8d7adf6..ae8726c 100644 --- a/wolframalpha/__init__.py +++ b/wolframalpha/__init__.py @@ -16,7 +16,7 @@ class Client(object): Pass an ID to the object upon instantiation, then query Wolfram Alpha using the query method. """ - def __init__(self, app_id='Q59EW4-7K8AHE858R'): + def __init__(self, app_id): self.app_id = app_id def query(self, input, params=(), **kwargs):