VSS Command Line Interface v0.2.9

VSSCLI v0.2.9 is available for download via PyPI or GitLab. Latest version includes the following new features and bug fixes:

  • Improvements
    • VSSCLI now provides Python 3.6 support (modern Python):

      # test with a virtual environment
      python -m venv ~/src/vsscli3
      . ~/src/vsscli3/bin/activate
      
      
      # install vsscli
      pip3 install vsscli
      
      
      # check python version
      python -V
      Python 3.6.4
      
      
      # check cli version
      vss --version
      vsscli/0.2.9 pyvss/0.9.11
    • VSS CLI Docker images:

      docker run --rm -it uofteis/vsscli:py27 sh
      
      
      docker run --rm -it uofteis/vsscli:py36 sh

Remember, VSSCLI documentation is now available in EIS - VSS - VSSCLI

Upgrade or install PyVSS as follows:

# from version 0.2.5 you can run
vss upgrade
# upgrade
pip install vsscli --upgrade

# install
pip install vsscli

Docker images available: uofteis/vsscli:py27:

docker run -it -v /tmp:/data \
-e VSS_API_USER=user_here -e VSS_API_USER_PASS=user_pass_here \
-e VSS_DEFAULT_OUTPUT=json \
uofteis/vsscli bash

For more information, please refer to the official documentation site.