Skip to content

Commit 5c8c894

Browse files
Joohwan Ohjoowani
authored andcommitted
Change the default client to the session-based one
1 parent f75e0cf commit 5c8c894

File tree

3 files changed

+7
-10
lines changed

3 files changed

+7
-10
lines changed

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1-
py-arango
1+
python-arango
22
=========
33

4-
[![Build
5-
Status](https://travis-ci.org/Joowani/py-arango.svg?branch=master)](https://travis-ci.org/Joowani/py-arango)
6-
74
Python Driver for ArangoDB REST API
85

96
Overview

arango/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def __init__(self, protocol="http", host="localhost", port=8529,
3535
self.password = password
3636
self.db_name = db_name
3737
# self.client = SessionArangoClient() if client is None else client
38-
self.client = DefaultArangoClient() if client is None else client
38+
self.client = SessionArangoClient() if client is None else client
3939

4040
@property
4141
def url_prefix(self):

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55

66

77
setup(
8-
name="py-arango",
8+
name="python-arango",
99
description="Python Driver for ArangoDB",
10-
version="1.3.0",
10+
version="1.4.0",
1111
author="Joohwan Oh",
12-
author_email="joowani88@gmail.com",
13-
url="https://github.com/Joowani/py-arango",
14-
download_url="https://github.com/Joowani/py-arango/tarball/1.0.0",
12+
author_email="joohwan.oh@outlook.com",
13+
url="https://github.com/Joowani/python-arango",
14+
download_url="https://github.com/Joowani/python-arango/tarball/1.4.0",
1515
packages=find_packages(),
1616
include_package_data=True,
1717
install_requires=["requests"],

0 commit comments

Comments
 (0)