-
Notifications
You must be signed in to change notification settings - Fork 0
/
refill-health.py
executable file
·66 lines (55 loc) · 2.24 KB
/
refill-health.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/env python3
import argparse
import json
import os
import requests
import sys
import my_data
from my_data import USR
from my_data import KEY
class Debug(argparse.Action):
def __call__(self, parser, namespace, values, option_string=None):
import pdb; pdb.set_trace()
# MAIN
parser = argparse.ArgumentParser(description="Increases health points if less than given threshold")
parser.add_argument('-p', '--hp', '--healthpoints',
type=int, default=30,
help='Minimum HP (default=10)')
parser.add_argument('-m', '--multiplier',
type=int, default=5,
help='Multiplier (default=5)')
parser.add_argument('-u', '--user-id',
help='From https://habitica.com/#/options/settings/api\n \
default: environment variable HAB_API_USER')
parser.add_argument('-k', '--api-token',
help='From https://habitica.com/#/options/settings/api\n \
default: environment variable HAB_API_TOKEN')
parser.add_argument('--baseurl',
type=str, default="https://habitica.com",
help='API server (default: https://habitica.com)')
parser.add_argument('--debug',
action=Debug, nargs=0,
help=argparse.SUPPRESS)
args = parser.parse_args()
args.baseurl += "/api/v3/user"
if args.hp <= 0 or args.multiplier <= 0:
print("Value must be a positive number")
sys.exit(1)
try:
if args.user_id is None:
args.user_id = USR
except KeyError:
print("User ID must be set by the -u/--user-id option or by setting the environment variable 'HAB_API_USER'")
sys.exit(1)
try:
if args.api_token is None:
args.api_token = KEY
except KeyError:
print("API Token must be set by the -k/--api-token option or by setting the environment variable 'HAB_API_TOKEN'")
sys.exit(1)
headers = {"x-api-user": args.user_id, "x-api-key": args.api_token, "Content-Type": "application/json"}
req = requests.get(args.baseurl, headers=headers)
if req.json()['data']['stats']['hp'] < args.hp:
data = {}
data['stats.hp'] = req.json()['data']['stats']['hp'] * args.multiplier
stat = requests.put(args.baseurl, headers=headers, data=json.dumps(data))