Flask jsonify response. g and Using SQLite 3 with Flask.
Flask jsonify response. dumps(results_dict, separators=(',', ':')) resp.
Flask jsonify response Most important function to build JSON response is json_response(). route('/image', methods=['GET']) def get_image(): # 返回图像流的逻辑将在下文讨论 image_stream = get_image_stream() # 将图像流和文本组合成JSON响应 json_response = { 'image': image Jan 6, 2016 · The point is I have a helper function and if condition is met I want to return the response right away. loads(response2. list. I use the ast library to decode the response. Response() object that already has the appropriate content-type header 'application/json' for use with json responses. Accessing Request Data¶ For web applications it’s crucial to react to the data a client sends to the server. Flask 返回 JSON 和文件 在本文中,我们将介绍如何在使用 Flask 框架开发 Web 应用时,同时返回 JSON 数据和文件。 阅读更多:Flask 教程 Flask 框架简介 Flask 是一个轻量级的 Python Web 框架,它被广泛应用于开发 Web 应用和 API。 Jun 1, 2022 · You want to get your Flask application to return JSON data in a view response so that you can perform operations on the data. ext. get_body(): class JSONException(HTTPException): def get_response(self, environ): return jsonify(a=1) The alternative is to just use json. route('/') def I'm writing Flask web-application and want to know about best practice for returning unsuccessful response. append(u'ტესტ') data = { "result" : my_list} json_string = json. How can I change the May 20, 2016 · The jsonify() function in flask returns flask. The documentation states that:. If you have some experience Jan 25, 2021 · You need to convert the response from binary to string first: response. Get JSON from Flask request only if it is valid. Although df. The first set of code is from my python function (print_most_similar) and is cr Oct 31, 2019 · jsonify creates a Response with the JSON representation of the given arguments with an application/json mimetype. For more information read this : jsonify & make_response. Aug 20, 2019 · のように自らjson. from flask import Response from bson import json_util And then replace jsonify with something similar to this: Mar 21, 2014 · jsonify() produces a full response object, not a response body, so use HTTPException. To return a JSON response simply and effectively, you can use Flask’s built-in jsonify function. dumps() is that jsonify() sets the Content-Type HTTP header to application/json. And I like my APIs to respond with JSON. bytes. json_encoder = MiniJSONEncoder app. Feb 2, 2024 · We will learn, with this explanation, about JSON support in Flask and how to create an API and return it in JSON response with the help of jsonify() in Flask. enter code here from flask import Flask, request,jsonify,json app = Flask(__name__) @app. dumpsを使ってJSONをダンプすることもできますが、こちらはheaderのContent-Typeがtext/html; charset=utf-8となり、みずからheaderを書き換える必要が出てくるので、flask. Oct 26, 2020 · Flask comes with a jsonify() function that returns JSON as a Flask Response object. Aug 14, 2012 · The JSON string (held in variable ret) is gathered from elsewhere (using stdout from another program using subprocess) so I can't use jsonify provided with Flask. jsonify¶ flask. Using jsonify in Flask allows this data to be converted and returned as a response object to the client, with the Content-Type header automatically set to application/json. Here's a simple example: from flask import Flask, make_response app = Flask(__name__) @app. Follow Aug 29, 2019 · Responseクラスにhttpステータスを指定する. json is distinct from the built-in json module. If you need to see or use the payload/data in your script, use json. 2 and would be removed in Flask 2. If the return value is a string it's converted into a response object with the string as response body, a 200 OK status code and a text/html mimetype. To disable default JSON (dict) key sort: from flask import Flask app = Flask(__name__) app. to_json(orient="records") will serve you right, you can achieve your specific format through df. Oct 26, 2020 · My most common use case for Flask is making APIs. How can you do this? The Solution. E. the problem is the response get cached like the following. My code is seems to be returning the Response object, instead of the formatted json object that I want. See the documentation for flask. While using JSON with Flask is pretty simple because the type of the JSON object can be mapped to Python types, and we Jan 4, 2025 · Here's an example of how to handle 404 errors by returning a JSON response. My guess is: it has a lot to do with indentation and making a pretty json dump. 1. Aug 5, 2019 · When implementing REST API with Flask-Restful, I wanted to return a Flask's Response object, because it is flexible and easy to use. dumps() it is sending back text. The easiest option is probably to remove all line breaks and space characters, Aug 18, 2011 · Here's what's usually sufficient for me: I create a serialization mixin which I use with my models. route('/', methods=[ Nov 15, 2024 · The basic syntax of make_response() allows you to create a response object from your return value. txt" return response from flask import jsonify @app. I've looked at the flask jsonify docs, but I'm just not getting it. What i want to ask is, I am getting json in following format after jsonify that uses integer as index from flask import jsonify @app. The response object in Flask is used to construct and customize these… 01 はじめに 02 環境の導入と基本事項 03 データ構造と制御構造 04 プログラムの再利用・ルーティング 05 テンプレートとhtml . Mar 26, 2024 · You could first use jsonify to convert your data into JSON format and then wrap it with make_response, where you can further manipulate the response by adding headers or changing the status code as needed. However I can't figure out how to convert this object into a dictionary. make_response¶ flask. """ item_separator = ',' key_separator = ':' app = Flask(__name__) app. json import JSONEncoder class MiniJSONEncoder(JSONEncoder): """Minify JSON output. Feb 7, 2010 · Here's the difference between the two: What is the difference between `sudo apt install python3-flask` and `pip3 install Flask`? So now the flask command is available system-wide. I want to send application/json back to the client (my customer requires this). app = Flask(__name__) Nov 15, 2024 · Learn how to use Flask's jsonify() function to create standardized JSON responses in your web applications, handle complex data types, and ensure proper content headers. Hot Network Questions Apr 22, 2018 · I was wondering if there might be a way to return my Flask app's response as an HTML table populated by the JSON response key value pairs instead of merely having the entire JSON string on the HTML ValueError: View function did not return a response This should be possible because the following only downloads a file and doesn't render the template: myString = "First line of a document" response = make_response(myString) response. response_class は、Flask アプリケーションでクライアントに送信されるレスポンスオブジェクトのクラスを指定する属性です。デフォルトでは、flask. But I am getting the following error: Traceback ( The main purpose of the Flask-JSON extension is to provide a convenient tool for creating JSON responses. 在本文中,我们将介绍如何在使用Flask框架时保持传递给jsonify()函数的排序字典的顺序。 Flask是一个基于Python的轻量级Web框架,它简单易用且功能强大。 Nov 25, 2013 · I'm trying to make a response using Flask from a Mongodb collection: @app. jsonify returns a flask Response object. dumps or call the data attribute on the response object. So far the process of sending the file from JS to Flask seems to be working fine, but how to get any information from Flask ba May 24, 2017 · Since json_encoder got deprecated in Flask 2. How do I convert a JSON Response object (jsonify from flask) to a dictionary to process Hot Network Questions What happens to the kinetic energy of the fusion products generated in the center of the Sun? Feb 23, 2017 · how to read python flask jsonify response object. Improve this answer. route("/") def hello(): my_list = [] my_list. data) resp2 = flask. g. Python/Flask - Print response value from nested JSON. response = make_response(jsonify(success=True)) except Dec 24, 2018 · I am creating apis in python flask. 0. g is thread safe and can be used to set custom & dynamic attributes from any file of application, this is especially helpful if we are setting custom/dynamic response headers from any helper class, that can also A response object is created with the string encoded to UTF-8 as the body. While jsonify() simplifies JSON data responses, make_response() allows you to control every part of the response, including status codes, headers, and the data format. get_response(), not . Because views do not have to return response objects but can return a value that is converted into a response object by Flask itself, it becomes tricky to add headers to it. To use a different provider, either subclass Flask and set json_provider_class to a provider class, or set app. I had the same issue today and it was more of a non-issue than expected. x has DefaultJSONProvider class with a default parameter: sort_keys = True. 0. Response() object that already has the appropriate content-type header 'application/json' for use with json responses, whereas the json. Also, don't use list as a variable name and convert the unique set back to list. This way of setting response headers in Flask application context using middleware is thread safe and can be used to set custom & dynamic attributes, read the request headers this is especially helpful if we are setting custom/dynamic response headers from any helper class. It turns the JSON output into a Response object with the application/json mimetype. (Incase your wondering Nov 1, 2024 · make_response() It is a Flask utility function that allows you to create custom HTTP responses. In this case if user is not found, I want to return a request Jun 17, 2015 · I am performing tests on my Flask application and I am expecting a json response built with jsonify. Return a Python Jul 27, 2020 · i have an app that return a json response (no HTML). jsonify only allowed dicts as the top-level object for security reasons; this is no longer applicable in modern browsers. dumps() will just return an encoded string, which would require manually adding the mime type header. Flask comes with a jsonify() function that returns JSON as a Flask Response object. pop('_id') You can also use bson. simply do this: return data, 200 Share. data property here to retrieve the response body, as that'll flatten the response iterable for you. set_data(value=j_string) return resp Jan 30, 2019 · The JSON_AS_ASCII, JSON_SORT_KEYS, JSONIFY_MIMETYPE, and JSONIFY_PRETTYPRINT_REGULAR config keys are removed. errorhandler(404) def page_not_found(e): if Jun 23, 2017 · Expected Behavior Flask's jsonify response incorrectly marks the timezone when stringing the datetime object. With json_response() you can: Create JSON response by passing keyword arguments: Nov 25, 2023 · In Flask, responses represent the data that is sent back to the client’s browser after a request is processed by the server. Aug 15, 2020 · Background:I'm building a basic flask app, that will allow me to return a Collection from a Atlas Compass Cluster and then use the Collection data to create an HTML container to display the data and Flask 如何读取Python Flask的Jsonify响应对象 在本文中,我们将介绍如何读取Python Flask框架中的Jsonify响应对象。Flask是一个基于Python的微型Web框架,提供了许多功能来简化Web开发过程。Jsonify是Flask的一个功能,它可以将字典、列表等Python对象转换为JSON格式的响应对象。 Nov 12, 2018 · Cloud Functions has Flask available under the hood, so you can use it's jsonify function to return a JSON response. dumps( ) returns a string rather than an object that is returned by the jsonify function. When I use json. flask. Jun 3, 2017 · We're using Flask for one of our API's and I was just wondering if anyone knew how to return a HTTP response 201? For errors such as 404 we can call: from flask import abort abort(404) But for 2 Mar 9, 2018 · @avigil i noticed this issue repeated with many reasons ans solutions, tried out many of them including code improvements and server changes, i use the built in flask server, now i am trying to ask for a different approach, like yielding response, text instead of json, separate the endpoint like notrmal and ftp parts. route jsonify returns a Response object to be returned from the Flask view as a JSON response to the client so in this case stocks is not a JSON object but a Response object. order_by (User. May 11, 2015 · I'm sending a huge JSON string (with jsonify in Flask) to my webpage pretty often, so I would like to reduce the data. Install the flask-restful library using the following command: See full list on geeksforgeeks. The app sends a JSON file to the server where it is parsed using jsonify. httpauth import HTTPBasicAuth import independent app = Flask(__name__, static_url_path="")` May 28, 2014 · If you need return different response objects in one route for different cases: render_template return unicode that transform to valid Response and jsonify return already Response object, so you can use both in same route: Nov 26, 2014 · how to read python flask jsonify response object. Jan 3, 2016 · I'm having a little trouble using the flask. . py runserver, or whichever method you use)) in order for the change to take effect, even if the code is correct. Version 2. This way of setting response headers in Flask application context using flask. Jun 19, 2022 · Call flask. 0, JSON handling was somewhat different. jsonifyを使う方が良いです。 Sep 15, 2012 · Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about your product, service or employer brand If you don't want to change the configuration for your entire API, you can return an unsorted JSON response using a small function like this: def make_unsorted_response(results_dict: dict, status_code: int): resp = make_response({}, status_code) j_string = json. from flask import jsonify, request @app. json_util. make_response (*args) [source] ¶ Sometimes it is necessary to set additional headers in a view. This method automatically serializes your data into JSON format. query. If this is the case, uninstalling flask with apt and installing it with pip should do the trick: sudo apt remove python-flask pip install flask Jun 25, 2013 · Is there a way in Flask to send the response to the client and then continue doing some processing? I have a few book-keeping tasks which are to be done, but I don't want to keep the client waiting. dumps to create JSON data, then return a response with the application/json content type. Jun 12, 2023 · Approaches: We are going to write a simple flask API that returns a JSON response using two approaches: Using Flask jsonify object. Dec 2, 2019 · 在前后端分离的时代,后端一般返回前端的数据就是json格式的响应数据。 而json格式的响应数据其实实际上就是一个字符串。 Aug 27, 2018 · Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about your product, service or employer brand Go to the flask file in microblog, then activate the virtual environment with source bin/activate, then go to flask/bin and install flask, and the rest of the packages, pip install flask. loads(response1. from flask import jsonify, make_response # base api template baseApi = {'status':Non I am using Python Flask to create a server. stories. I have a list of objects that I need to jsonify. Method 1: Using jsonify. route ("/users") def user_list (): users = User. headers["Content-Disposition"] = "attachment; filename=myFile. The serialization function basically fetches whatever attributes the SQLAlchemy inspector exposes and puts it in a dict. Apr 26, 2016 · # Assuming response1 and response2 are the return value from jsonify resp1 = flask. The "Error" is the last comma! Everything is ok, when i changed it to: pip install Flask 现在,我们可以创建一个Python文件,并使用以下代码设置一个基本的Flask API: from flask import Flask, jsonify, Response app = Flask(__name__) @app. 3, the following update might be useful. If you want to use JSON but not directly return it to the client by using, you can use the tojson filter to convert an object to JSON in the template. Whereas, the json. Return a json on browser - Flask. dict. json. Whereas the output of json. route('/stories', methods = ['GET']) def get_stories(): stories = db. json to an instance of the class. It will make your life easier – corvid. while make_response is used to set additional headers or can be used to convert a value in response object. Flask 如何保持传递给jsonify()函数的排序字典的顺序. dumps() is that jsonify() sets the Content-Type HTTP header to application/json . config Sep 28, 2014 · About Responses in Flask:. from flask import jsonify @app. It contains tools for conversion between BSON and JSON. flaskは上のようなreturnだけでなく、ユーザへの返却にResponseクラスを使用することができます。 そのResponseクラスにhttpステータスを追加することでクライアントに返却するhttpステータスを簡単に指定できます Flask の flask. dumps() method will just return an encoded string, which would require manually adding the MIME type Apr 10, 2022 · if you use jsonify with flask-restful, it tries to jsonify a response twice. Oct 27, 2014 · jsonify returns a Response object, Flask's session will json encode values and sign the cookie for security, something you have to manually do when using set_cookie. decode('utf-8')) Share Improve this answer Jul 10, 2016 · You are getting the response - <Response 55 bytes [200 OK]> when printing because jsonify returns a response object with headers ideally meant for broswers and API calls. A dictionary that will be jsonify’d before being returned. How can I keep the date in yyyy-mm-dd format when using jsonify? test_date = datetime. jsonify would try to detect whether a request was AJAX and return pretty printed if it was not; this was removed because it was unreliable. A generator that returns str or bytes to be streamed as Jun 4, 2013 · Prior to Flask 1. I have returned the data in json format using jsonify of flask. data) resp1. Feb 9, 2019 · I am trying to retun JSON object from my flask server but only thing it retun is OK string. The jsonify() function in flask returns a flask. generator or iterator. decode('utf-8') and then parse it as JSON: json. jsonify (*args, **kwargs) [source] ¶ This function wraps dumps() to add a few enhancements that make life easier. dumps(data), mimetype='application/json' return response. Jul 17, 2018 · That's because you're passing ndarray type to jsonify. For example: return Response( response=jsonify({ Oct 24, 2021 · I have a Flask app. Might as well make this an answer. – Use flask's jsonify to return a JSON response. Apr 11, 2015 · It can be passed in all json validator, but Flask think it's invalid, and give a puzzling BAD REQUEST 400 response. Response クラスが使用されます。 Aug 20, 2014 · also, you should really use jsonify in flask to make a json response. Using the flask_restful library with Flask. You will see flask listed inside bin directory. In this article we have got to know about details of how jsonify works in flask application and knowing the full cycle of implementation of jsonify along with some hands-on codes. Hope this will help you! It’s something in which you can store information for your own needs. I would like to change the status code and response data in case the storing task could not complete. status_code = 200 return response Jun 3, 2020 · I am trying to build an asynchronous file uploader with JS and Flask. I've had a look at the "Returning Json" Documentation and this Stackoverflow question but I haven't had any luck so far. dumps() is just Flask:如何使用jsonify更改状态码来返回Response 在本文中,我们将介绍如何在Flask框架中使用jsonify函数来更改状态码并返回Response。 Flask是一个轻量级的Web框架,它以简单、易用和灵活而闻名。它提供了许多强大的功能,包括处理请求、响应和路由等。 Mar 26, 2024 · This JSON example shows how data can be structured in a clear, readable format for both people and computers. name). 1:5000/status route, it should renderize in a browser In addition to the other answer of JSONIFY_PRETTYPRINT_REGULAR, you can also get rid of the spaces between list elements by extending flask's jsonencoder, like so:. Return a Valid JSON Response With the Help of jsonify() in Flask. date( Dec 13, 2024 · Flask. x = "some data you want to return" return x, 200, {'Content-Type': 'text/css; charset=utf-8'} Update: Use the method below because it will work with both python 2. There are two methods you can use to return JSON data in your Flask application’s view: by returning a Python dictionary, or by using Flask’s jsonify() method. Apr 18, 2023 · Here we can clearly notice that the json. 3. I am using MySQL for database and got data successfully using SELECT query. Dec 8, 2021 · flaskというかrequestの機能を利用するので、どちらもrequestをインポートした上で jsonifyをインポートして利用する。 Nov 17, 2022 · I have the following method in Flask that return a jsonify response, so when hitting http://127. date to what appears to be an HTTP date. In your function: from flask import jsonify def my_function(request): data = Mar 11, 2020 · The documentation says that a dict return value is turned into a response object using jsonify; it doesn't say anything about the individual elements of a tuple return value; I think the implication is that you need to create the correct response object yourself for the first element of the tuple. to_json for u in users]) It is usually not a good idea to return file data in a JSON response. jsonify() 関数は、Python の json モジュールの dumps() 関数をラップして、JSON レスポンスを簡単に作成するために役立ちます。jsonify() 関数は、以下の利点があります。 We can set the response headers for all responses in Python Flask application gracefully using WSGI Middleware. x and python 3. For jsonify() responses that's just a list with just one string in it. Converting result to json in python flask. Conclusion. All other response related features uses it. Example: `#!flask/bin/python import six from flask import Flask, jsonify, abort, request, make_response, url_for from flask. find() json Aug 2, 2012 · As simple as this. response_class( response=json. dumps(results_dict, separators=(',', ':')) resp. The return value from a view function is automatically converted into a response object for you. route('/') def hello(): response = make_response('Hello, World!') response. After adding the CORS functionality, you must restart your Flask server (ctrl + c-> python manage. items() if k != '_id'})) or you can simply remove _id by calling page. The reason to use jsonify() over a regular json. This section describes how you can do that. Sep 16, 2014 · We can set the response headers in Python Flask application using Flask application context using flask. x and it eliminates the "multiple header" problem (potentially emitting multiple, duplicate headers). dumps() to produce a body here: flask. . data = make_summary() response = app. Libraries Required: Install the python Flask library using the following command: pip install Flask. iterrows() and/or defaultdit Here is an example: Feb 13, 2013 · If you still want to user flask's json and ensure the utf-8 encoding then you can do something like this: from flask import json,Response @app. However, you should use either the response. About Responses. I struggle with the setup as I don't se Apr 27, 2017 · For some reason, the jsonify function is converting my datetime. My class has several inst-vars, each of which is a string: gene_id, gene_symbol, Aug 27, 2019 · In my flask application, I would like to store the response in a MongoDB. route("/dummy") def dummy(): return jsonify({"dummy":"dummy-value"}) And for the test, you'll have to pull the JSON out of the HTTP response Nov 9, 2021 · how to read python flask jsonify response object. Commented Aug 20, 2014 at 15:43. update Nov 9, 2013 · jsonify({ 'page': make_public_page({k:v for k, v in page. A list that will be jsonify’d before being returned. The newly parsed object is then used to call a third-party API. In Flask this information is provided by the global request object. dumps(data,ensure_ascii = False) #creating a Response object to set the content type and the encoding response = Response(json_string Jun 8, 2017 · from flask import Response, json, request, jsonify, Flask import requests from flask_marshmallow import Marshmallow from flask_restful import Api, Resource from Dec 13, 2024 · Flaskのmake_response()関数は、HTTPレスポンスオブジェクトを作成する際に使用されます。この関数を使用することで、レスポンスのステータスコード、ヘッダー、ボディなどの情報を細かく設定することができます。 Jun 4, 2017 · First time using Flask, I have created a very basic app and I am trying to print the results of a recommender system. jsonify function to output a formatted json response from a dictionary input, as described in here. A response object is created with the bytes as the body. org Dec 5, 2024 · This post covers ten effective methods to return a JSON response from a Flask view, alongside practical examples and best practices. sort_keys = False response is a WSGI object, and that means the body of the response must be an iterable. How would I go about doing this? @app. loads(response. How to Validate json against jsonschema in flask? 0. from flask import Flask from flask. g and Using SQLite 3 with Flask. It always contains the string GMT, regardless of if the datetime object is not naive or has tzinfo set. Here's the method definition (I stripped the comments to save space, full code can be found here) : Jun 24, 2014 · I understand that flask. all return jsonify ([u.
xqmal wio hweco djdqwyst sbtwi vwsf jvtvm cwvkobfe olol ponieh
{"Title":"What is the best girl
name?","Description":"Wheel of girl
names","FontSize":7,"LabelsList":["Emma","Olivia","Isabel","Sophie","Charlotte","Mia","Amelia","Harper","Evelyn","Abigail","Emily","Elizabeth","Mila","Ella","Avery","Camilla","Aria","Scarlett","Victoria","Madison","Luna","Grace","Chloe","Penelope","Riley","Zoey","Nora","Lily","Eleanor","Hannah","Lillian","Addison","Aubrey","Ellie","Stella","Natalia","Zoe","Leah","Hazel","Aurora","Savannah","Brooklyn","Bella","Claire","Skylar","Lucy","Paisley","Everly","Anna","Caroline","Nova","Genesis","Emelia","Kennedy","Maya","Willow","Kinsley","Naomi","Sarah","Allison","Gabriella","Madelyn","Cora","Eva","Serenity","Autumn","Hailey","Gianna","Valentina","Eliana","Quinn","Nevaeh","Sadie","Linda","Alexa","Josephine","Emery","Julia","Delilah","Arianna","Vivian","Kaylee","Sophie","Brielle","Madeline","Hadley","Ibby","Sam","Madie","Maria","Amanda","Ayaana","Rachel","Ashley","Alyssa","Keara","Rihanna","Brianna","Kassandra","Laura","Summer","Chelsea","Megan","Jordan"],"Style":{"_id":null,"Type":0,"Colors":["#f44336","#710d06","#9c27b0","#3e1046","#03a9f4","#014462","#009688","#003c36","#8bc34a","#38511b","#ffeb3b","#7e7100","#ff9800","#663d00","#607d8b","#263238","#e91e63","#600927","#673ab7","#291749","#2196f3","#063d69","#00bcd4","#004b55","#4caf50","#1e4620","#cddc39","#575e11","#ffc107","#694f00","#9e9e9e","#3f3f3f","#3f51b5","#192048","#ff5722","#741c00","#795548","#30221d"],"Data":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[6,7],[8,9],[10,11],[12,13],[16,17],[20,21],[22,23],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[36,37],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[2,3],[32,33],[4,5],[6,7]],"Space":null},"ColorLock":null,"LabelRepeat":1,"ThumbnailUrl":"","Confirmed":true,"TextDisplayType":null,"Flagged":false,"DateModified":"2020-02-05T05:14:","CategoryId":3,"Weights":[],"WheelKey":"what-is-the-best-girl-name"}