etherpump/etherdump/commands/list.py

41 lines
1.4 KiB
Python
Raw Normal View History

2018-01-12 14:42:55 +01:00
from __future__ import print_function
2015-09-17 18:23:18 +02:00
from argparse import ArgumentParser
import json
2018-01-12 14:42:55 +01:00
import sys
from etherdump.commands.common import getjson
try:
# python2
from urlparse import urlparse, urlunparse
from urllib2 import urlopen, URLError, HTTPError
from urllib import urlencode
input = raw_input
except ImportError:
# python3
from urllib.parse import urlparse, urlunparse, urlencode
from urllib.request import urlopen, URLError, HTTPError
2015-09-17 18:23:18 +02:00
def main (args):
2015-11-22 21:59:52 +01:00
p = ArgumentParser("call listAllPads and print the results")
p.add_argument("--padinfo", default=".etherdump/settings.json", help="settings, default: .etherdump/settings.json")
p.add_argument("--showurl", default=False, action="store_true")
p.add_argument("--format", default="lines", help="output format: lines, json; default lines")
args = p.parse_args(args)
2015-09-17 18:23:18 +02:00
2015-11-22 21:59:52 +01:00
with open(args.padinfo) as f:
info = json.load(f)
apiurl = info.get("apiurl")
# apiurl = {0[protocol]}://{0[hostname]}:{0[port]}{0[apiurl]}{0[apiversion]}/".format(info)
data = {}
data['apikey'] = info['apikey']
requesturl = apiurl+'listAllPads?'+urlencode(data)
if args.showurl:
2018-01-12 14:42:55 +01:00
print (requesturl)
2015-11-22 21:59:52 +01:00
else:
2016-03-02 23:30:16 +01:00
results = getjson(requesturl)['data']['padIDs']
2015-11-22 21:59:52 +01:00
if args.format == "json":
2018-01-12 14:42:55 +01:00
print (json.dumps(results))
2015-11-22 21:59:52 +01:00
else:
for r in results:
2018-01-12 14:42:55 +01:00
print (r)
2015-09-17 18:23:18 +02:00