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
6
6
Overview
7
7
--------
8
8
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
10
10
(< https://www.arangodb.com/ > )
11
11
12
12
Installation
@@ -57,8 +57,8 @@ conn.collections # equivalent to conn.db("_system").collections
57
57
conn.id # equivalent to conn.db("_system").id
58
58
conn.path # equivalent to conn.db("_system").path
59
59
conn.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
62
62
63
63
# Retrieve information on a specific database
64
64
conn.db(" db01" ).name
@@ -492,11 +492,10 @@ To Do
492
492
3 . Endpoints
493
493
4 . Sharding
494
494
5 . Misc. Functions
495
- 6 . General Handling
496
495
497
496
Running Tests (requires ArangoDB on localhost)
498
497
----------------------------------------------
499
498
500
499
``` bash
501
- nosetests
500
+ nosetests -v
502
501
```
You can’t perform that action at this time.
0 commit comments