Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 52392e4

Browse files
authoredAug 23, 2016
Merge pull request #17 from joowani/dev
Add more methods for async API and improve tests and documentation
2 parents 2488762 + 9cb6d9d commit 52392e4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+1566
-490
lines changed
 

‎.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*.egg-info
55
*build/
66
*dist/
7+
*htmlcov/
78
*.coverage
8-
.coveragerc
99
.cache/
1010
tests/__pycache__/

‎README.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ Features
3838

3939
- Clean, Pythonic interface
4040
- Lightweight
41-
- 95%+ API coverage
41+
- 95%+ ArangoDB REST API coverage
4242

4343
Compatibility
4444
=============
4545

4646
- Python versions 2.7.x, 3.4.x and 3.5.x are supported
4747
- Latest version of python-arango (3.x) supports ArangoDB 3.x only
48-
- Older versions of python-arango (2.x) support ArangoDB 2.x only
48+
- Older versions of python-arango support ArangoDB 1.x ~ 2.x only
4949

5050
Installation
5151
============
@@ -82,7 +82,7 @@ Here is a simple usage example:
8282
# Initialize the client for ArangoDB
8383
client = ArangoClient(
8484
protocol='http',
85-
host="localhost",
85+
host='localhost',
8686
port=8529,
8787
username='root',
8888
password='',

0 commit comments

Comments
 (0)
Please sign in to comment.