You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
admingit 4880f17b15
update-TA
2 years ago
..
bin update-TA 2 years ago
default update_to_git 3 years ago
lib/splunklib update_to_git 3 years ago
local update_to_git 3 years ago
LICENSE update_to_git 3 years ago
README update_to_git 3 years ago
app.manifest update_to_git 3 years ago

README

Splunk_SA_Scientific_Python - Python for Scientific Computing in Splunk


*** Powered by Anaconda! See http://continuum.io/ ***

This package contains a Python interpreter bundled with the following
Python scientific and machine learning libraries (see LICENSE for the list
of libraries included)

Splunk_SA_Scientific_Python is cross-platform and available for
Linux x86_64, Darwin (x86_64, arm64), and Windows x86_64.

The included exec_anaconda() function can be used to execute Splunk
Custom Search Commands within the bundled Anaconda interpreter, thereby
enabling you to import modules like numpy in a robust, cross-platform
manner.

To use Splunk_SA_Scientific_Python, copy exec_anaconda.py into your
app's bin directory. At the top of your custom search command, add the
following preamble:

#!/usr/bin/python
import exec_anaconda
exec_anaconda.exec_anaconda()
# Put the rest of your imports below, e.g.:
import numpy as np