Skip to main content

No project description provided

Project description

https://img.shields.io/pypi/v/threadfixproapi.svg https://img.shields.io/pypi/pyversions/threadfixproapi.svg https://img.shields.io/travis/target/threadfixproapi/master.svg

ThreadFix Pro API

A Python module to assist with the ThreadFix RESTFul API to administer scan artifacts and overall ThreadFix vulnerability administration.

Quick Start

Several quick start options are available:

Example

# import the package
from threadfixproapi import threadfixpro

# setup threadfix connection information
host = 'https://127.0.0.1:8443/threadfix/'
api_key = 'your_api_key_from_threadfix_professional'

# initialize threadfix pro api module
tfp = threadfixpro.ThreadFixProAPI(host, api_key)

# If you need to disable certificate verification.
# tfp = threadfixpro.ThreadFixProAPI(host, api_key, verify_ssl=False)

# List your threadfix pro teams
teams = tfp.list_teams()
if teams.success:
    print("{}".format(teams.data))

    for team in teams.data:
        print(team['name'])  # Print the name of each team
else:
    print("ERROR: {}".format(teams.message))

Supporting information for each method available can be found in the documentation.

Bugs and Feature Requests

Found something that doesn’t seem right or have a feature request? Please open a new issue.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ThreadFixProAPI-1.0.9.tar.gz (21.6 kB view hashes)

Uploaded Source

Built Distribution

ThreadFixProAPI-1.0.9-py2.py3-none-any.whl (45.3 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page