Metadata-Version: 2.1
Name: honeydb
Version: 1.2.0
Summary: A Python API wrapper and CLI tool for the HoneyDB.
Home-page: https://riskdiscovery.com/honeydb
Author: foospidy
Author-email: UNKNOWN
License: MIT
Download-URL: https://github.com/foospidy/honeydb-python
Keywords: wrapper library honeydb api cli
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 2.7
Classifier: License :: OSI Approved :: MIT License
Requires-Dist: requests
Requires-Dist: pyopenssl

HoneyDB
==================

.. image:: https://img.shields.io/pypi/v/honeydb.svg
    :target: https://pypi.python.org/pypi/honeydb/
    :alt: Latest Version

.. image:: https://travis-ci.org/foospidy/honeydb.svg?branch=master
    :target: https://travis-ci.org/foospidy/honeydb

To learn more about HoneyDB visit `About HoneyDB`_.

To lean more about the HoneyDB API visit `HoneyDB REST API`_.

The ``honeydb`` command is a CLI tool for interacting with the HoneyDB API. 

Installation
------------
.. code-block:: bash

    $ pip install honeydb


CLI usage
---------
.. code-block:: bash

    $ export HONEYDB_API_ID=<your api id>
    $ export HONEYDB_API_KEY=<your api key>
    $ honeydb --bad-hosts


Module usage
------------
.. code-block:: python

    from honeydb import api
    honeydb = api.Client('api_id', 'api_key')
    print(honeydb.bad_hosts())

More details and the latest updates can be found on the `GitHub Project Page`_.

.. _About HoneyDB: https://riskdiscovery.com/honeydb/#about
.. _HoneyDB REST API: https://riskdiscovery.com/honeydb/#threats
.. _GitHub Project Page: https://github.com/foospidy/honeydb-python


