Splunk Dev

Splunk SDK for Python insane error need help

tesme
New Member

I am looking at the examples/abc of the python sdk and get an error

"connection = six.moves.http_client.HTTPSConnection(HOST, PORT)
NameError: name 'six' is not defined"

IT IS DEFINED?!
import splunklib.six.moves.http_client

Tags (1)
0 Karma

mstjohn_splunk
Splunk Employee
Splunk Employee

Hi @tesme, Did the answer below solve your question? If yes, please click “Accept” directly below the answer to resolve the post. If not, please comment with more information if you are still having issues. Thanks!!

0 Karma

acharlieh
Influencer

It's not quite defined....

import splunklib.six.moves.http_client

makes splunklib.six.moves.http_client available but that's very different than six.moves.http_client (which is missing the leading splunklib. part)

As it seems they've been fairly consistent here in their invocation, I would alter that import statement like so:

import splunklib.six as six

Thus making six available in as a name, and thus everything resolves properly

Get Updates on the Splunk Community!

Enhance Your Splunk App Development: New Tools & Support

UCC FrameworkAdd-on Builder has been around for quite some time. It helps build Splunk apps faster, but it ...

Prove Your Splunk Prowess at .conf25—No Prereqs Required!

Your Next Big Security Credential: No Prerequisites Needed We know you’ve got the skills, and now, earning the ...

Splunk Observability Cloud's AI Assistant in Action Series: Observability as Code

This is the sixth post in the Splunk Observability Cloud’s AI Assistant in Action series that digs into how to ...