Metadata-Version: 1.1
Name: mythx-cli
Version: 0.1.4
Summary: A command line interface for the MythX smart contract security analysis API
Home-page: https://github.com/dmuhs/mythx-cli
Author: Dominik Muhs
Author-email: dominik.muhs@consensys.net
License: MIT license
Description: ============================
        A PythX-driven CLI for MythX
        ============================
        
        
        .. image:: https://img.shields.io/pypi/v/mythx-cli.svg
                :target: https://pypi.python.org/pypi/mythx-cli
        
        .. image:: https://img.shields.io/travis/dmuhs/mythx-cli.svg
                :target: https://travis-ci.org/dmuhs/mythx-cli
        
        .. image:: https://coveralls.io/repos/github/dmuhs/mythx-cli/badge.svg?branch=master
          :target: https://coveralls.io/github/dmuhs/mythx-cli?branch=master
        
        
        .. image:: https://readthedocs.org/projects/mythx-cli/badge/?version=latest
                :target: https://mythx-cli.readthedocs.io/en/latest/?badge=latest
                :alt: Documentation Status
        
        .. image:: https://pyup.io/repos/github/dmuhs/mythx-cli/shield.svg
             :target: https://pyup.io/repos/github/dmuhs/mythx-cli/
             :alt: Updates
        
        
        This package aims to provide a simple to use command line interface for the `MythX <https://mythx.io/>`_ smart contract
        security analysis API. It's main purpose is to demonstrate how advanced features can be implemented using the
        `PythX <https://github.com/dmuhs/pythx/>`_ Python language bindings for MythX to simplify API interaction.
        
        
        What is MythX?
        --------------
        
        
        
        MythX is a security analysis API that allows anyone to create purpose-built security tools for smart
        contract developers. Tools built on MythX integrate seamlessly into the development environments and
        continuous integration pipelines used throughout the Ethereum ecosystem.
        
        
        Usage
        -----
        
        .. code-block:: console
        
            $ mythx
            Usage: mythx [OPTIONS] COMMAND [ARGS]...
        
              Console script for mythx_cli.
        
            Options:
              --debug / --no-debug            Provide additional debug output
              --access-token TEXT             Your access token generated from the MythX
                                              dashboard
              --format [simple|json|json-pretty]
                                              The format to display the results in
              --help                          Show this message and exit.
        
            Commands:
              analyze
              list
              report
              status
              version
        
        
        
        Installation
        ------------
        
        The MythX CLI runs on Python 3.5+.
        
        To get started, simply run
        
        .. code-block:: console
        
            $ pip3 install mythx-cli
        
        Alternatively, clone the repository and run
        
        .. code-block:: console
        
            $ pip3 install .
        
        Or directly through Python's :code:`setuptools`:
        
        .. code-block:: console
        
            $ python3 setup.py install
        
        
        
        
        
        
        
        * Free software: MIT license
        * Documentation: https://mythx-cli.readthedocs.io.
        
        
        =======
        History
        =======
        
        0.1.0 (2019-08-31)
        ------------------
        
        * First release on PyPI.
        
Keywords: mythx-cli
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
