Metadata-Version: 2.1
Name: robotframework-http-rabbitmq
Version: 1.0.3
Summary: A Robot Framework RabbitMq Library
Home-page: https://github.com/adsith-pv/robotframework-http-rabbitmq
Author: Carlos Alvarez
Author-email: c.alvarez@payvision.com
License: Apache License 2.0
Keywords: testing testautomation robotframework rabbitmq http
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 :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Framework :: Robot Framework :: Library
Requires-Dist: requests (>=2.20.0)
Requires-Dist: robotframework (>=3.0.4)

RobotFramework HTTP RabbitMQ
============================

|Build Status|

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

`Robot Framework`_ library for for working with RabbitMQ via Management HTTP API.
Based on `robotframework-rabbitmq`_ 

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

Install the library from PyPI using pip:

::

    pip install robotframework-http-rabbitmq

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

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

Example
-------

.. code-block::

    *** Settings ***
    Library    RabbitMqHttp
    Library    Collections

    *** Test Cases ***
    Simple Test
        Create Rabbitmq Connection    my_host_name    15672    5672    guest    guest    alias=rmq
        ${overview}=    Overview
        Log Dictionary    ${overview}
        Close All Rabbitmq Connections

License
-------

Apache License 2.0

.. _Robot Framework: http://www.robotframework.org
.. _GitHub: https://adsith-pv.github.io/robotframework-http-rabbitmq
.. _robotframework-rabbitmq: https://github.com/peterservice-rnd/robotframework-rabbitmq

.. |Build Status| image:: https://travis-ci.org/adsith-pv/robotframework-http-rabbitmq.svg?branch=master
    :target: https://travis-ci.org/adsith-pv/robotframework-http-rabbitmq


