aboutsummaryrefslogtreecommitdiffstats
path: root/python/shell.py
blob: 78d32deb1b3603b353e6f5969278a2a40c3dd722 (plain)
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

# bunch of libraries one might want
import uuid
import datetime
import requests
import argparse

import fatcat_client
from fatcat_client import *
from fatcat_client.rest import ApiException
from fatcat_tools import *

if __name__ == '__main__':
    parser = argparse.ArgumentParser()
    parser.add_argument('--debug',
        action='store_true',
        help="enable debugging interface")

    args = parser.parse_args()

    #api = 
    print("  __       _            _   _ ")
    print(" / _| __ _| |_ ___ __ _| |_| |")
    print("| |_ / _` | __/ __/ _` | __| |")
    print("|  _| (_| | || (_| (_| | |_|_|")
    print("|_|  \__,_|\__\___\__,_|\__(_)")
    print()

    admin_id = "aaaaaaaaaaaabkvkaaaaaaaaae"

    local_conf = fatcat_client.Configuration()
    local_conf.host = 'http://localhost:9411/v0'
    local_api = fatcat_client.DefaultApi(fatcat_client.ApiClient(local_conf))

    prod_conf = fatcat_client.Configuration()
    prod_conf.host = 'https://api.fatcat.wiki/v0'
    prod_api = fatcat_client.DefaultApi(fatcat_client.ApiClient(prod_conf))

    qa_conf = fatcat_client.Configuration()
    qa_conf.host = 'https://api.qa.fatcat.wiki/v0'
    qa_api = fatcat_client.DefaultApi(fatcat_client.ApiClient(qa_conf))