Skip to content

Commit

Permalink
Extra help
Browse files Browse the repository at this point in the history
  • Loading branch information
kfsone committed Sep 15, 2014
1 parent 8c1dad0 commit 3eddcf5
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion emdn-tap.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,17 @@ def processCommandLine():

global warnOnly, warningFh

parser = argparse.ArgumentParser(description='Pull updates from the EMDN firehose to the TradeDangerous DB')
parser = argparse.ArgumentParser(
description="""
Connects to the Elite Market Data Network (EMDN) firehose
and saves incoming price updates to the TradeDangerous database.
""",
epilog="""
This tool is provided as an OPTIONAL alternative to manually
updating the Elite Dangerous database (see trade.py update --help).
EMDN is developed by another E:D fan, Andreas. For details see his forum post: http://forums.frontier.co.uk/showthread.php?t=23585.
"""
)
parser.add_argument('--firehose', '-u', help='URI for the firehose. Default={}'.format(Firehose.defaultURI), default=None)
parser.add_argument('--file', '-f', help='Filename for the firehose. Default=None.', default=None)
parser.add_argument('--db', '-d', help='SQLite database to write to. Default={}'.format(TradeDB.defaultDB))
Expand Down

0 comments on commit 3eddcf5

Please sign in to comment.