Metadata-Version: 1.2
Name: rt-client
Version: 0.5.0
Summary: Request Tracker Client
Home-page: https://gitlab.com/catalyst-cloud/rt-client
Author: Catherine Sanson
Author-email: catherine.sanson@catalyst.net.nz
Maintainer: Adrian Turjak
Maintainer-email: adriant@catalyst.net.nz
License: UNKNOWN
Description: rt-client
        #########
        
        The RT Client is a python library for interfacing with RT's REST API. The
        client uses `python-requests <http://docs.python-requests.org/en/master/>`_
        and talks to the `V2 <https://github.com/bestpractical/rt-extension-rest2>`_ API.
        
        In the future we also intend to add a CLI which will use the library and offer
        a nice way of interacting with RT from the commandline based on the features
        the V2 API gives us.
        
        Getting Started
        ***************
        
        .. code-block:: python
        
          from rt_client.client import Client
        
          rt = Client(
              username="jsmith",
              password="supersecret",
              endpoint="https://rt.acme.org/",
          )
        
          tickets = rt.ticket.search("Queue='urgent'")
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
