Skip to content

Commit 921dc1b

Browse files
joohwanjoowani
authored andcommitted
Add support for batch requests, transactions, graphs, cursors and AQL queries
1 parent a051bf0 commit 921dc1b

Some content is hidden

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

45 files changed

+6685
-696
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
*.pyc
22
*.pyo
33
*.idea
4+
*.egg-info
5+
*build/
6+
*dist/

.travis.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
language: python
2+
python:
3+
- "2.7"
4+
before_install:
5+
- "sh setup_arangodb_2.4.sh"
6+
install:
7+
- "pip install ."
8+
script: nosetests
9+

LICENSE

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Copyright (C) 2015 Joohwan Oh
2+
3+
This program is free software; you can redistribute it and/or
4+
modify it under the terms of the GNU General Public License
5+
as published by the Free Software Foundation; either version 2
6+
of the License, or (at your option) any later version.
7+
8+
This program is distributed in the hope that it will be useful,
9+
but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
GNU General Public License for more details.
12+
13+
You should have received a copy of the GNU General Public License
14+
along with this program; if not, see <http://www.gnu.org/licenses/>.
15+
16+

0 commit comments

Comments
 (0)