Skip to content

Commit 9bae5a4

Browse files
committed
Implement python-client for InfluxDB
1 parent 5ad1f07 commit 9bae5a4

File tree

13 files changed

+822
-0
lines changed

13 files changed

+822
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
influxdb.egg-info/
2+
*.pyc
3+
*.py.swp
4+
.tox

.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+
- "3.3"
4+
- "3.2"
5+
- "2.7"
6+
install:
7+
- "pip install -r requirements.txt --use-mirrors"
8+
- "pip install -r test-requirements.txt --use-mirrors"
9+
script: nosetests

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include requirements.txt
2+
include test-requirements.txt

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,18 @@ influxdb-python
22
===============
33

44
Python client for InfluxDB
5+
6+
For developers
7+
--------------
8+
9+
To test influxdb-python with multiple version of Python, you can use tox:
10+
11+
````
12+
$ tox
13+
````
14+
15+
If you don't have all Python version listed in tox.ini, then
16+
17+
````
18+
$ tox -e py27
19+
````

influxdb/__init__.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# -*- coding: utf-8 -*-
2+
from influxdb.client import InfluxDBClient
3+
4+
5+
__all__ = ['InfluxDBClient']
6+
7+
__version__ = '0.1.0'

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy