Copyright header, formatting

main
Jeff Moe 2023-09-27 12:37:51 -06:00
parent 1b280c21dd
commit 671c1ec295
1 changed files with 22 additions and 4 deletions

View File

@ -1,5 +1,23 @@
#!/usr/bin/env python3
"""
xeno-crufto
Copyright 2023, Jeff Moe <moe@spacecruft.org>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
import argparse
import json
import requests
@ -25,13 +43,13 @@ args = parser.parse_args()
API_URL = args.api
QUERY = args.query
def print_json(jsn):
print(json.dumps(json.loads(jsn), sort_keys=True, indent=4))
QUERYURL =(API_URL + "?query=" + QUERY)
resp = requests.post(
f"{QUERYURL}"
)
QUERYURL = API_URL + "?query=" + QUERY
resp = requests.post(f"{QUERYURL}")
print_json(resp.text)