Skip to content

Instantly share code, notes, and snippets.

@BrooksCunningham
Created October 12, 2021 17:01
Show Gist options
  • Save BrooksCunningham/2a2b4b75e70ab45cdee3e53cb2303075 to your computer and use it in GitHub Desktop.
Save BrooksCunningham/2a2b4b75e70ab45cdee3e53cb2303075 to your computer and use it in GitHub Desktop.
print the custom tags for a site/workspace
from SigSci import *
import os
import json
# setup sigsci api module
sigsci = SigSciAPI()
# required variables
sigsci.email = os.environ['SIGSCI_EMAIL']
sigsci.api_token = os.environ['SIGSCI_API_TOKEN']
sigsci.corp = os.environ['SIGSCICORP']
sigsci.site = os.environ['SIGSCI_SITE']
print(sigsci.get_custom_tags())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment