Metadata-Version: 2.0
Name: robotframework-cassandracqllibrary
Version: 1.0.1.dev0
Summary: A Robot Framework Cassandra Database Library
Home-page: https://github.com/peterservice-rnd/robotframework-cassandracqllibrary
Author: JSC PETER-SERVICE
Author-email: drse_aist_all@billing.ru
License: Apache License 2.0
Description-Content-Type: UNKNOWN
Keywords: testing testautomation robotframework cassandra cql
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Testing
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Framework :: Robot Framework :: Library
Requires-Dist: cassandra-driver (==3.12.0)
Requires-Dist: robotframework (==3.0.2)

RobotFramework CassandraCQL Library
===================================

|Build Status|

Short Description
-----------------

`Robot Framework`_ library to execute CQL statements in Cassandra
Database.

Installation
------------

::

    pip install robotframework-cassandracqllibrary

Documentation
-------------

See keyword documentation for CassandraCQLLibrary library on `GitHub`_.

Example
-------

.. code:: robotframework

    *** Settings ***
    Library           CassandraCQLLibrary
    Library           Collections
    Suite Setup       Connect To Cassandra    127.0.0.1    9042
    Suite Teardown    Disconnect From Cassandra

    *** Test Cases ***
    Get Keyspaces
        Execute CQL    USE system
        ${result}    Execute CQL    SELECT * FROM schema_keyspaces;
        Log List    ${result}
        Log    ${result[1].keyspace_name}

License
-------

Apache License 2.0

.. _Robot Framework: http://www.robotframework.org
.. _GitHub: https://github.com/peterservice-rnd/robotframework-cassandracqllibrary/tree/master/docs

.. |Build Status| image:: https://travis-ci.org/peterservice-rnd/robotframework-cassandracqllibrary.svg?branch=master
   :target: https://travis-ci.org/peterservice-rnd/robotframework-cassandracqllibrary


