@@ -20,35 +20,40 @@ Features
2020--------
2121
2222* Creates nodes and relationships in a Neo4j graph database from YAML using
23- PyYAML-specific tags.
23+ PyYAML-specific tags.
2424* 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.
2626* Developed for loading data for integration testing.
2727* 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.
3232
3333Versions
3434--------
3535
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.
4146
4247Testing
4348-------
4449
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 ` `.
4752
4853Future
4954------
5055
5156* 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.
5358* `py2neo ` & Neo4j v3 support.
54- * Documentation, etc
59+ * Documentation, etc.
0 commit comments