Metadata-Version: 2.1
Name: matchlightsdk
Version: 2020.12.14
Summary: Software development kit for the Terbium Labs Matchlight product.
Home-page: https://terbiumlabs.com
Author: Terbium Labs
Author-email: developers@terbiumlabs.com
License: BSD
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Intended Audience :: Healthcare Industry
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Legal Industry
Classifier: Intended Audience :: Science/Research
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: requests[security]
Requires-Dist: six

Matchlight Python SDK
=====================

.. image:: https://img.shields.io/travis/TerbiumLabs/python-matchlightsdk.svg
   :target: https://travis-ci.org/TerbiumLabs/python-matchlightsdk

.. image:: https://img.shields.io/coveralls/TerbiumLabs/python-matchlightsdk.svg
   :target: https://coveralls.io/r/TerbiumLabs/python-matchlightsdk

.. image:: https://img.shields.io/pypi/pyversions/matchlightsdk.svg
   :target: https://pypi.python.org/pypi/matchlightsdk/

Matchlight exists to quickly and privately alert its users when any of their
sensitive information appears for sale or vandalism out on the dark web. The
product is fully automated, and operates using Data Fingerprints — a one-way
representation that allows Terbium to monitor for client data without
needing to know what that data is.

The Matchlight SDK provides a Python interface to Matchlight's API, allowing
developers to create and retrieve projects, download feeds, create document,
source code, and PII records, and perform searches.

Installation
------------

Matchlight SDK is supported on Python 2.7, 3.3, 3.4, and 3.5. To install the
SDK, you'll need `pip <https://pip.pypa.io/en/stable/>`_::

    $ pip install matchlightsdk

Documentation
-------------

A walkthrough of the SDK features and API documentation is available at
https://python-matchlightsdk.readthedocs.io.

License
-------

The Matchlight Python SDK source code is licensed under the
`3-clause BSD License <https://opensource.org/licenses/BSD-3-Clause>`_. For
more information, please see the LICENSE file included in this repository or
source distribution.

Contributing
------------

Bug reports and pull requests are welcome. If you would like to contribute,
please create a pull request against **master**. Include unit tests if
necessary, and ensure that your code passes all linters (see tox.ini).

**Building**

First, install all requirements::

    $ make requirements

Then::

    $ make build

**Tests**

To run tests, install test requirements::

    $ make dev_requirements

You will also need to install Pyenv https://github.com/pyenv/pyenv#installation
The easiest way is with Homebrew::

    $ brew update
    $ brew install pyenv

NOTE: Make sure that pyenv is added to your path

Then::

    $ make test

**Update Requirements**

If you made a change that adds a new requirement, add it to the correct file in 'requirements/src'.
Then update the requirements file::

    $ pip-compile --output-file requirements/<file>.txt requirements/src/<file>.in

**Update Documentation**

To update the documentation::

    $ make docs

To preview changes::

    $ make serve docs



