From 5607c8f38f6abdffba931aad0df9527e6da73ad4 Mon Sep 17 00:00:00 2001 From: Thomas Date: Thu, 26 Nov 2015 23:21:58 -0500 Subject: [PATCH] Removed query dictionary from urls --- exercises/1-your-first-api/wrapper.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/exercises/1-your-first-api/wrapper.py b/exercises/1-your-first-api/wrapper.py index 1fea839..e5d43c5 100644 --- a/exercises/1-your-first-api/wrapper.py +++ b/exercises/1-your-first-api/wrapper.py @@ -2,11 +2,11 @@ import requests class Markit: def __init__(self): - self.lookup_url = "http://dev.markitondemand.com/Api/v2/Lookup/json?input=" - self.quote_url = "http://dev.markitondemand.com/Api/v2/Quote/json?symbol=" + self.lookup_url = "http://dev.markitondemand.com/Api/v2/Lookup/json" + self.quote_url = "http://dev.markitondemand.com/Api/v2/Quote/json" def company_search(self,string): pass def get_quote(self,string): - pass \ No newline at end of file + pass