Skip to content

Commit

Permalink
Release 1.6.7
Browse files Browse the repository at this point in the history
  • Loading branch information
ljiang1 committed Sep 12, 2019
2 parents a245a4e + f973232 commit e0c515b
Show file tree
Hide file tree
Showing 56 changed files with 213 additions and 605 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
.coverage
.coverage.*
.python-version
.vscode
__stdout__
docs/_build
build/
Expand All @@ -24,7 +25,7 @@ tests/searchcommands/data/app/app.log
splunk_sdk.egg-info/
dist/
examples/searchcommands_app/package/default/commands.conf
examples/searchcommands_app/package/bin/packages
examples/searchcommands_app/package/lib/splunklib
tests/searchcommands/apps/app_with_logging_configuration/*.log
*.observed
venv/
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ before_install:
# Create .splunkrc file with default credentials
- echo host=127.0.0.1 >> $HOME/.splunkrc
- echo username=admin >> $HOME/.splunkrc
- echo password=changeme >> $HOME/.splunkrc
- echo password=changed! >> $HOME/.splunkrc
# Set SPLUNK_HOME
- export SPLUNK_HOME="/opt/splunk"
# Pull docker image
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Splunk SDK for Python Changelog

## Version 1.6.7

### Changes

* Updated the Splunk SDK for Python to work with the Python 3 version of Splunk Enterprise on Windows
* Improved the performance of deleting/updating an input
* Added logging to custom search commands app to showcase how to do logging in custom search commands by using the Splunk SDK for Python

## Version 1.6.6

### Bug fixes
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
[![Build Status](https://travis-ci.org/splunk/splunk-sdk-python.svg?branch=master)](https://travis-ci.org/splunk/splunk-sdk-python)
[![Documentation Status](https://readthedocs.org/projects/splunk-python-sdk/badge/?version=latest)](https://splunk-python-sdk.readthedocs.io/en/latest/?badge=latest)

# The Splunk Software Development Kit for Python

#### Version 1.6.6
Expand Down Expand Up @@ -36,14 +38,14 @@ Here's what you need to get going with the Splunk SDK for Python.

#### Python

The Splunk SDK for Python requires Python 2.7+, including Python 3.
The Splunk SDK for Python requires Python 2.7+, including Python 3. The Splunk SDK for Python has been tested with Python v2.7 and v3.5.

#### Splunk

If you haven't already installed Splunk, download it
[here](http://www.splunk.com/download). For more about installing and running
Splunk and system requirements, see
[Installing & Running Splunk](http://dev.splunk.com/view/SP-CAAADRV).
[Installing & Running Splunk](http://dev.splunk.com/view/SP-CAAADRV). The Splunk SDK for Python has been tested with Splunk Enterprise 7.0 and 7.2.

#### Splunk SDK for Python
Get the Splunk SDK for Python; [download the SDK as a ZIP](http://dev.splunk.com/view/SP-CAAAEBB)
Expand Down
10 changes: 10 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@ For more information, see the `Splunk Developer Portal <http://dev.splunk.com/vi

.. toctree::
:maxdepth: 2
:name: SDK for Python API Reference

binding
client
data
results
modularinput
searchcommands
searchcommandsvalidators


:doc:`binding`
--------------
Expand Down
7 changes: 0 additions & 7 deletions docs/searchcommands.rst
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,6 @@ splunklib.searchcommands
:members:
:inherited-members:

.. autoclass:: Fieldname
:members:
:inherited-members:

.. autoclass:: File
:members:
:inherited-members:
Expand All @@ -100,6 +96,3 @@ splunklib.searchcommands
:members:
:inherited-members:

.. autoclass:: Validator
:members:
:inherited-members:
12 changes: 12 additions & 0 deletions docs/searchcommandsvalidators.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
splunklib.searchcommands.validators
-----------------------------------

.. automodule:: splunklib.searchcommands.validators

.. autoclass:: Fieldname
:members:
:inherited-members:

.. autoclass:: Validator
:members:
:inherited-members:
137 changes: 0 additions & 137 deletions examples/custom_search/README.md

This file was deleted.

Loading

0 comments on commit e0c515b

Please sign in to comment.