1
0
mirror of https://gitlab.com/simple-stock-bots/simple-telegram-stock-bot.git synced 2025-07-25 07:31:48 +00:00

Resolve "Update Bot text and documentation"

This commit is contained in:
2023-04-09 19:57:49 +00:00
parent 3ba785824c
commit a2fe7cdffc
8 changed files with 45 additions and 59 deletions

View File

@@ -1,7 +1,4 @@
"""Class with functions for running the bot with IEX Cloud.
"""
import logging as log
import logging
from typing import List
import pandas as pd
@@ -11,6 +8,8 @@ from markdownify import markdownify
from Symbol import Coin
log = logging.getLogger(__name__)
class cg_Crypto:
"""
@@ -22,13 +21,6 @@ class cg_Crypto:
trending_cache: List[str] = []
def __init__(self) -> None:
"""Creates a Symbol Object
Parameters
----------
IEX_TOKEN : str
IEX Token
"""
self.get_symbol_list()
schedule.every().day.do(self.get_symbol_list)