Metadata-Version: 2.1
Name: polyswarm
Version: 2.0.0.dev8
Summary: CLI for using the PolySwarm Customer APIs
Home-page: https://github.com/polyswarm/polyswarm-cli
Author: PolySwarm Developers
Author-email: info@polyswarm.io
License: MIT
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=2.7,<4
Description-Content-Type: text/markdown
Requires-Dist: polyswarm-api (<3,>=2.0.0.dev7)
Requires-Dist: click (==7.0)
Requires-Dist: future (==0.18.2)
Requires-Dist: click-log (==0.3.2)
Requires-Dist: pygments (==2.5.2)
Provides-Extra: yara
Requires-Dist: yara-python (==3.11.0) ; extra == 'yara'


# Polyswarm Customer CLI

A CLI tool for interacting with the PolySwarm Customer APIs.

Supports Python 2.7 and greater.

## Installation

From PyPI:

    pip install polyswarm

From source:

    python setup.py install

If you want yara validation (optional):

    pip install -e .[yara]

## Usage


See the [Polyswarm Customer CLI documentation](https://docs.polyswarm.io/docs/polyswarm-customer-cli) for usage guidance.

## Automated Tests

To run automated tests suite (unit and integration):

    pip install -r requirements.txt
    pytest

To check current coverage by tests:

    pytest --cov=polyswarm tests/

## Questions? Problems?

File a ticket or email us at `info@polyswarm.io`.


