Display cryptocurrency and other asset prices in convenient tabular format,
with optional display of your portfolio. Output is highly configurable.
Usage information:
$ mmnode-ticker --help
17 lines
593 B
Python
Executable file
17 lines
593 B
Python
Executable file
#!/usr/bin/env python3
|
|
#
|
|
# mmgen = Multi-Mode GENerator, a command-line cryptocurrency wallet
|
|
# Copyright (C)2013-2022 The MMGen Project <mmgen@tuta.io>
|
|
# Licensed under the GNU General Public License, Version 3:
|
|
# https://www.gnu.org/licenses
|
|
# Public project repositories:
|
|
# https://github.com/mmgen/mmgen https://github.com/mmgen/mmgen-node-tools
|
|
# https://gitlab.com/mmgen/mmgen https://gitlab.com/mmgen/mmgen-node-tools
|
|
|
|
"""
|
|
mmnode-ticker: Display price information for cryptocurrency and other assets
|
|
"""
|
|
|
|
from mmgen.main import launch
|
|
|
|
launch('ticker',package='mmgen_node_tools')
|