deceptionlogic

A python wrapper and CLI tool for the Deception Logic API.


Keywords
wrapper, library, deception, logic, api, cli
License
MIT
Install
pip install deceptionlogic==1.5.0

Documentation

Deception Logic API

Deception Logic API Client Library - A python wrapper and CLI for the Deception Logic API.

Latest Version Build Status

Installation

pip install deceptionlogic

CLI usage

$ deception --get alerts

Run deception --help for a complete list of CLI options.

Module usage

from deceptionlogic import api
delo = api.Client('keyid', 'secret')
delo.get_alerts()

See example.py for inline usage comments and reference implementation.