Skip to content
Snippets Groups Projects
Commit d1c216f0 authored by Holger Nahrstaedt's avatar Holger Nahrstaedt
Browse files

CLI added

Click and prettytable added to requirements
CLI added with following commands:
* balance
* info
Unit tests for CLI added
parent fde33e6f
No related branches found
No related tags found
No related merge requests found
...@@ -11,6 +11,19 @@ The library name is derived from a beam maschine, similar to the analogy between ...@@ -11,6 +11,19 @@ The library name is derived from a beam maschine, similar to the analogy between
:alt: Latest Version :alt: Latest Version
.. image:: https://img.shields.io/pypi/pyversions/beem.svg .. image:: https://img.shields.io/pypi/pyversions/beem.svg
:target: https://pypi.python.org/pypi/beem/
:alt: Python Versions
.. image:: https://anaconda.org/conda-forge/beem/badges/version.svg
:target: https://anaconda.org/conda-forge/beem
.. image:: https://anaconda.org/conda-forge/beem/badges/downloads.svg
:target: https://anaconda.org/conda-forge/beem
Current build status
--------------------
.. image:: https://travis-ci.org/holgern/beem.svg?branch=master .. image:: https://travis-ci.org/holgern/beem.svg?branch=master
:target: https://travis-ci.org/holgern/beem :target: https://travis-ci.org/holgern/beem
...@@ -73,6 +86,24 @@ but possibly non-compiling version:: ...@@ -73,6 +86,24 @@ but possibly non-compiling version::
Run tests after install:: Run tests after install::
pytest pytest
Installing beem with conda-forge
--------------------------------
Installing beem from the conda-forge channel can be achieved by adding conda-forge to your channels with:
conda config --add channels conda-forge
Once the conda-forge channel has been enabled, beem can be installed with:
conda install beem
CLI tool bundled
----------------
I started to work on a CLI tool:
beempy
Documentation Documentation
============= =============
...@@ -80,6 +111,13 @@ Documentation is available at http://beem.readthedocs.io/en/latest/ ...@@ -80,6 +111,13 @@ Documentation is available at http://beem.readthedocs.io/en/latest/
Changelog Changelog
========= =========
0.19.8
------
* bug fixes
* CLI tool added
* beem added to conda-forge
* more unittests
0.19.7 0.19.7
------ ------
* works on python 2.7 * works on python 2.7
......
...@@ -60,7 +60,8 @@ install: ...@@ -60,7 +60,8 @@ install:
- conda info -a - conda info -a
- conda install --yes nose conda-build setuptools pip numpy pytest-pylint - conda install --yes nose conda-build setuptools pip numpy pytest-pylint
- conda install --yes pycryptodomex scrypt pyyaml pytest pytest-mock coverage mock appdirs - conda install --yes pycryptodomex scrypt pyyaml pytest pytest-mock coverage mock appdirs
- conda install --yes ecdsa requests future websocket-client pytz six - conda install --yes ecdsa requests future websocket-client pytz six Click prettytable
# Upgrade to the latest version of pip to avoid it displaying warnings # Upgrade to the latest version of pip to avoid it displaying warnings
# about it being out of date. # about it being out of date.
......
# This Python file uses the following encoding: utf-8
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
from builtins import bytes, int, str
from beem.instance import set_shared_steem_instance, shared_steem_instance
from beem.amount import Amount
from beem.account import Account
from beem.steem import Steem
from beem.storage import configStorage
from beem.version import version as __version__
from datetime import datetime, timedelta
import pytz
from beembase import operations
from beembase.account import PrivateKey, PublicKey
import json
from prettytable import PrettyTable
import math
import random
import logging
import click
log = logging.getLogger(__name__)
@click.group(chain=True)
@click.option(
'--node', '-n', default="", help="URL for public Steem API")
@click.option(
'--offline', is_flag=True, default=False, help="Prevent connecting to network")
@click.option(
'--nobroadcast', '-d', is_flag=True, default=False, help="Do not broadcast")
@click.option(
'--unsigned', is_flag=True, default=False, help="Nothing will be signed")
@click.option(
'--blocking', is_flag=True, default=False,
help="Wait for broadcasted transactions to be included in a block and return full transaction")
@click.option(
'--bundle', is_flag=True, default=False,
help="Do not broadcast transactions right away, but allow to bundle operations ")
@click.option(
'--expiration', '-e', default=30,
help='Delay in seconds until transactions are supposed to expire(defaults to 60)')
@click.option(
'--debug', is_flag=True, default=False, help='Enables Debug output')
@click.version_option(version=__version__)
def cli(node, offline, nobroadcast, unsigned, blocking, bundle, expiration, debug):
stm = Steem(
node=node,
nobroadcast=nobroadcast,
unsigned=unsigned,
blocking=blocking,
bundle=bundle,
expiration=expiration,
debug=debug
)
set_shared_steem_instance(stm)
pass
@cli.command()
@click.option(
'--account', '-a', multiple=True)
def balance(account):
stm = shared_steem_instance()
if len(account) == 0:
if "default_account" in stm.config:
account = [stm.config["default_account"]]
for name in account:
a = Account(name, steem_instance=stm)
print("\n@%s" % a.name)
t = PrettyTable(["Account", "STEEM", "SBD", "VESTS"])
t.align = "r"
t.add_row([
'Available',
str(a.balances['available'][0]),
str(a.balances['available'][1]),
str(a.balances['available'][2]),
])
t.add_row([
'Rewards',
str(a.balances['rewards'][0]),
str(a.balances['rewards'][1]),
str(a.balances['rewards'][2]),
])
t.add_row([
'Savings',
str(a.balances['savings'][0]),
str(a.balances['savings'][1]),
'N/A',
])
t.add_row([
'TOTAL',
str(a.balances['total'][0]),
str(a.balances['total'][1]),
str(a.balances['total'][2]),
])
print(t)
@cli.command()
@click.option(
'--account', '-a', multiple=True)
def info(account):
stm = shared_steem_instance()
for name in account:
a = Account(name, steem_instance=stm)
a.print_info()
print("\n")
if __name__ == "__main__":
cli()
...@@ -12,3 +12,5 @@ pytest-mock ...@@ -12,3 +12,5 @@ pytest-mock
coverage coverage
mock mock
appdirs appdirs
Click
prettytable
...@@ -12,4 +12,5 @@ pytest-mock ...@@ -12,4 +12,5 @@ pytest-mock
coverage coverage
mock mock
appdirs appdirs
Click
prettytable
...@@ -78,7 +78,14 @@ if __name__ == '__main__': ...@@ -78,7 +78,14 @@ if __name__ == '__main__':
"scrypt", "scrypt",
"pycryptodomex", "pycryptodomex",
"pytz", "pytz",
"Click",
"prettytable"
], ],
entry_points={
'console_scripts': [
'beempy=beem.cli:cli',
],
},
setup_requires=['pytest-runner'], setup_requires=['pytest-runner'],
tests_require=['pytest'], tests_require=['pytest'],
include_package_data=True, include_package_data=True,
......
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
from builtins import str
from builtins import super
import unittest
import mock
import click
from click.testing import CliRunner
from pprint import pprint
from beem import Steem, exceptions
from beem.account import Account
from beem.amount import Amount
from beem.asset import Asset
from beem.cli import cli, balance
from beem.instance import set_shared_steem_instance
from beembase.operationids import getOperationNameForId
wif = "5KQwrPbwdL6PhXujxW37FSSQZ1JiwsST4cqQzDeyXtP79zkvFD3"
nodes = ["wss://steemd.pevo.science", "wss://gtg.steem.house:8090", "wss://rpc.steemliberator.com", "wss://rpc.buildteam.io",
"wss://rpc.steemviz.com", "wss://seed.bitcoiner.me", "wss://node.steem.ws", "wss://steemd.steemgigs.org", "wss://steemd.steemit.com",
"wss://steemd.minnowsupportproject.org"]
class Testcases(unittest.TestCase):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.bts = Steem(
node=nodes,
nobroadcast=True,
bundle=False,
# Overwrite wallet to use this list of wifs only
wif={"active": wif}
)
self.bts.set_default_account("test")
set_shared_steem_instance(self.bts)
def test_balance(self):
runner = CliRunner()
result = runner.invoke(cli, ['balance', '-atest'])
self.assertEqual(result.exit_code, 0)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment