Json dump vs dumps. dump, the file object points to the end of the file.
Json dump vs dumps. dump() Validating JSON Data: Before using json.
Json dump vs dumps Jun 19, 2024 · What is the difference between JSON dump() and JSON dumps()? json. dumps(): Serializes a Python object into a JSON formatted string. dumps(py_obj) A py_obj can be a string, list, dictionary, etc. 394 - dump 50 JSON 0. Instead, he wanted to record each dictionary entry on a new line. Dump = Python → JSON. literal_eval instead of json. متد json. (json. If ensure_ascii is False, some chunks written to fp may be unicode instances. This question already has quite a few answers—including one that has been extensively validated by the community. dumps with cls will call the encode method on your JSON object, which will return the string representation. Keeps the structure of tuple as the key, in case you are editing the JSON by hand. dump()需提供文件对象,而json. Sending JSON from Python to Java. JSON. We see the difference of the compact encoding is just one whitespace. dumps(), as they deal with JSON strings directly in memory. loads lets me convert this into structured JSON after an API sends it to me. str() converts to a Python string, json. Is this really what you want? – Jun 9, 2017 · In python2 import json a = {"text": u"你好". As in, they send JSON strings to each other, and each has their own way of… Dec 16, 2014 · What is the difference between json. loads vs json. In the end, I really wanted to know if there was any performance issues around using an rdd vs pandas to build this. Improve this answer. dumps(json. Open the file in a text editor and you will see. ast. dumps()). dumps() While json. Hou Lu Hou Lu Mar 31, 2013 · Use repr and ast. dumps(); métodos con los cuales deserializamos en Python archivos json. By default, json. Jan 11, 2022 · Changes are usually written to disk in blocks, usually on the order of 2 or 4KiB or so. The reason is presumably that iterative encoding is not useful if you store the entire result in memory anyway. json_mylist = json. It can be really hard to remember what json. dump(py_obj, file_name) json. dump(data, file) The method takes two parameters. Example Jun 12, 2019 · b = r'{"Ä": "ß"}' print(len(b)) print(len(json. g. Since base64. dumps(preprocessor. Users with dict objects using non-str keys should specify option=orjson. (Incase your wondering, if I use jsonify() instead of json. The native json module has an option to change this behavior with the separators argument, while orjson does not. I demonstrate how each of them could May 12, 2015 · It makes no sense to use a string as the argument of json. dumps برای تبدیل یک شیء پایتون به رشته فرمتشده JSON استفاده میشود. dumps() instead. 2. This module can thus also be used as a YAML serial Dir Entries Method Time Length dump 10 JSON 0. dumps() are the most efficient when it comes to encoding a large array to json format. dump, this method dumped all its content in one line. loads() or json. , dictionaries or lists) as JSON data to a file or file-like object. Aug 30, 2023 · Exploring Alternatives to json. dumps returns a str. Logging application data in JSON format. I noticed an unintended escaping of the entire data-string for a tweet being enclosed in double quotes. We can use libraries like jsonschema or jsonlint to validate JSON data Oct 23, 2018 · json. Exporting structured data from applications. Then json. Oct 2, 2015 · dumps takes an object and produces a string: >>> a = {'foo': 3} >>> json. If ensure_ascii is False, the result may contain non-ASCII characters and the return value may be a unicode instance See full list on pynative. dumps(a, ensure_ascii=False) >>> Out: '{"text": "\xc4\xe3\xba\xc3"}' I want to get same 'Out' in Jan 18, 2018 · You need to build the fundamental structure yourself in Python before using json. To achieve this use: with g as outfile: json. dumps When it comes to json. Both refer to the process of converting a model to a dictionary or JSON-encoded string. loads: Reads from a string. dump(). These are differentiated by a trailing s in the function name. From the json. The JSON produced by this module’s default settings (in particular, the default separators value) is also a subset of YAML 1. The dumps() is used when the objects are required to be in string format and is used for parsing, printing, etc, . dumps() generate minified versions of JSON to reduce the size of the file on disk and the size of data transmitted over the network. You can get more info from here Nov 5, 2024 · What is json. dumps() is a method from Python's built-in json module that serializes Python objects into JSON strings. dumps when I need to convert all or part of that JSON back into a string. Is copy-pastable as save and load functions. dump. @AdamAL please read my answer more thoroughly: there is no round trip in this answer, apart from a decode call that’s only there to demonstrate that the bytes value indeed contains UTF-8 encoded data. This is essential when you need to convert Python dictionaries to JSON. dumps()’ and ‘json. seek(0) json. dumps() method encodes a Python object into JSON and returns a string. Apr 18, 2018 · import json_fix # import this anytime before the JSON. dumps() to convert Python objects, like dictionaries, into JSON-formatted strings. com Apr 23, 2024 · The json. literal_eval is a less powerful, more secure version of eval which will only decode strings, numbers, tuples, lists, dicts, booleans, and None. Sep 24, 2015 · to_json accepts many Ruby classes even though it acts only as a method for serialization. Python json dump. 518 - dump 100 JSON 0 Here's something that I hacked together. b64encode() encodes bytes you need to convert those bytes into a string using the ASCII codec:. dumps(some_obj)) json. loads. Differences between json. dump calls iterencode, which you have not overwritten. dump() and . One such method is the json. That means replacing the keys to the dictionaries yourself and incorporating your initial list into a dictionary against the 'ticketTypes' key. json은 javascript object notation의 줄임말로 웹 어플리케이션에서 구조화된 데이터를 표현하기 위한 string 기반의 포맷이다. I would like to know which one of json. Serialize obj to a JSON formatted str using this conversion table. dumps gets called import json # create a converter import numpy json. 1. dumps: If a JSON is both single quoted and contains a string in at least one value, which in turn contains single quotes, the only simple yet practical solution I have found is applying both: Dec 13, 2022 · json. To migrate from the standard library, the largest difference is that orjson. dumps() method, to interchange Oct 27, 2020 · 🔸 dump() vs. dumps applies some minor pretty-printing by default but JSON. t the Snowflake specially loads() and dumps() methods. Aug 28, 2023 · Two of its key functions are ‘json. json [Json] dump vs dumps. stringify, you need to specify the separators. JSONEncoder class was only used the when the dumps() method was called, and not when dump() was, however that's apparently not the case (so my previous solution didn't apply)…but the good news is I was able to do what I think you want done only in a different, simpler way that works with both methods — and it only Aug 21, 2019 · En un articulo antiguo, hable de las diferencias entre json. text) why are you serializing text? You serialized a string, which represents JSON already, as a JSON string. However, for general May 6, 2017 · What am I missing? I want to dump a dictionary as a json string. dumps(): Returns the JSON string representation of a Python object. dump() function. fallback_table[numpy. In this article, we‘ll focus primarily on json. dumps() Here we have a table that summarizes the key differences between these two functions: 💡 Tip: Think of dumps() as a "dump string" and that will help you remember which function is used for which purpose. json. dumps() expects strings in its input. dumps(). So it will get deserialized as a string Oct 8, 2014 · The default function (supplied to json. dump(data,file,indent=4) But it shows json. JSON is a subset of YAML 1. In this guide, we‘ll take an in-depth look at these functions, explore their syntax and parameters, and learn best practices for effectively handling JSON data in Python. These two methods have almost identical signatures, but dump() writes the converted JSON string to a stream (usually a file), whereas dumps() convert the dictionary into a JSON string only. The Jul 9, 2020 · orjson saves a few bytes (whitespaces after separators) by emitting : instead of : and , instead of , as the native json module does by default. dumps does in Python. The equivalent to Python's json. Jul 6, 2014 · Then when I try to dump this filled structure in a json file, it took hours and the output file's size exceeded 3 GBs before i quit the script. dumps returns bytes and json. Though there are multiple blogs on internet which describes these methods in detail but as part of this post we will continue our discussion w. . 0 and 1. Syntax json. dump: Writes to a file. Json. 485 - dump 50 Pickle 0. dumps() JSON is a lightweight data format for data interchange which can be easily read and written by humans, easily parsed and generated by machines. dump() This method is used for writing to a JSON file. load: Reads from a file. Is th Nov 12, 2020 · Note that if you dump and write one value at a time you will not produce valid json file, but ndjson file. dump(): Writes JSON data directly to a file. In this case it's str, so it just converts everything it doesn't know to strings. 3. dumps() You can use json. dumps() Method. load() and json. dump() Serialize obj as a JSON formatted stream to fp (a . dumps() produces a string that conforms to the JSON standard. The jsonify() function in flask returns a flask. dumps()? json. dump, the file object points to the end of the file. Aug 3, 2018 · import json json_data = json. Can you please show me an example of using json. Since JSON is supposed to be more compact, is this supposed to happen? because I tried with smaller scales (1000 entries) and it worked well. If you are reading or writing JSON data from files, or in local memory, you should use the json package. Follow This solution: Avoids the security risk of eval(). What you would like is still not a JSON object, but a stream of separate JSON objects with commas between them. dumps()method can convert a Python object into a JSON string. I am using python 2. Jun 2, 2022 · Learn the difference between json. Share. سینتکس: Dec 6, 2021 · In case some newbies are reading this article, it is probably necessary to mention that there are two similar methods in the JSON module — dump() and dumps(). 5k次,点赞6次,收藏21次。json. Dec 15, 2011 · This is not quite the same thing. What you're getting is not a JSON object, but a stream of separate JSON objects. Aug 9, 2023 · When different apps (with different tech stacks) communicate with one another, chances are that they use JSON strings. 011 1428790 load 10 Pickle 0. . Sep 1, 2024 · Two of the most commonly used functions in this module are json. stringify() as in: var jsonstr = JSON. Response() object that already has the appropriate content-type header 'application/json' for use with json responses. It will preserve the order regardless of whether you send it an OrderedDict. BytesIO data Of course, if your structure contains some other exotic data or data that is represented in JSON differently based on its type, this approach might mess it up as it turns all mappings into dict and all sequences into list. Whereas, the json. loads(b), separators=(',', ':')))) The output is 10, 20 and 19. That's not going to be any more parseable. I want to send application/json back to the client (my customer requires this). 서버에서 클라인트로 데이터를 전송하여 표현하거나, 그 반대로 클라이언트에서 서버로 보내는 경우들에 사용된다 2. Not very pretty but it seems to work. dumps returns a string, it doesn't write to a file descriptor. dumps, but repr will not convert tuples to lists. dump() needs a file object and dump JSON to it. dump() and json. Load = JSON → Python. 2. e. In this case it'll force all strings to be decoded to unicode first, and you can use a mix of unicode strings and strings already encoded as UTF-8. May 2, 2022 · dump vs dumps() For example, you have data in a list or dictionary or any Python object, and you want to encode and store it in a file in the form of JSON. ndarray] = lambda Jan 11, 2024 · If we have Python data and want to convert it into a JSON string, we should use json. decoder. dumps() converts a Python object to a JSON formatted string. The encoding conversion is based on the following table. 055 7143950 load 50 Pickle 2. generate(1) JSON::GeneratorError: only generation of JSON objects or arrays allowed 1. dump(hostDict, outfile,indent=2) Jul 5, 2020 · json. dump() function encodes a Python object as a JSON file. Oct 12, 2022 · Instead, I think the difference is that json. En este caso hablaré de la diferencia entre dump y dumps, que son métodos, utilizados para serializar un objeto Python a un objeto json. dump() vs json. write(json. dumps()에 indent 인자를 추가하면, 아래와 같이 보기 좋게 출력할 수 있습니다. dumps() The ‘json. dumps() is a method in the built-in json package in Python. dump(fu) I get the following error: Traceback ( I am trying to create a JSON string representation of a class instance and having difficulty. Python provides us with a module named ‘json’ to deal with JSON data. Oct 12, 2016 · json. Share Aug 6, 2023 · Dump Python objects to JSON Strings: json. dumps which is expecting a dictionary or a list/tuple as the argument. Then, we'll read in back from the file and play with it. dump(obj, file_object) Used to write Python objects (e. I don't care about precision on the client side, so a float is fine. loads() functions. decode('ascii') # 'ZGF0YSB0byBiZSBlbmNvZGVk' Sep 16, 2022 · Ci sono due alternative per scrivere su un file JSON nel corpo di una istruzione with: dump; dumps; La funzione dump() riceve due argomenti: L'oggetto che verrà salvato in formato JSON (ad esempio un dizionario). write()-supporting file-like object. dumps() methods in Python 3 for serializing and deserializing JSON data. It can return any object that the default encoder can serialize, such as a dict. dump() method converts a Python object into a JSON and writes it to a file, while the json. dump()` and `json. ; Example: import json data = {"name I tried small dict and msgpack was a tiny bit faster. your file will not be valid json, but each line in itself will be valid json. dump()method can be used for writing/dumping JSON to a file/socket. The two are orthogonal. The json module provides flexible methods for converting between JSON and Python objects. dump() برای نوشتن یک شیء پایتون به عنوان داده JSON در یک فایل استفاده می شود. 098 - dump 20 JSON 0. dump() json. dump(response. 036 2969020 load 20 JSON 1. GitHub Gist: instantly share code, notes, and snippets. dump() does is take the data object and convert it to a stream of characters that can be then stored in a file or transmitted over a network. To remove all whitespace, like JSON. See syntax, parameters, examples and comparison table. dump(some_obj, f) Then the difference is that the second is less typing, and it affords the possibility for better performance since the JSON module can theoretically stream the JSON to the file in chunks, whereas in the first version it has to create the entire JSON representation of the object in memory Jun 20, 2024 · dump() dumps() The dump() method is used when the Python objects have to be stored in a file. Use load/loads when converting JSON into Python, and dump/dumps when converting Python into Thank you for your interest in contributing to the Stack Overflow community. dumps() methods in Python, which are used to write and encode JSON data. dumps twice, you're just wrapping the Python string returned by the first json. 🔹 Important Terminology in JSON. Sep 1, 2024 · json. #load vs loads, dump vs dumps. There are also minor differences on the ensure_ascii behavior. 1 day ago · Note. dump docs: Aug 30, 2021 · While the former returns a json representation per row, the latter is a json representation of the collection. But not by much. Use Cases of json. See examples, syntax, and reference links for each method. 022 2857580 load 20 Pickle 0. It crawls directories and puts the files and their meta data (via mutagen), encoded in JSON, in a file as a simple "dat So I need a solution with simpler means, for instance astand/or json. dumps() it is sending back text. loads(b)) I get There is a workaround: pass the utf8 encoding (not utf-8!) to dumps method. Jan 28, 2016 · This isn't exactly an answer to your question, but if you're just looking for a data format that's easy on the eyes, you might try YAML. dump()? Jan 6, 2025 · 2. Finally, there are two important terms that you need to know to work with JSON: The difference between json. dumps() 함수를 이용하여 딕셔너리를 JSON 형식으로 출력할 수 있습니다. stringify(someVariable); Valid JSON doesn't contain structures like u'something', only "something". May 7, 2024 · Json Dump Vs Dumps The Python `json. The json. Writing JSON to Files with json. When I print out json. dumps() in JavaScript is JSON. dump, on the other hand, will call the default method which you have not implemented. dump() Serializa un objeto python como un objeto json. My quick & dirty JSON dump that eats dates and everything: json. dumps()` functions both serve the purpose of serializing Python objects to JSON format. write like this to store data in file. dumps and json. dump()` is used to write the serialized data directly to a file-like object, while `json. The syntax for this method is as follows: json. The json module contains functions for both reading and writing to and from unicode strings, and reading and writing to and from files. ; Is short. dumps() 1. dumps: Writes to a string. dumps(), it is converted into a JSON-formatted string. sort_keys=True를 인자로 전달하면 key가 정렬되어 JSON 형식으로 출력됩니다. dumps() method will just return an encoded string, which would require manually adding the MIME type JSON::dump vs JSON::generate. Jul 27, 2023 · The json. Dec 5, 2017 · JSON uses a smaller range of \<single letter> escapes as well as the \uhhhh form, and encodes UTF-16 surrogate pairs for non-BMP codepoints (so two \uhhhh sequences per codepoint). b64encode(b'data to be encoded') # b'ZGF0YSB0byBiZSBlbmNvZGVk' (notice the "b") data['bytes'] = encoded. Serialize versus dump. 7 With this code: import json fu = {'a':'b'} output = json. dumps() in python? 315. Issue 2 - ast & json. What is the difference between json. sort_keys is replaced by option=orjson. You then dump data from this position. 9}. dump(): Storing configuration files. Il nome del file con cui verrà salvato (un oggetto file). OPT_NON_STR_KEYS. * Sep 25, 2017 · Use json. dumps(): method can Jun 12, 2021 · During this post we will be discussing about commonly used four methods e. Jan 30, 2014 · You need to use json. dumps(): json. encode("gbk")} json. dump() Validating JSON Data: Before using json. If you try rewinding the file first, it should overwrite the data from the start: fp. loads does vs what json. loads(),json. loads(b)))) print(len(json. 9') as part of an object, and wish to encode this to a JSON string which should look like {'x': 3. dump vs json. dump(temp, fp) The difference is that json. load(): Reads JSON data from a file and returns a Python object. r. Is there a good way to deal with this? Thank you. dumps vs json. Writing into json file json. The dump() needs the json file name in which the output has to be stored as an argument. dumps) gets called for all objects that can't be serialized by default. dumps. May 31, 2021 · Updating old data with new data data. As part of its argument signature, JSON::generate allows you to set options such as indent levels and whitespace particulars. 375 - dump 10 Pickle 0. dumps(mylist, separators=(',', ':')) Jul 10, 2022 · From previous experience, I thought the encode() method of the base json. In the following example, we'll convert Python dictionary to JSON and write it to a text file. f. OPT_SORT_KEYS. dump: Dumps obj as a JSON string, calls generate on the object and returns the result. Since your test file is tiny, the changes are not flushed from the REPL until you close the file, or the REPL or your script terminates. load() takes that stream of characters and turns it back into a JSON object. Mar 17, 2016 · json. update(new_dict) # 3. dumps calls encode, while json. dump(), validating the JSON data to ensure its integrity is important. The json package offers many methods, including the json. Mar 3, 2014 · No. 079 7422550 load 50 JSON 9. It is None by default, which means "no pretty printing". I can use json. dump(),json. Which is great for serialization but not so great when deserializing Write a data in file using JSON use json. dumps() — JSON encoder and decoder — Python 3. Python uses True and False as boolean values, JSON uses true and false. – Martijn Pieters Apr 24, 2022 · In this video tutorial I go over the Python JSON library with a specific focus on both the . 017 1484510 load 10 JSON 0. loads() and json. dumps(my_dictionary, indent=4, sort_keys=True, default=str) default is a function applied to objects that aren't serializable. import base64 encoded = base64. dumps() used. repr will give you output reasonably similar in appearance to json. dumps() is incredibly useful for converting Python objects to JSON strings, there are other methods you can use, especially when dealing with larger data or file operations. Here’s a simple example: json 라이브러리를 이용하여 데이터를 JSON으로 출력하는 방법을 소개합니다. import json data = [1,2,3,4,5] with open('no. 4 documentation; When a dictionary is passed as the first argument to json. When I use json. dump and json. dump() will preserve the ordder of your dictionary. 0. dump() Feb 17, 2017 · Right before the json. If you really have a string like that, it's likely from Python via repr() or similar. In this post, we will see the difference between the two methods of this module–json. But the dump of the load is twice as long as the original. dump()和json. dump() or json. dumps()都是用于将Python对象转化为JSON字符串,但前者将字符串写入文件,后者直接返回字符串。使用json. i. May 4, 2022 · The . Jul 2, 2016 · 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 Apr 19, 2023 · 文章浏览阅读8. dumps() Purpose: Writes JSON to a file: Returns JSON as a string: Output: File on disk: String in memory: Usage: Ideal for file-based operations I have a Decimal('3. Writing JSON files json. However, `json. dumps()` returns the serialized data as a string. Follow answered Sep 25, 2017 at 2:37. dumps(), I do get application/json, however this function seems to have problems with some data (if I dont get a solution here, I will look further into Nov 26, 2020 · Python - Difference between json. Conclusion. Let's say the class is built like this: class testclass: value1 = "a" value2 = "b" A call to Dec 23, 2024 · Feature: json. dumps()’ function takes a Python object as input and converts it into a JSON formatted string. JSONDecodeError: Expecting value: line 1 column 1 (char 0) python Oct 21, 2022 · The jsonify() function is a part of the Flask framework whereas json. 498 - dump 20 Pickle 0. Python uses None objects, JSON uses null to as a special "doesn't exist" sentinel value. loads()’, which are used to convert Python objects into JSON format and vice versa. Pydantic uses the terms "serialize" and "dump" interchangeably. May 22, 2024 · Learn the difference between json. dumps(a) '{"foo": 3}' load would take a file-like object, read the data from that object, and use that string to create an object: Mar 17, 2021 · json. filter(packet)) # no _io keys or io. There are two syntaxes for collections like lists and dictionaries, "block" (where indentation shows the nesting) and "flow" (where brackets do that job). to_json => "1" JSON. I am retrieving Twitter data with a Python tool and dump these in JSON format to my disk. dumps()则不需。在转化时要注意Python对象的数据类型需兼容JSON。 Background: I am writing a python program which should manage my music files. If you set it to an integer value, it will enable pretty-printing, and use that many spaces to indent nested elements. dumps call in double-quotes, and the double-quotes that were inside the array get escaped, because they're embedded in one big JSON string now, instead of being used as quotes around JSON strings inside a JSON array. dumps() Serialize obj to a JSON formatted str. dumps, json. dumps is actually quite visible: dump – dumps into a file or StringIO; dumps – dumps a string, that could be printed; Still, I am going to give a few example with these, as the dumps has a few nice built-in features: ensure_ascii = False – allowing it to print even cyrillic; indent = 4 All json. dumps() function, alternatively, takes a Python object and returns a JSON string. The . JSON::dump, on the other hand, calls ::generate within itself, with specific pre-set options, so you lose the ability to set those yourself. dump(): Serializes a Python object into JSON and writes it to a file. dumps() produces a string, whereas JSONObject() produces an object. I am assuming that user who posted this question wanted to save dictionary type object in JSON file format but when the user used json. Learn Python Language - `load` vs `loads`, `dump` vs `dumps` Example. stringify does not. load(),json. 11. Best Practices for Using json. txt', 'w Jun 28, 2014 · When you call json. So I guess pickle is better choice most of the time, if you use python structures. You could probably handle simple dictionaries in a similar way. dumps() methods. There's a parameter called indent. Another thing to note about msgpack and json too, is that it can actually change structure when using dumps/loads, because for example it converts tuple into list.
idypka didratm xilbn ctjprhbd gheteb jetzx kvmt fxfygm yudv mnnpmii
{"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"}