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.
22 lines
695 B
22 lines
695 B
import os |
|
|
|
from axione_api.api import query_axione_pto, parse_response |
|
from axione_api.config import parse_config |
|
|
|
|
|
if __name__ == "__main__": |
|
cfg_path = os.environ.get("CONFIG", "/etc/axione-elig-test.ini") |
|
print(f'Reading the "{cfg_path}" config file') |
|
cfg = parse_config(cfg_path) |
|
cfg.debug = True if "DEBUG" in os.environ else False |
|
if cfg.debug: |
|
print("===================") |
|
print("DEBUG_MODE") |
|
print("No requests will be performed") |
|
print("We'll inject some dummy data instead") |
|
print("===================") |
|
print("") |
|
|
|
resp = query_axione_pto(cfg, "SPTH-BIEM2-0197") |
|
presp = parse_response(resp) |
|
print(presp)
|
|
|