Metadata-Version: 2.1
Name: v-cloud-market-cli-user
Version: 0.1.5
Summary: V Cloud Market Command Tool For User.
Home-page: https://github.com/virtualeconomy/v-cloud-market-cli-user
Author: hvoid-build-block
License: MIT
Keywords: vcloud-market-cli-user
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Requires-Python: >=3.5
License-File: LICENSE
Requires-Dist: attrs (==20.3.0)
Requires-Dist: base58 (==2.0.1)
Requires-Dist: certifi (==2020.12.5)
Requires-Dist: cffi (==1.14.4)
Requires-Dist: chardet (==4.0.0)
Requires-Dist: click (==7.1.2)
Requires-Dist: click-option-group (==0.5.2)
Requires-Dist: colorama (==0.4.4)
Requires-Dist: commonmark (==0.9.1)
Requires-Dist: ecdsa (==0.16.1)
Requires-Dist: idna (==2.10)
Requires-Dist: iniconfig (==1.1.1)
Requires-Dist: packaging (==20.9)
Requires-Dist: pluggy (==0.13.1)
Requires-Dist: py (==1.10.0)
Requires-Dist: pyblake2 (==1.1.2)
Requires-Dist: pycparser (==2.20)
Requires-Dist: pycryptodome (==3.9.9)
Requires-Dist: pyfiglet (==0.8.post1)
Requires-Dist: Pygments (==2.7.3)
Requires-Dist: PyNaCl (==1.4.0)
Requires-Dist: pyparsing (==2.4.7)
Requires-Dist: PyQRCode (==1.2.1)
Requires-Dist: pytest (==6.2.1)
Requires-Dist: python-axolotl-curve25519 (==0.4.1.post2)
Requires-Dist: PyYAML (==5.3.1)
Requires-Dist: Random-Word-Generator (==1.2)
Requires-Dist: requests (==2.25.1)
Requires-Dist: requests-mock (==1.8.0)
Requires-Dist: requests-toolbelt (==0.9.1)
Requires-Dist: rich (==9.5.1)
Requires-Dist: six (==1.15.0)
Requires-Dist: texttable (==1.6.3)
Requires-Dist: toml (==0.10.2)
Requires-Dist: typing-extensions (==3.7.4.3)
Requires-Dist: urllib3 (==1.26.2)

# V Cloud Market Command Tool For User

## Install

```pip install v-cloud-market-cli-user```

## Usage

Run the following command to start the command line:

```vcloud```

## Wallet Functions:

- Create new wallet
- Reset wallet
- Recover wallet with seed
- Check balance of address in the wallet
- Export wallet addresses to csv file

## Market Services:

- Explore service provider information
- Explore service category information
- Explore service type information
- Make order with service type id

## Order Services:

- Pay the order with VSYS
- Check the status of order
- View order list
- View specific order information
- Refund an order
- View refundable order list

## user service:

- Explore running user services
- Explore usable user services
    - The status of usable user services are: ServicePending or ServiceRunning.
    - This function is to get secret information from service provider.
- Explore expired user services


## Run cli in local

Install `virtualenv` to run cli tool in local

```shell
pip3 install virtualenv
```

Created virtual environment

```shell
virtualenv venv
```

Start virtual environment

```shell
source venv/bin/activate
```

Run cli in mainnet

```
python3 market_place_cli/use_main_interface.py
```
Run cli in testnet

```
python3 market_place_cli/use_main_interface.py -t
```

Exit virtual environment
```
deactivate
```


