@@ -20,35 +20,40 @@ Features
20
20
--------
21
21
22
22
* Creates nodes and relationships in a Neo4j graph database from YAML using
23
- PyYAML-specific tags.
23
+ PyYAML-specific tags.
24
24
* Operates at a whole-file level, as it uses custom YAML tags to deserialize
25
- the data to live objects.
25
+ the data to live objects.
26
26
* Developed for loading data for integration testing.
27
27
* Requires a running Neo4j instance and instantiates actual database entities,
28
- rather than just generating abstract/unbound :class: `py2neo.Node ` and
29
- :class: `py2neo.Relationship ` objects. This is due to :mod: `py2neo ` version 1.6
30
- not supporting node labels with abstract nodes. This might be changed if we
31
- are able to migrate off of 1.6 in the near future.
28
+ rather than just generating abstract/unbound :class: `py2neo.Node ` and
29
+ :class: `py2neo.Relationship ` objects. This is due to :mod: `py2neo ` version
30
+ 1.6 not supporting node labels with abstract nodes. This might be changed if
31
+ we are able to migrate off of 1.6 in the near future.
32
32
33
33
Versions
34
34
--------
35
35
36
- * Neo4j: Should work with anything >= 2.0 but < 3. Tested with 2.3.2. Running
37
- the tests requires 2.3 as it uses the `DETACH DELETE ` feature to drop the
38
- database.
39
- * :mod: `py2neo `: Currently only supports 2.0. Expecting to do 3; dreading 1.6.
40
- * :mod: `pyyaml `: Only tested with PyYAML v3.11, the last release since 2014.
36
+ Python
37
+ Tested with both Python 2.7 and 3.5.
38
+ Neo4j
39
+ Should work with anything >= 2.0 but < 3. Tested with 2.3.2. Running the
40
+ tests requires 2.3 as it uses the ``DETACH DELETE `` feature to drop the
41
+ database.
42
+ :mod: `py2neo `
43
+ Currently only supports 2.0. Expecting to do 3; dreading 1.6.
44
+ :mod: `pyyaml `
45
+ Only tested with PyYAML v3.11, the last release since 2014.
41
46
42
47
Testing
43
48
-------
44
49
45
- * Running the tests requires an installed, running Neo4j instance.
46
- Pass the URL through the environment variable `NEO4J_URI `.
50
+ Running the tests requires an installed, running Neo4j instance. Pass the URL
51
+ through the environment variable `` NEO4J_URI ` `.
47
52
48
53
Future
49
54
------
50
55
51
56
* Custom YAML representer & constructor. Currently it is not possible to
52
- automatically dump Node and Relationship objects in a reasonable fashion.
57
+ automatically dump Node and Relationship objects in a reasonable fashion.
53
58
* `py2neo ` & Neo4j v3 support.
54
- * Documentation, etc
59
+ * Documentation, etc.
0 commit comments