Metadata-Version: 2.1
Name: qumulo-api
Version: 3.2.3
Summary: Qumulo Python SDK
Home-page: http://www.qumulo.com/
Author: Qumulo, Inc.
Author-email: python@qumulo.com
License: UNKNOWN
Keywords: Qumulo QFSD
Platform: UNKNOWN
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4
Description-Content-Type: text/x-rst
Requires-Dist: future (>=0.15.0)
Requires-Dist: tqdm (>=4.24.0)

================
Qumulo API Tools
================

This directory contains a collection of tools and libraries that will help
the user interact with the Qumulo REST API server.

It includes the following:

  - ``qumulo/``: a directory of libraries that can be used to interact with the
    REST API server
  - ``qq``: a comprehensive tool that implements the libraries in ``qumulo/``
    and provides for typical Qumulo CLI control functionality

Using qq
========

To see all commands available from the ``qq`` tool::

    $ ./qq --help

To run commands against the REST API server, you must first login::

    $ ./qq --host host_ip login --user admin

Once authenticated, you can run other commands::

    # Get the network configuation of nodes in the cluster:
    $ ./qq --host host_ip network_poll

    # Get the list of users
    $ ./qq --host host_ip auth_list_users

    # Get help with a specific command
    $ ./qq command --help

Notes
=====

For more information, visit our Knowledge Base site: https://care.qumulo.com


