Skip to main content
tests Documentation Status https://badge.fury.io/py/rt.svg

Rt - Python interface to Request Tracker API

Python implementation of REST API described here:
Python version compatibility:

Python

rt

2.7

< 2.0.0

>= 3.5, <3.7

>= 2.0.0, < 3.0.0

>= 3.7

>= 3.0.0, < 3.1.0

>= 3.8

>= 3.0.0, < 3.3.0

>= 3.9

>= 3.3.0, < 3.7.0

>= 3.10

>= 3.7.0

ℹ️ Note:

Please note that starting with the release of v3.7.0, this library requires Python version >= 3.10. See the Python version compatibility table above for more detailed information.

Note:

As of version 3.1.0, this library is async compatible. Usage:

import rt.rest2
import httpx2

tracker = rt.rest2.AsyncRt('http://localhost/rt/REST/2.0/', http_auth=httpx2.BasicAuth('root', 'password'))
⚠️ Warning:

Though version 3.x still supports RT REST API version 1, it contains minor breaking changes. Please see the changelog in the documentation for details.

Documentation

https://python-rt.readthedocs.io/en/latest/

Installation

Install the python-rt package using:

pip install rt

Licence

This module is distributed under the terms of GNU General Public Licence v3 and was developed by CZ.NIC Labs - research and development department of CZ.NIC association - top level domain registry for .CZ. Copy of the GNU General Public License is distributed along with this module.

Usage

An example is worth a thousand words:

>>> import rt.rest2
>>> import httpx2
>>> tracker = rt.rest2.Rt('http://localhost/rt/REST/2.0/', http_auth=httpx2.BasicAuth('root', 'password'))
>>> map(lambda x: x['id'], tracker.search(Queue='helpdesk', Status='open'))
['1', '2', '10', '15']
>>> tracker.create_ticket(queue='helpdesk', \
... subject='Coffee (important)', content='Help I Ran Out of Coffee!')
19
>>> tracker.edit_ticket(19, Requestor='addicted@example.com')
True
>>> tracker.reply(19, content='Do you know Starbucks?')
True

Get the last important updates from a specific queue that have been updated recently:

>>> import datetime
>>> import base64
>>> import rt.rest2
>>> import httpx2
>>> tracker = rt.rest2.Rt('http://localhost/rt/REST/2.0/', http_auth=httpx2.BasicAuth('root', 'password'))
>>> fifteen_minutes_ago = str(datetime.datetime.now() - datetime.timedelta(minutes=15))
>>> tickets = tracker.last_updated(since=fifteen_minutes_ago)
>>> for ticket in tickets:
>>>     id = ticket['id']
>>>     history = tracker.get_ticket_history(id)
>>>     last_update = list(reversed([h for h in history if h['Type'] in ('Correspond', 'Comment')]))
>>>     hid = tracker.get_transaction(last_update[0]['id'] if last_update else history[0]['id'])
>>>
>>>     attachment_id = None
>>>     for k in hid['_hyperlinks']:
>>>         if k['ref'] == 'attachment':
>>>             attachment_id = k['_url'].rsplit('/', 1)[1]
>>>             break
>>>
>>>     if attachment_id is not None:
>>>         attachment = tracker.get_attachment(attachment_id)
>>>         if attachment['Content'] is not None:
>>>             content = base64.b64decode(attachment['Content']).decode()
>>>             print(content)

Please use docstrings to see how to use different functions. They are written in ReStructuredText. You can also generate HTML documentation by running make html in doc directory (Sphinx required).

Official Site

Project site, issue tracking and git repository:

https://github.com/python-rt/python-rt

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rt-3.8.1.tar.gz (61.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

rt-3.8.1-py3-none-any.whl (55.3 kB view details)

Uploaded Python 3

File details

Details for the file rt-3.8.1.tar.gz.

File metadata

  • Download URL: rt-3.8.1.tar.gz
  • Upload date:
  • Size: 61.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rt-3.8.1.tar.gz
Algorithm Hash digest
SHA256 ec184c9e0893984f978f521991cb1a179353379ef837d1dc2a727b956fdc6395
MD5 63d9b28085ee6d2ce0a9fbf3547a7a3c
BLAKE2b-256 afdafc0d013f57f1a30fc1ed2d37b45fbfcacd15e26d1b79a006e7737d556a3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rt-3.8.1.tar.gz:

Publisher: pythonpublish.yml on python-rt/python-rt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rt-3.8.1-py3-none-any.whl.

File metadata

  • Download URL: rt-3.8.1-py3-none-any.whl
  • Upload date:
  • Size: 55.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rt-3.8.1-py3-none-any.whl
Algorithm Hash digest
SHA256 fd2d955eb715a0eab1829c99b5c3449d424d90f7b48aedd90837e1a6beeab268
MD5 77cc75ba6859732b94a6c417336d4f97
BLAKE2b-256 00c59a8a2a3c61679ea1c0629fdca6dee1519aa48b12035d611b26e6594663d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rt-3.8.1-py3-none-any.whl:

Publisher: pythonpublish.yml on python-rt/python-rt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

3.8.1 This release

2 files

3.8.0

1 file

3.7.1

1 file

3.7.0

1 file

3.6.1

1 file

3.6.0

1 file

3.5.0

1 file

3.4.0

1 file

3.3.9

1 file

3.3.8

1 file

3.3.7

1 file

3.3.6

1 file

3.3.5

1 file

3.3.4

1 file

3.3.3

1 file

3.3.2

1 file

3.3.1

1 file

3.3.0

1 file

3.2.0

2 files

3.1.4

2 files

3.1.3

2 files

3.1.2

2 files

3.1.1

2 files

3.1.0

2 files

3.0.7

2 files

3.0.6

2 files

3.0.5

2 files

3.0.4

2 files

3.0.3

2 files

3.0.2

2 files

3.0.1

2 files

3.0.0

2 files

2.2.2

2 files

2.2.1

2 files

2.2.0

2 files

2.1.1

2 files

2.1.0

2 files

2.0.1

2 files

2.0.0

1 file

1.0.13

1 file

1.0.12

1 file

1.0.11

2 files

1.0.10

2 files

1.0.9

2 files

1.0.8

1 file

1.0.7

1 file

1.0.6

1 file

1.0.5

1 file

1.0.4

1 file

1.0.3

1 file

1.0.2

1 file

1.0.1

1 file

1.0.post6

1 file

1.0.0

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page