I am creating a python api which will receive a hexadecimal data like below:
AA213FD51B3801043FBC
I have to further decode to make it human readable string which I can do easily. Normally I have designed flask api to receive json data like below:
@app.route('/', methods=['POST'])
def hello():
raw_data = request.get_json()
but not sure how to receive hex data. Can anyone please suggest any idea. Thanks