File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ Python Driver for ArangoDB REST API
66Overview
77--------
88
9- python-arango is a Python 2.7 & 3.4 driver for ArangoDB
9+ Python-Arango is a Python driver ( 2.7 and 3.4) for ArangoDB
1010(< https://www.arangodb.com/ > )
1111
1212Installation
@@ -57,8 +57,8 @@ conn.collections # equivalent to conn.db("_system").collections
5757conn.id # equivalent to conn.db("_system").id
5858conn.path # equivalent to conn.db("_system").path
5959conn.is_system # equivalent to conn.db("_system").is_system
60- conn.is_edge # equivalent to conn.db("_system").is_system
61- conn.is_volatile # equivalent to conn.db("_system").is_system
60+ conn.is_edge # equivalent to conn.db("_system").is_edge
61+ conn.is_volatile # equivalent to conn.db("_system").is_volatile
6262
6363# Retrieve information on a specific database
6464conn.db(" db01" ).name
@@ -492,11 +492,10 @@ To Do
4924923 . Endpoints
4934934 . Sharding
4944945 . Misc. Functions
495- 6 . General Handling
496495
497496Running Tests (requires ArangoDB on localhost)
498497----------------------------------------------
499498
500499``` bash
501- nosetests
500+ nosetests -v
502501```
You can’t perform that action at this time.
0 commit comments