rt-client


Namert-client JSON
Version 0.6.2 PyPI version JSON
download
home_pageNone
SummaryRequest Tracker Client
upload_time2025-09-03 21:23:01
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseApache Software License
keywords request tracker
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            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'")

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "rt-client",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "Adrian Jarvis <adrian.jarvis@catalystcloud.nz>",
    "keywords": "Request Tracker",
    "author": null,
    "author_email": "Catherine Sanson <catherine.sanson@catalyst.net.nz>, Adrian Turjak <adriant@catalyst.net.nz>",
    "download_url": "https://files.pythonhosted.org/packages/d6/bb/a2a0a35c9c85d1da2fa85b1e8388c49eb133c4a0895625710d8ae9f427c9/rt_client-0.6.2.tar.gz",
    "platform": null,
    "description": "rt-client\n#########\n\nThe RT Client is a python library for interfacing with RT's REST API. The\nclient uses `python-requests <http://docs.python-requests.org/en/master/>`_\nand talks to the `V2 <https://github.com/bestpractical/rt-extension-rest2>`_ API.\n\nIn the future we also intend to add a CLI which will use the library and offer\na nice way of interacting with RT from the commandline based on the features\nthe V2 API gives us.\n\nGetting Started\n***************\n\n.. code-block:: python\n\n  from rt_client.client import Client\n\n  rt = Client(\n      username=\"jsmith\",\n      password=\"supersecret\",\n      endpoint=\"https://rt.acme.org/\",\n  )\n\n  tickets = rt.ticket.search(\"Queue='urgent'\")\n",
    "bugtrack_url": null,
    "license": "Apache Software License",
    "summary": "Request Tracker Client",
    "version": "0.6.2",
    "project_urls": {
        "Homepage": "https://gitlab.com/catalyst-cloud/rt-client"
    },
    "split_keywords": [
        "request",
        "tracker"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fa81a998234ccd42661342373e5e8a3fa408ae64cf6b200f105ed5281ac17f71",
                "md5": "c3bc66a5310a6f5e1aea023147704c1f",
                "sha256": "4d41212c3bb87a30bbd11fc86467aa3700e8c1d8c5d3ab480e09f1e516175b7d"
            },
            "downloads": -1,
            "filename": "rt_client-0.6.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c3bc66a5310a6f5e1aea023147704c1f",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 25437,
            "upload_time": "2025-09-03T21:23:00",
            "upload_time_iso_8601": "2025-09-03T21:23:00.124973Z",
            "url": "https://files.pythonhosted.org/packages/fa/81/a998234ccd42661342373e5e8a3fa408ae64cf6b200f105ed5281ac17f71/rt_client-0.6.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d6bba2a0a35c9c85d1da2fa85b1e8388c49eb133c4a0895625710d8ae9f427c9",
                "md5": "7137c9c9f2942a16df2dc1f5f79392f8",
                "sha256": "e9df6696c7a6253273da637baefa77cf7352fd1b35d171654042cc4749c1b30a"
            },
            "downloads": -1,
            "filename": "rt_client-0.6.2.tar.gz",
            "has_sig": false,
            "md5_digest": "7137c9c9f2942a16df2dc1f5f79392f8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 19069,
            "upload_time": "2025-09-03T21:23:01",
            "upload_time_iso_8601": "2025-09-03T21:23:01.659382Z",
            "url": "https://files.pythonhosted.org/packages/d6/bb/a2a0a35c9c85d1da2fa85b1e8388c49eb133c4a0895625710d8ae9f427c9/rt_client-0.6.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-09-03 21:23:01",
    "github": false,
    "gitlab": true,
    "bitbucket": false,
    "codeberg": false,
    "gitlab_user": "catalyst-cloud",
    "gitlab_project": "rt-client",
    "lcname": "rt-client"
}
        
Elapsed time: 1.42995s