Start using click for cli
parent
1b0269e51a
commit
5c4996873a
|
@ -1,25 +1,3 @@
|
||||||
"""
|
"""
|
||||||
Broker clients, daemons and general back end machinery.
|
Broker clients, daemons and general back end machinery.
|
||||||
"""
|
"""
|
||||||
import sys
|
|
||||||
import trio
|
|
||||||
from pprint import pformat
|
|
||||||
from .questrade import serve_forever
|
|
||||||
from ..log import get_console_log
|
|
||||||
|
|
||||||
|
|
||||||
def main() -> None:
|
|
||||||
log = get_console_log('info', name='questrade')
|
|
||||||
argv = sys.argv[1:]
|
|
||||||
|
|
||||||
refresh_token = None
|
|
||||||
if argv:
|
|
||||||
refresh_token = argv[0]
|
|
||||||
|
|
||||||
# main loop
|
|
||||||
try:
|
|
||||||
client = trio.run(serve_forever, refresh_token)
|
|
||||||
except Exception as err:
|
|
||||||
log.exception(err)
|
|
||||||
else:
|
|
||||||
log.debug(f"Exiting with last access info:\n{pformat(client.access_data)}\n")
|
|
||||||
|
|
|
@ -0,0 +1,29 @@
|
||||||
|
"""
|
||||||
|
Console interface to broker client/daemons.
|
||||||
|
"""
|
||||||
|
from pprint import pformat
|
||||||
|
import click
|
||||||
|
import trio
|
||||||
|
from ..log import get_console_log
|
||||||
|
|
||||||
|
|
||||||
|
def run(loglevel, main):
|
||||||
|
log = get_console_log(loglevel)
|
||||||
|
|
||||||
|
# main loop
|
||||||
|
try:
|
||||||
|
client = trio.run(main)
|
||||||
|
except Exception as err:
|
||||||
|
log.exception(err)
|
||||||
|
else:
|
||||||
|
log.debug(
|
||||||
|
f"Exiting with last access info:\n{pformat(client.access_data)}\n")
|
||||||
|
|
||||||
|
|
||||||
|
@click.command()
|
||||||
|
@click.option('--broker', default='questrade', help='Broker backend to use')
|
||||||
|
@click.option('--loglevel', '-l', default='warning', help='Logging level')
|
||||||
|
def pikerd(broker, loglevel):
|
||||||
|
# import broker module daemon entry point
|
||||||
|
from .questrade import serve_forever
|
||||||
|
run(loglevel, serve_forever)
|
|
@ -5,6 +5,7 @@ from . import config
|
||||||
from ..log import get_logger
|
from ..log import get_logger
|
||||||
from pprint import pformat
|
from pprint import pformat
|
||||||
import time
|
import time
|
||||||
|
import datetime
|
||||||
from async_generator import asynccontextmanager
|
from async_generator import asynccontextmanager
|
||||||
|
|
||||||
# TODO: move to urllib3/requests once supported
|
# TODO: move to urllib3/requests once supported
|
||||||
|
@ -113,14 +114,19 @@ class Client:
|
||||||
"""
|
"""
|
||||||
access_token = self.access_data.get('access_token')
|
access_token = self.access_data.get('access_token')
|
||||||
expires = float(self.access_data.get('expires_at', 0))
|
expires = float(self.access_data.get('expires_at', 0))
|
||||||
|
expires_stamp = datetime.datetime.fromtimestamp(
|
||||||
|
expires).strftime('%Y-%m-%d %H:%M:%S')
|
||||||
if not access_token or (expires < time.time()) or force_refresh:
|
if not access_token or (expires < time.time()) or force_refresh:
|
||||||
log.info(f"Refreshing access token {access_token} which expired at"
|
log.info(f"Refreshing access token {access_token} which expired at"
|
||||||
f" {expires}")
|
f" {expires_stamp}")
|
||||||
data = await self._new_auth_token()
|
data = await self._new_auth_token()
|
||||||
|
|
||||||
# store absolute token expiry time
|
# store absolute token expiry time
|
||||||
self.access_data['expires_at'] = time.time() + float(
|
self.access_data['expires_at'] = time.time() + float(
|
||||||
data['expires_in'])
|
data['expires_in'])
|
||||||
|
else:
|
||||||
|
log.info(f"\nCurrent access token {access_token} expires at"
|
||||||
|
f" {expires_stamp}\n")
|
||||||
|
|
||||||
self._prep_sess()
|
self._prep_sess()
|
||||||
return self.access_data
|
return self.access_data
|
||||||
|
@ -141,7 +147,7 @@ def get_config() -> "configparser.ConfigParser":
|
||||||
|
|
||||||
|
|
||||||
@asynccontextmanager
|
@asynccontextmanager
|
||||||
async def get_client(refresh_token: str = None) -> Client:
|
async def get_client() -> Client:
|
||||||
"""Spawn a broker client.
|
"""Spawn a broker client.
|
||||||
"""
|
"""
|
||||||
conf = get_config()
|
conf = get_config()
|
||||||
|
@ -150,8 +156,8 @@ async def get_client(refresh_token: str = None) -> Client:
|
||||||
await client.enable_access()
|
await client.enable_access()
|
||||||
|
|
||||||
try:
|
try:
|
||||||
try: # do a test ping to ensure the access token works
|
|
||||||
log.debug("Check time to ensure access token is valid")
|
log.debug("Check time to ensure access token is valid")
|
||||||
|
try:
|
||||||
await client.api.time()
|
await client.api.time()
|
||||||
except Exception as err:
|
except Exception as err:
|
||||||
# access token is likely no good
|
# access token is likely no good
|
||||||
|
@ -169,10 +175,10 @@ async def get_client(refresh_token: str = None) -> Client:
|
||||||
config.write(conf)
|
config.write(conf)
|
||||||
|
|
||||||
|
|
||||||
async def serve_forever(refresh_token: str = None) -> None:
|
async def serve_forever() -> None:
|
||||||
"""Start up a client and serve until terminated.
|
"""Start up a client and serve until terminated.
|
||||||
"""
|
"""
|
||||||
async with get_client(refresh_token) as client:
|
async with get_client() as client:
|
||||||
# pretty sure this doesn't work
|
# pretty sure this doesn't work
|
||||||
# await client._revoke_auth_token()
|
# await client._revoke_auth_token()
|
||||||
return client
|
return client
|
||||||
|
|
6
setup.py
6
setup.py
|
@ -28,10 +28,12 @@ setup(
|
||||||
],
|
],
|
||||||
entry_points={
|
entry_points={
|
||||||
'console_scripts': [
|
'console_scripts': [
|
||||||
'pikerd = piker.brokers:main',
|
'pikerd = piker.brokers.cli:pikerd',
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
install_requires=['click', 'colorlog', 'trio', 'attrs'],
|
install_requires=[
|
||||||
|
'click', 'colorlog', 'trio', 'attrs', 'async_generator'
|
||||||
|
],
|
||||||
extras_require={
|
extras_require={
|
||||||
'questrade': ['asks'],
|
'questrade': ['asks'],
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue