This repository was archived by the owner on Oct 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 524
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Unpin setuptools to fix travis Signed-off-by: Matthew McGinn <mamcgi@gmail.com> * Add some ignores for new flake8 tests Signed-off-by: Matthew McGinn <mamcgi@gmail.com>
cryptography-2.5 is not compatible with PyPy < 5.4
…a#689) Signed-off-by: Matthew McGinn <mamcgi@gmail.com>
Signed-off-by: Matthew McGinn <mamcgi@gmail.com>
* fix already tz-aware error * fix tests tz_localize * update CHANGELOG.md
Signed-off-by: Matthew McGinn <mamcgi@gmail.com>
* add py37 and recent influxdb * remove useless py34 dep * use py36 for pydocstyle (py27 soon deprecated) * ugly fix to numpy inconsistencies * py37 is not in ubuntu 14.04 * move import numpy and add noqa * get 3.7 into travis matrix * get 3.7 into travis matrix
* numpy might use non-numerical version * update * update CHANGELOG.md
Signed-off-by: Matthew McGinn <mamcgi@gmail.com>
* add bind_params to query * tutorial for bind_params
* Add CQs management methods to the client
* Fix a warning under Python 3.7 Signed-off-by: Matthew McGinn <mamcgi@gmail.com>
…influxdata#699) Closes influxdata#666 Signed-off-by: Matthew McGinn <mamcgi@gmail.com>
* add consistency parameter to write_points [influxdata#643]
Due to lack of documentation for UDP, this example provides basic usage of sending information points via UDP. The code structure followed is similar, if not same as other examples in the `examples` directory. Signed-off-by: Shantanoo <shantanoo.desai@gmail.com>
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
With the Python requests module, it is possible to configure a client certificate to use for mutual TLS authentication, for example if an nginx instance in front of influxdb is performing the TLS termination and has a whitelist of allowed CNs.
This PR adds a new optional argument to the client constructor which passes through the path to such a client certificate to the requests session.