24 lines
647 B
Python
Executable File
24 lines
647 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
Simple command line client into RPC commands
|
|
Can be used as an alternate to Telegram
|
|
"""
|
|
|
|
from requests import get
|
|
from sys import argv
|
|
|
|
if len(argv) == 1:
|
|
print('\nThis script accepts the following arguments')
|
|
print('- daily (int) - Where int is the number of days to report back. daily 3')
|
|
print('- there will be more....\n')
|
|
|
|
if len(argv) == 3 and argv[1] == "daily":
|
|
if str.isnumeric(argv[2]):
|
|
get_url = 'http://localhost:5002/daily?timescale=' + argv[2]
|
|
d=get(get_url).json()
|
|
print(d)
|
|
else:
|
|
print("\nThe second argument to daily must be an integer, 1,2,3 etc")
|
|
|
|
|