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:
33
tests.py
Normal file
33
tests.py
Normal 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")
|
Reference in New Issue
Block a user