Metadata-Version: 1.1
Name: icxcli
Version: 0.0.1
Summary: A Universal Command Line Environment for ICON.
Home-page: https://github.com/icon-project/icon_cli_tool
Author: ICON foundation
Author-email: foo@icon.foundation
License: Apache License 2.0
Description-Content-Type: UNKNOWN
Description: ICON CLI tool
        =============
        
        ICON supports Command Line Interface(CLI interface) for 3rd party or
        user services development. With this single tool, you can control all
        ICON functions and automate them using scripts.
        
        
        Prerequisite
        ============
        
        -  Python 3.6.x
        
        Version
        =======
        
        -  0.0.1
        
        
        Getting started
        ===============
        
        Installation
        ------------
        
        The easiest way to install ```icxcli``` is to use [pip](http://www.pip-installer.org/en/latest/):
        
        ```$ pip install icxcli```
        
        or, if you are not installing in a virtualenv:
        
        ```$ sudo pip install icxcli ```
        
        If you have the aws-cli installed and want to upgrade to the latest version you can run:
        
        ``` $ pip install --upgrade icxcli ```
        
        
        Run CLI
        -------
        
        Run command icli in command line. There are many sub commands for ICX
        service. You can get the help page by adding help.
        
        .. code:: shell
        
        $ icli  --help
            usage:
                    Normal commands:
                        version
                        help
        
                    Wallet Commands:
                        wallet create <file path> -p <password>  | -n <network id: mainnet | testnet>
                        wallet show <file path> -p <password>   | -n <network id: mainnet | testnet>
                        asset list <file path> -p <password>    | -n <network id: mainnet | testnet>
                        transfer  <to> <amount> <file path> -p <password> -f <fee> -d <decimal point=18>  | -n <network id: mainnet | testnet>
        
                        IF YOU MISS --networkid, icli WILL USE MAINNET.
        
        
        
            positional arguments:
              command           wallet create, wallet show, asset list, transfer
        
            optional arguments:
              -h, --help        show this help message and exit
              -p PASSWORD       password
              -f FEE            transaction fee
              -d DECIMAL_POINT  decimal point
              -n NETWORK_ID     which network
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
