Py2neo parameters. How to introduce parameters in a cypher query? 0.
Py2neo parameters. 1, my application immediately throws …
1.
Py2neo parameters database – Graph Databases. The py2neo. install module then brings facilities for installing, starting, stopping and configuring Neo4j instances, as well as classes for manipulating auth files. Bulk Load Operations¶ Each 目录The Py2neo v4 Handbook安装需求py2neo. admin. Cypher statement to return data type of entity properties in Neo4j. ClientError: Expected a parameter named param' param is well defined at this point of the program because I print it a line before executing the query. database包包含与Neo4j服务器交互所需的类和方法。为方便起见,这些类中的许多类也通过top-level包公开py2neo。 evaluate(cypher,parameters= None,** kwparameters): Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about Py2neo provides a rich set of data types for working with graph data. You have to create a new session per thread/async task. py2neo query You signed in with another tab or window. 4. _connector. 带关系的属性数据入库 node1 = Node("road_id", node_id = node_id_1, lng = lng1, lat = lat1) node2 = Node('road_id', node_id = node_id_2, lng = l py2neo. Skip to content. ogm. In the browser I would use this: MATCH n where The essential problem is already addressed in the answer by InverseFalcon, but to provide a complete answer including the py2neo and pandas bits, I post the code below:. I already have a neo4j graph created using the following parameters, which are working fine. You switched accounts I am trying to do a basic retrieval of a node from my Neo4j database using py2neo and a cypher call, but I can't find any examples of working code for py2neo v4. unwind_merge_nodes_query (data, merge_key, I am having some issues using the Neomodel and py2neo clients with Neo4j. The OGM is very 目录0 前言1 py2neo. 9k次。GraphGraph类有一个函数run,可以运行任意的cypher语句,返回结果为一个cursors实例run(statement, parameters=None, **kwparameters)Run a A full profile URI can be passed as a keyword argument. The I am using py2neo to run a Cypher query in Python. py2neo本身并不复杂,但要先适应它的思考模式。另一 I am using py2neo to query a set of data from a neo4j graph database and to create relationships between nodes once appropriate information has been achieved within a 文章浏览阅读1. Within a docker container I am using python 3. 以及 pip install neo4j==4. I'm trying the same setup on my corporate environment - so You're absolutely right - the best way to pass in variables is via parameters. database package contains classes and functions required to interact with a Neo4j server. My current solution is: using a for loops to run a It returns a list of dictionaries. 35. 5版本与Neo4j交互时,尝试创建节点时遇到了`ClientError:SyntaxError`,错误指出输入_无效,预期的是空格、注释、NodeLabel等。问 Py2neo是Python语言下用于操作neo4j图数据库的客户端库,本文总结了在使用Py2neo进行数据建模、查询优化和性能提升时常见的几个错误,并提供了相应的解决方案, 类 说明; Core Graph API: 直接可以直接从py2neo引用的几个核心类。负责具体执行提交的类。 Data Types: neo4j的核心,节点关系等。 I have a query to Neo4j through Py2neo v3 using ogm: output = graph. You can not pass x as a parameter here, I would suggest you create a query string in python with x as a Long running queries - For that you can set following 2 parameters in neo4j. properties: - execution_guard_enabled=true # it is milliseconds 文章浏览阅读641次,点赞7次,收藏2次。或许这是从网上复制下来的代码,看上去没什么问题,但实际上要结合具体的浏览器上的地址来看,具体如下:看到了吗,这里才是要 Apparently you are using wrongly py2neo to create nodes, you current code produce the following : As you can see, the first parameter you give to the Node object are the 我一直在尝试使用 py2neo 从我的 neo4j 数据库中读取数据,特别是我想执行以下密码查询, MATCH (node {name:"shoes"})-[r]->(n) RETURN r,n; //This works well in cypher-shell. I get a variety of errors as I try different parameters, and cannot figure out how to update/fork Py2neo to make it work with recent Neo4j servers; replace prov2neo with something else; None of these are easy solutions. 3 Path objects and other Walkable types1. match() part. A cursor py2neo. py file, at line 990, I changed the following code : else: result = self. 4k次。在使用Py2neo3. Graph怎么用?Python The problem was in the source code of py2neo. run def where (self, * predicates, ** properties): """ Refine this match to create a new match. cypher. Node object is not iterable. performance, I am trying to merge the query below to an existing database in Neo4j. py2neo return number of nodes and relationships created. Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about Py2neo is a comprehensive Neo4j driver library and toolkit for Python. run("MATCH (m:Column { name: 'code' }),(n:Column { name: 'locale_language_cd' }), p = shortestPath((m)-[rels:PART_OF*]-(n)) RETURN I am attempting to connect to an instance of an Aura cloud database using py2neo. 1 Node and Relationship objects1. All cursors in py2neo are "forward-only", You signed in with another tab or window. The criteria specified for refining the match consist of predicates and properties. Graph方法的具体用法?Python py2neo. sty with def merge_relationships (tx, data, merge_key, start_node_key = None, end_node_key = None, keys = None, preserve = None): """ Merge relationships from an iterable sequence of raw 通过本文的介绍,我们详细了解了如何使用 Py2neo 进行各种复杂的图数据库操作,包括索引与约束、事务处理、批量操作、图算法、与 Pandas 的集成,以及 NodeMatcher What i want to know is 1) The connection between neo4j and py2neo is made how exactly in py2neo v4 2) Do i always have to make a local connection or can i connect to the class py2neo. 0即可解决上述的三个问题。最近在使用neo4j创 Cypher. You mean only pass parameters to def get_search_results(. ) which are not null ? I can do that but it will require lot of pre I am trying in the absolute simplest way I can think of to create a node in my neo4j database using py2neo. You switched accounts parameters aren't being read in py2neo. You signed out in another tab or window. What is wrong with my Neo4j query for class Cursor (object): """ A `Cursor` is a navigator for a stream of records. clienterror: syntaxerror: the old I have successfully created nodes using py2neo with following attributes EmpNum Name Role. 1289. Navigation Menu Toggle navigation. data. The name of 文章浏览阅读5k次,点赞10次,收藏25次。 Py之py2neo:py2neo的简介、安装、使用方法之详细攻略目录py2neo的简介py2neo的安装py2neo的使用方法py2neo的简介 py2neo py2neo 初步环境安装连接数据库创建节点 Neo4j 为多种语言提供了 API 接口,如 java,python,C#,RUBY,. This was I'm using py2neo and trying to pass a parameter(a label) between methods for matching on but I can't figure out the syntax. 1311. Cypher file as parameter in py2neo python. cypher – Cypher Execution¶ Cursor objects¶ class py2neo. Pass set Parameters can not be used as for property names, relationship types and labels, since these patterns are part of the query structure that is compiled into a query plan. 0: 483: November 17, 2021 Neo4j Cypher Projection Query via py2neo. I have installed Neomodel and py2neo in seperate anaconda virtual environments and tested each neo4j - py2neo - Unable to place parameters into relationship on creation. status. config. 3. def _yielded_value (self, value): """ Translate 'raw' query return to an appropriate object in our world :param value: object: Node, relationship, path, list, tuple, scalar value :return: object: 这个错误通常发生在使用py2neo连接Neo4j数据库时,因为服务器返回的内容无法被解析为JSON格式。这可能是由于服务器返回了非预期的响应,例如HTML、XML或文本数 py2neo not enforcing uniqueness constraints in Neo4j database. How to use Python variables in a Cypher statement when using py2neo. That being said, prov2neo seems to 在 知识图谱 技术被广泛应用的现在,图 数据库技术 已经变得越来越重要。 本文为图 数据库应用 的基础,也就是在Windows系统里安装neo4j图数据库,并且配合python的py2neo库语言实现简单的入门,本文的价值在于您根据操作可以直 Following asking a previous question, I've tried to use batch transactions with Py2Neo to speed things up. How to merge nodes and relationships 本文整理汇总了Python中py2neo. Cypher. how to pass parameter to cypher query in py2neo. Set property with whitespace with py2neo. How to join (merge) data frames (inner, outer, left, right) Hot Network Questions xcolor. (self, cypher, parameters=None, I have two servers, one is for neo4j to store graph data, another server will run ETL to load data into neo4j every minutes. scheme. From what I 在使用py2neo时OverflowError: mktime argument out of range 使用时报错是因为py2neo版本不兼容,需要降版本, 报错版本是py2neo-2021. run用法 Parameters ----- args : arguments or :class:`~polyglotdb. If try to create only 10 (or so) relationships, it works without Overarching background I am currently attempting to write neo4j queries into functions to be used in flask. 1, my application immediately throws 1. Conditions are Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about How does Py2Neo use parameters to make repeat queries faster? Python. For a class project earlier this semester, I was trying to how to pass parameter to cypher query in py2neo. I'm trying to use parameters in a py2neo query, however I'm [Python] [py2neo][neo4j] TypeError: Parameters of type map are not supported,代码先锋网,一个为软件开发程序员提供代码片段和技术文章聚合的网站。 Cypher file as parameter in py2neo python. py2neo. I'm having some difficulty at the moment. threadsafety = 0 ¶ This module is not guaranteed to be thread-safe. unwind_merge_nodes_query (data, merge_key, labels = None, keys = None, preserve = None) [source] ¶ Generate a parameterised UNWINDMERGE query for Neo4j is an open source graph database, and Py2neo provides an interface to access Neo4j in Python. 0 How to pass a list into a Py2neo cypher query. In Neo4j, can I enforce a relationship+node value constraint? 0. Just to be clear, the generic answer to passing parameters to a py2neo query is this: from py2neo import Graph graph = Graph("URI", auth=("USER", "PASSWORD")) I'm trying to use parameters in a py2neo query, however I'm getting an error I'm not sure how to go about fixing. EOL! Py2neo is a comprehensive Neo4j driver library and toolkit for Python. Hot Network Questions Are linear mixed effects model robust to unbalanced Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about Cypher doesn't accept relationship types as query parameters. 0. First of all here's a version of the query and function working I am trying to make a simple API to interact with my database. Share Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about 在 Py2Neo 中,可以使用 `graph. bulk – Bulk data operations¶ This module contains facilities to carry out bulk data operations such as creating or merging nodes and relationships. run()` 方法和参数的示例: 首页 py2neo graph. Node datatype so that we can skip the nodes. 2. 6) how to get an existing node by node property without CypherQuery. You should however use a query parameter for property values. 2 Subgraph objects1. 5. Hot Network Questions Can I license artwork that has 可以看到是身份验证失败而产生的错误。这是由于连接时未设置用户名和密码导致的,默认用户名为 neo4j,密码为password,而 Neo4j 默认密码为 neo4j ,因此导致了认证 Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about 'py2neo. run() missing 1 required positional argument: 'cypher' 1. It contains up to one dictionary because the cypher limits the number of items returned to 1. 0, the latest). run方法代码示例,py2neo. See if this example helps Python - generator already 以上是关于Py2neo连接Neo4j报错:AuthError: http://localhost:7474/db/data/的主要内容,如果未能解决你的问题,请参考以下文章 for a project I am trying to implement a graphql endpoint via flask in order to query a neo4j-DB using py2neo and graphene. Additional arguments can be passed though the args The py2neo. Note: If there is neo4j - py2neo - Unable to place parameters into relationship on creation. 1558. Open lifetruth-liu opened this issue Aug 18, 2021 · 2 comments Open func merge Parameter does not correspond #914. Currently, I am passing the values of $user_id and $name. Neo4j Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about I have spent the last few months running neo4j on my local machine. 问题成因及解决 pip install py2neo //目前使用pip安装的py2neo版本为2021. py文件中特定行的代码,以避免时 neo4j - py2neo - Unable to place parameters into relationship on creation. 出现该报错的根本原因是:通过pip安装的Py2neo默认为最新版本(Py2neo 2021. How to pass a list into a Py2neo cypher query. Cursor (result, hydrant = None, sample_size = 3) [source] ¶. I've adapted my code quite a bit, but seem unable to build and Problem: I don't know how to, in python/py2neo, create relations between a unique starting node and a number of following nodes that I create dynamically in a for loop. I am trying to find an way to create nodes with a single statement, is this even Hi, I have been using your library since a long time with Neo4j 3. Model (* values, ** properties) [source] ¶ Base class for all OGM object classes. tsinghua. NET等。在这里,我们主要介绍用 python 操作 Neo4j。环境安 A couple of things to make your script work : from py2neo import neo4j is not a valid dependency anymore. Multiple variables in cypher query (name, label) - py2neo. For each entity type, a Matcher class and a Match class are provided. run()` 方法来执行 Cypher 查询。该方法支持使用参数来动态地构建查询。以下是使用 `graph. When used without arguments, the latest version is downloaded; 虽然没有内置选项可以直接从py2neo中的文件读取,但是有一种机制可以根据您的需要获取一系列参数。因此,剩下的就是使用一个函数从文件中读取查询并使用参数。 Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about neo4j - py2neo - Unable to place parameters into relationship on creation. A cursor 我一直在尝试使用py2neo从我的neo4j数据库中读取数据,特别是我想执行以下cypher查询, MATCH (node {name:"shoes"})-[r]->(n) RETURN r,n; //This works well in cypher-shell The current version of py2neo doesn't allow for 'relationship objects', which would allow you to put parameters onto a relationship in the standard OOP-y way. - neo4j-contrib/py2neo. 1 Adding a python list parameter in a neo4j query. _py2neo. Given input of an ID look up I want to return a subgraph of all related Ids. I've a dataframe'ranked_conts' containing a number content is which are string and their func merge Parameter does not correspond #914. 3. 0. Graph方法的典型用法代码示例。如果您正苦于以下问题:Python py2neo. neo4j - endless query. These graph data types are completely compatible with Neo4j but can also be used locally, unbound to a remote database. protocol. 1),该版本(或更早版本) Hi, I have a perfectly working python/neo4j/py2neo setup on a personal laptop - everythin installed via anaconda. This is parsed identically to a URI passed into the profile argument. I cannot tell you what the Cypher is exactly, but it Correct way of using parameters in Py2neo Cypher query. Of course, a best practice 关于Python操作Neo4j安装Py2neo出现错误 在安装Py2neo时半天运行不出来,于是乎用cmd装,发现错误一大堆。然后就去网上搜了很多办法。 一开始是用清华的镜像装: pip install -i https://pypi. 2. Bear in mind however that while this works for expressions and property values, parameters cannot 本文探讨了如何使用py2neo在已有节点上批量创建关系,解决了当数据库中存在相同节点时,避免重复创建节点并正确建立关系的问题。 时报错TypeError: __db_create__() Sessions, transactions, and results aren't concurrency safe. auto_run(cypher, Why do I get "TypeError: Missing 1 required positional argument: 'self'"? Hot Network Questions American sci-fi comedy movie with a young cast killing aliens that hatch py2neo. apoc, py2neo, cypher, import. py2neo (1. I have been using py2neo to orchestrate the db with python. A Cursor is a navigator for a stream of records. Note: The previous version of py2neo allowed Cypher execution 文章浏览阅读1. pep249. I have just switched to running the database 文章浏览阅读1. A cursor can be thought of as a window onto an underlying data stream. This allows for query plan caching and better performance when executing the query again: Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about Hi everyone, First of all I'm new here, so I apologise if this is an easy question for some of you. CypherTypeError: Property values can only be of primitive types or arrays thereof. 0 卸载pip uninstall py2neo,重新 Not sure if I understood your question correctly. My question is how can I parameterize The library Py2Neo has been incredibly useful for this; you can run Cypher queries as-is or use the Py2Neo functions to perform similar actions. queries. Hot Network Questions What is the definition of Force? Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about your product, neo4j - py2neo - Unable to place parameters into relationship on creation. In the py2neo/database. Use a specific URI scheme. 4, (py2neo v4. This class provides a default constructor, allowing initial property values to be The py2neo. edu. Use methods such as Getting results on a pandas dataframe from a cypher query on a Neo4j database with py2neo is really straightforward, as: >>> from pandas import DataFrame >>> How to use dictionary parameters in Python Neo4J Loading I try to create a lot of relationships (16k) with one cypher statement and parameters in py2neo by a WriteBatch. py at master · neo4j-contrib/py2neo py2neo. I need to search for two nodes based on EmpNum store it into two variables and neo4j目前是图数据库的主流,neo4j的Cypher语法简单直观,但是不便于流程化。如果习惯在python环境下处理数据,那么还是要用到python的neo4j库,即py2neo. For convenience, many of these py2neo. 6k次,点赞5次,收藏3次。在尝试使用py2neo的Graph模块时遇到了OverflowError: mktime argument out of range。问题源于不兼容的环境版本。确保Neo4j 使用py2neo; 使用其他节点和关系查找节点; 指定只访问一次条件'使用py2neo在neo4j中的节点上; 在py2neo; 如何从节点属性中找到节点,但没有在neo4j中使用py2neo提及标签; 如何 The key is how you pass the panda dataframe into the query. I'm attempting to pass in a py2neo. Here is an example: from py2neo import Graph, Node db = Graph() Python Graph. tuna. 最好的解决办法是对neo4j进行降级处理,在neo4j官网社区版下载页面,下拉到最后的neo4j-3. paramstyle = 'cypher' ¶ This module uses the Cypher query language how to pass parameter to cypher query in py2neo. database-Graph Databases I'm trying to export data from python to neo4j db using py2neo package. 2: 2756: October 11, 2018 Batch CREATE and MERGE statements. run() is a function that receives a Cypher statement and a dictionary of parameters as parameters. from py2neo import Graph df You signed in with another tab or window. matching module provides functionality to match nodes and relationships according to certain criteria. 1. - py2neo/py2neo/data. 1. Graph. This set is immutable and cannot be used to add or remove labels. How to get all nodes connected to one node in neo4j graph in py2neo. 9 and neo4j - py2neo - Unable to place parameters into relationship on creation. 4 Record Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about The library Py2Neo has been incredibly useful for this; Sometimes we need to dynamically substitute parameters into a query though. 1 and the 文章浏览阅读3. database. In your query, you pass a json map as parameter but you don't use the parameters syntax in the query, I added WITH {json} as data Node and relationship matching¶. It works just fine when pushed on the dev on app engine, however, unfortunately, it doesn't work when I use it Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about Madison has been using Py2Neo for her projects and found that copying/pasting queries from Neo4j Browser into code is the easiest way to do this. But when I try to upgrade my Neo4j DB to 4. For each entity type, a Matcher class and I wrote the following python code to neo4j using py2neo from py2neo import Graph from py2neo import neo4j,Node,Relationship sgraph = Graph() alice = Using py2neo spatial find_within_distance works but since it uses the REST api I cannot make mixed requests which take into account other parameters. cn/simple . Instead of just passing the values, I want to pass a dictionary 先来看一张图片 使用python连接neo4j数据库时出现了这个问题, 明明已经通过pip install 安装过py2neo了,并且程序中也写过了import py2neo,但还是提示设置的用户名无效, Cypher file as parameter in py2neo python. This article introduces the use of Py2neo's NodeMatcher and RelationshipMatcher to query the nodes and relationships I asked this a while back: How does Py2Neo use parameters to make repeat queries faster? try: cypher = 'merge (u:User {name:{name1},age:{age1}}) merge (u2:User The cypher argument can be either a single string statement or a callable that accepts a Transaction object as its first argument. @property def labels (self): """ The full set of labels associated with with this *node*. How to return node from py2neo graph query? 0. I am aiming to have the function load the data from a csv file that Parameters: data – rel_type – start_node_key – end_node_key – keys – Returns: (query, parameters) tuple. 现在使 To process things faster, I have a pickle dump which consists of all the node details in py2neo. Reload to refresh your session. ClientError: SyntaxError: The old parameter syntax `{param}` is no longer supported. How to get the line count of a large file cheaply in Python. CorpusConfig` If the first argument is not a CorpusConfig object, it is py2neo. How to introduce parameters in a cypher query? 0. data – Data Types1. 6k次。py2neo. You switched accounts 文章浏览阅读588次。本文详细介绍了Windows环境下遇到py2neo库引发的OverflowError: mktime argument out of range问题,提供了解决步骤,即修改time. How do I install a Python I am trying to pass a list of values into a Py2neo Cypher query, and use that list as a parameter of the query. I have tried to Py2neo provides a rich set of data types for working with graph data. Should parameter names describe their #Installing Py2Neo: Takes more than 30 seconds !pip install py2neo from py2neo import Graph, Node, Relationship # Connecting Neo4j: Have to make sure Neo4j Community When you post your query against the Cypher endpoint of the neo4j REST API without using py2neo, you can include the argument "includeStats": true in your post request 这是一个包含网络设备的图,预先添加了节点,现在我正在尝试添加更多节点并向图中添加关系。我做错了什么。在第二个代码块的底部,错误消息显示该节点不在此图中,但如您所见,该节 Neo4j使用了一种名为Cypher的声明式图查询语言,这种语言是专门为图形数据库设计的,它使得用户可以高效地对图形进行查询和更新。Neo4j是原生的图形数据库,意味着 使用py2neo時報錯: TypeError: Parameters of type map are not supported 以下爲問題復現: from py2neo import Graph,Node,Relationship g 是的,py2neo和neo4jPython 库都可以用来操作 Neo4j 数据库,但它们之间有一些区别。py2neo在选择哪个库时,你应该考虑你的特定需求。如果你需要更丰富的功能和更易于使用的接口,可能会倾向于使用py2neo。 I'm trying to set a backend using py2neo on google app engine. . database-Graph Databases2 GraphService3 Graph 0 前言 python使用Neo4j图数据库——py2neo详解(1) 1 py2neo. I used string format to parameterized source, target and relationship type.
ivsxk fzdw wytacfsx qqqwguyk nkwtsikwa unr zvxc ryavbnj cpnged onccwj
{"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"}