Skip to content

Commit e0c515b

Browse files
committed
Release 1.6.7
2 parents a245a4e + f973232 commit e0c515b

Some content is hidden

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

56 files changed

+213
-605
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
.coverage
77
.coverage.*
88
.python-version
9+
.vscode
910
__stdout__
1011
docs/_build
1112
build/
@@ -24,7 +25,7 @@ tests/searchcommands/data/app/app.log
2425
splunk_sdk.egg-info/
2526
dist/
2627
examples/searchcommands_app/package/default/commands.conf
27-
examples/searchcommands_app/package/bin/packages
28+
examples/searchcommands_app/package/lib/splunklib
2829
tests/searchcommands/apps/app_with_logging_configuration/*.log
2930
*.observed
3031
venv/

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ before_install:
99
# Create .splunkrc file with default credentials
1010
- echo host=127.0.0.1 >> $HOME/.splunkrc
1111
- echo username=admin >> $HOME/.splunkrc
12-
- echo password=changeme >> $HOME/.splunkrc
12+
- echo password=changed! >> $HOME/.splunkrc
1313
# Set SPLUNK_HOME
1414
- export SPLUNK_HOME="/opt/splunk"
1515
# Pull docker image

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Splunk SDK for Python Changelog
22

3+
## Version 1.6.7
4+
5+
### Changes
6+
7+
* Updated the Splunk SDK for Python to work with the Python 3 version of Splunk Enterprise on Windows
8+
* Improved the performance of deleting/updating an input
9+
* Added logging to custom search commands app to showcase how to do logging in custom search commands by using the Splunk SDK for Python
10+
311
## Version 1.6.6
412

513
### Bug fixes

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
[![Build Status](https://travis-ci.org/splunk/splunk-sdk-python.svg?branch=master)](https://travis-ci.org/splunk/splunk-sdk-python)
2+
[![Documentation Status](https://readthedocs.org/projects/splunk-python-sdk/badge/?version=latest)](https://splunk-python-sdk.readthedocs.io/en/latest/?badge=latest)
3+
24
# The Splunk Software Development Kit for Python
35

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

3739
#### Python
3840

39-
The Splunk SDK for Python requires Python 2.7+, including Python 3.
41+
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.
4042

4143
#### Splunk
4244

4345
If you haven't already installed Splunk, download it
4446
[here](http://www.splunk.com/download). For more about installing and running
4547
Splunk and system requirements, see
46-
[Installing & Running Splunk](http://dev.splunk.com/view/SP-CAAADRV).
48+
[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.
4749

4850
#### Splunk SDK for Python
4951
Get the Splunk SDK for Python; [download the SDK as a ZIP](http://dev.splunk.com/view/SP-CAAAEBB)

docs/index.rst

+10
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@ For more information, see the `Splunk Developer Portal <http://dev.splunk.com/vi
33

44
.. toctree::
55
:maxdepth: 2
6+
:name: SDK for Python API Reference
7+
8+
binding
9+
client
10+
data
11+
results
12+
modularinput
13+
searchcommands
14+
searchcommandsvalidators
15+
616

717
:doc:`binding`
818
--------------

docs/searchcommands.rst

-7
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,6 @@ splunklib.searchcommands
8080
:members:
8181
:inherited-members:
8282

83-
.. autoclass:: Fieldname
84-
:members:
85-
:inherited-members:
86-
8783
.. autoclass:: File
8884
:members:
8985
:inherited-members:
@@ -100,6 +96,3 @@ splunklib.searchcommands
10096
:members:
10197
:inherited-members:
10298

103-
.. autoclass:: Validator
104-
:members:
105-
:inherited-members:

docs/searchcommandsvalidators.rst

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
splunklib.searchcommands.validators
2+
-----------------------------------
3+
4+
.. automodule:: splunklib.searchcommands.validators
5+
6+
.. autoclass:: Fieldname
7+
:members:
8+
:inherited-members:
9+
10+
.. autoclass:: Validator
11+
:members:
12+
:inherited-members:

examples/custom_search/README.md

-137
This file was deleted.

0 commit comments

Comments
 (0)