1
0
mirror of https://gitlab.com/simple-stock-bots/simple-telegram-stock-bot.git synced 2025-07-24 23:21:24 +00:00

Resolve "Remove binance-peg crypto"

This commit is contained in:
2022-01-05 07:24:57 +00:00
parent 2bb825d721
commit ccc44bfa21
5 changed files with 68 additions and 52 deletions

33
tests.py Normal file
View File

@@ -0,0 +1,33 @@
import keyboard
import time
tests = """$$xno
/info $tsla
/info $$btc
/news $tsla
/news $$btc
/stat $tsla
/stat $$btc
/cap $tsla
/cap $$btc
/dividend $tsla
/dividend $msft
/dividend $$btc
/intra $tsla
/intra $$btc
/chart $tsla
/chart $$btc
/help
/trending""".split(
"\n"
)
print("press enter to start")
keyboard.wait("enter")
for test in tests:
print(test)
keyboard.write(test)
time.sleep(1)
keyboard.press_and_release("enter")