You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
995 B
33 lines
995 B
9 years ago
|
#!/usr/bin/env python
|
||
|
|
||
|
from argparse import ArgumentParser
|
||
|
import json
|
||
|
from urllib import urlencode
|
||
|
from urllib2 import urlopen, HTTPError, URLError
|
||
|
|
||
|
p = ArgumentParser("")
|
||
|
p.add_argument("padid", help="the padid")
|
||
|
p.add_argument("--padinfo", default="padinfo.json", help="padinfo, default: padinfo.json")
|
||
|
p.add_argument("--showurl", default=False, action="store_true")
|
||
|
p.add_argument("--text", default=False, action="store_true", help="text output (not json)")
|
||
|
args = p.parse_args()
|
||
|
|
||
|
with open(args.padinfo) as f:
|
||
|
info = json.load(f)
|
||
|
apiurl = "{0[protocol]}://{0[hostname]}:{0[port]}{0[apiurl]}{0[apiversion]}/".format(info)
|
||
|
data = {}
|
||
|
data['apikey'] = info['apikey']
|
||
|
data['padID'] = args.padid.encode("utf-8")
|
||
|
requesturl = apiurl+'getText?'+urlencode(data)
|
||
|
if args.showurl:
|
||
|
print requesturl
|
||
|
else:
|
||
|
results = json.load(urlopen(requesturl))['data']
|
||
|
if args.text:
|
||
|
print results['data'].encode("utf-8")
|
||
|
else:
|
||
|
print json.dump(results)
|
||
|
|
||
|
# To save to file run:
|
||
|
# python gettext.py > copy.txt
|