Skip to content

ksalman/python_thycotic

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python Thycotic

This is a Python wrapper for Thycotic Secret Server API version 10.9.

Install

pip install python_thycotic

Usage

You will need to the username, password, and Thycotic Secret Server URL to instantiate the class.

import os, thycotic
ss = thycotic.Api(
    os.environ.get("THYCOTIC_USER"),
    os.environ.get("THYCOTIC_PASS"),
    os.environ.get("THYCOTIC_URL"),
)

Get an access token, which is used to make API calls

ss.auth()

Get a secret by id

secret = ss.get_secret(123)

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages