tessa.search

Searching symbols

Main function is tessa.search.search.search, which will return a tessa.search.search_result.SearchResult, offering all kinds of useful functionality.

Example use:

from tessa import search

>>> r = search("botto")
>>> r.filter(source="coingecko").symbols

(Note that the filter currently doesn't make much sense because coingecko is the only search source currently with Yahoo Finance disabled.)

 1"""
 2# Searching symbols
 3
 4Main function is `tessa.search.search.search`, which will return a
 5`tessa.search.search_result.SearchResult`, offering all kinds of useful functionality.
 6
 7Example use:
 8
 9```python
10from tessa import search
11
12>>> r = search("botto")
13>>> r.filter(source="coingecko").symbols
14```
15
16(Note that the filter currently doesn't make much sense because coingecko is the only
17search source currently with Yahoo Finance disabled.)
18
19"""
20
21from .search_result import SearchResult
22from .search import search