Python Forum
Return in correct json format
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Return in correct json format
#2
This is a Python dict. The Python dict can converted with json.dumps(your_dict) to a json-string.

If you use flask:

from flask import jsonify

# your code

@app.route('/')
def root():
    message = {
        'statusCode': 200,
        'headers': {'Access-Control-Allow-Origin': '*',
        'Content-Type': 'application/json'},
        'body': {'message': 'Successfully inserted'}
    }
    return jsonify(message)
The jsonify function sets also the right content type in the headers.
Other frameworks have also helpers for this task.
Almost dead, but too lazy to die: https://sourceserver.info
All humans together. We don't need politicians!
Reply


Messages In This Thread
Return in correct json format - by UtiliseIT - May-12-2019, 10:12 AM
RE: Return in correct json format - by DeaD_EyE - May-12-2019, 10:46 AM
RE: Return in correct json format - by UtiliseIT - May-13-2019, 02:10 AM
RE: Return in correct json format - by snippsat - May-13-2019, 11:24 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Convert Json to table format python_student 4 15,430 Dec-05-2024, 04:32 PM
Last Post: Larz60+
  format json outputs ! evilcode1 3 2,790 Oct-29-2023, 01:30 PM
Last Post: omemoe277
  Converting cells in excel to JSON format desmondtay 4 3,059 May-23-2022, 10:31 AM
Last Post: Larz60+
  json format Bubu93200 6 4,201 Apr-23-2022, 08:59 AM
Last Post: Bubu93200
  How to return the next page from json recursively? sandson 0 1,738 Apr-01-2022, 11:01 PM
Last Post: sandson
  [split] script: remove all "carriage return" from my json variable pete 2 4,112 May-05-2020, 03:22 PM
Last Post: deanhystad
  script: remove all "carriage return" from my json variable mfran2002 4 14,101 Feb-20-2019, 05:07 AM
Last Post: mfran2002
  Return JSON records in single line using python 2.7 anandmn85 0 3,272 May-14-2018, 09:16 AM
Last Post: anandmn85
  how do I format json data in splunk? fxtyom 14 17,319 May-24-2017, 09:23 PM
Last Post: micseydel

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020