Skip to content

Commit 99e0247

Browse files
committed
Merge branch 'master' of github.com:Joowani/python-arango
2 parents 8c84b31 + c68c004 commit 99e0247

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Python Driver for ArangoDB REST API
66
Overview
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

1212
Installation
@@ -57,8 +57,8 @@ conn.collections # equivalent to conn.db("_system").collections
5757
conn.id # equivalent to conn.db("_system").id
5858
conn.path # equivalent to conn.db("_system").path
5959
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
6262

6363
# Retrieve information on a specific database
6464
conn.db("db01").name
@@ -492,11 +492,10 @@ To Do
492492
3. Endpoints
493493
4. Sharding
494494
5. Misc. Functions
495-
6. General Handling
496495

497496
Running Tests (requires ArangoDB on localhost)
498497
----------------------------------------------
499498

500499
```bash
501-
nosetests
500+
nosetests -v
502501
```

0 commit comments

Comments
 (0)