hows it going?
This commit is contained in:
12
exercises/1-your-first-api/wrapper.py
Normal file
12
exercises/1-your-first-api/wrapper.py
Normal file
@ -0,0 +1,12 @@
|
||||
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="
|
||||
|
||||
def company_search(self,string):
|
||||
pass
|
||||
|
||||
def get_quote(self,string):
|
||||
pass
|
Reference in New Issue
Block a user