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!

Splunk Answers Content Calendar, June Edition

Get ready for this week’s post dedicated to Splunk Dashboards! We're celebrating the power of community by ...

What You Read The Most: Splunk Lantern’s Most Popular Articles!

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

See your relevant APM services, dashboards, and alerts in one place with the updated ...

As a Splunk Observability user, you have a lot of data you have to manage, prioritize, and troubleshoot on a ...