For what I know, you can't postprocess a job in Python SDK. But you can perform the search itself:
import splunklib.client as client
sp_con = client.connect(username='admin', password='password', host='127.0.0.1',
scheme='https', port='8089', app='appname',
autologin=True)
query = """
| savedsearch "my_search" |
search title="Elite Baller" person="me" |
table *
"""
earliest = an_epoch_time
latest = an_epoch_time
rr = sp_con.jobs.oneshot(query, count=0, earliest_time=earliest,
latest_time=latest)
Remember to give correct app and username to your connection, or your saved search will be not visible to the script.
... View more