Source code for libqtile.widget.stock_ticker

import locale
from urllib.parse import urlencode

from libqtile.log_utils import logger
from libqtile.widget.gen_poll_url import GenPollUrl


[docs] class StockTicker(GenPollUrl): """ A stock ticker widget, based on the alphavantage API. Users must acquire an API key from https://www.alphavantage.co/support/#api-key The widget defaults to the TIME_SERIES_INTRADAY API function (i.e. stock symbols), but arbitrary Alpha Vantage API queries can be made by passing extra arguments to the constructor. :: # Display AMZN widget.StockTicker(apikey=..., symbol="AMZN") # Display BTC widget.StockTicker( apikey=..., function="DIGITAL_CURRENCY_INTRADAY", symbol="BTC", market="USD" ) """ defaults = [ ("interval", "1min", "The default latency to query"), ("func", "TIME_SERIES_INTRADAY", "The default API function to query"), ("function", "TIME_SERIES_INTRADAY", "DEPRECATED: Use `func`."), ] def __init__(self, **config): if "function" in config: logger.warning("`function` parameter is deprecated. Please rename to `func`") config["func"] = config.pop("function") GenPollUrl.__init__(self, **config) self.add_defaults(StockTicker.defaults) self.sign = locale.localeconv()["currency_symbol"] self.query = {"interval": self.interval, "outputsize": "compact", "function": self.func} for k, v in config.items(): self.query[k] = v @property def url(self): url = "https://www.alphavantage.co/query?" + urlencode(self.query) return url def parse(self, body): last = None for k, v in body["Meta Data"].items(): # In instead of ==, because of the number prefix that is inconsistent if "Last Refreshed" in k: last = v # Unfortunately, the actual data key is not consistently named, but # since there are only two and one is "Meta Data", we can just use the # other one. other = None for k, v in body.items(): if k != "Meta Data": other = v break # The actual price is also not consistently named... price = None for k, v in other[last].items(): if "price" in k or "close" in k: price = f"{float(v):0.2f}" break return f"{self.symbol}: {self.sign}{price}"