Skip to content

Instantly share code, notes, and snippets.

@najtin
Last active February 22, 2021 02:34
Show Gist options
  • Save najtin/2b80365278ef195614618fa42ce94aba to your computer and use it in GitHub Desktop.
Save najtin/2b80365278ef195614618fa42ce94aba to your computer and use it in GitHub Desktop.
proxy quoted numbers in json into numbers

Did you ever found yourself in a situation were you wanted to monitor something and pulled your hair out, because the measurements provided by the app are quoted numbers in json?

No more!

echo '"http://myupstream.app:80/monitor.json"' > upstream.json

python3 proxy-quoted-number.py

LICENSE

This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.

In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to http://unlicense.org/

#!/usr/bin/env python3
from http.server import BaseHTTPRequestHandler, HTTPServer
from urllib.parse import urlparse
import json
import requests
def cast_json_quoted_numbers(obj):
if type(obj)==type({}):
for key, value in obj.items():
obj[key] = cast_json_quoted_numbers(value)
return obj
if type(obj)==type([]):
for i in range(0, len(obj)):
obj[i] = cast_json_quoted_numbers(obj[i])
return obj
if not type(obj)==type(""):
return obj
if obj.isdigit():
return int(obj)
if obj.replace('.','',1).isdigit():
return float(obj)
def read_upstream():
r = requests.get(url)
return json.loads(r.text)
class RequestHandler(BaseHTTPRequestHandler):
def do_GET(self):
parsed_path = urlparse(self.path)
self.send_response(200)
self.send_header("Content-type", "application/json")
self.end_headers()
dictionary = read_upstream()
cast_json_quoted_numbers(dictionary)
self.wfile.write(json.dumps(dictionary).encode())
return
if __name__ == '__main__':
with open("upstream.json", "r") as file:
url = json.load(file)
server = HTTPServer(('localhost', 8000), RequestHandler)
print('Starting server at http://localhost:8000')
server.serve_forever()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment