Search is now available! It returns a list of search results - similar to the actual API.
python
from python_wtd import WTD
wtd = WTD(api_key='asasdfasdfdfhlkjdhf')
wtd.search("AAPL",limit=2)
>>> [{'symbol': 'AAPL',
'name': 'Apple Inc.',
'currency': 'USD',
'price': '210.36',
'stock_exchange_long': 'NASDAQ Stock Exchange',
'stock_exchange_short': 'NASDAQ'},
{'symbol': 'AAPL.BA',
'name': 'APPLE INC CEDEAR',
'currency': 'ARS',
'price': '1172.00',
'stock_exchange_long': 'Buenos Aires Stock Exchange',
'stock_exchange_short': 'BCBA'}]
Also, `WTDException` is a class object of `WTD` and there is a new class object `WTDDecorators` containing decorators for functionality, currently only `WTDDecorators.confirm_apiI_key` which replaces `WTD._confirm`.