tautulli


Nametautulli JSON
Version 4.0.2120 PyPI version JSON
download
home_pagehttps://github.com/nwithan8/pytulli
SummaryA complete Python client for Tautulli's API
upload_time2024-03-28 16:07:59
maintainerNone
docs_urlNone
authorNate Harris
requires_python<4,>=3.8
licenseGNU General Public License v3 (GPLv3)
keywords tautulli api client plex pms plex media server media server json
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # A Python client for Tautulli's API

[![PyPi](https://img.shields.io/pypi/dm/tautulli?label=Downloads&logo=pypi)](https://pypi.org/project/tautulli)
[![License](https://img.shields.io/pypi/l/tautulli?color=orange&style=flat-square)](https://github.com/nwithan8/pytulli/blob/master/LICENSE)

[![Open Issues](https://img.shields.io/github/issues-raw/nwithan8/pytulli?color=gold&style=flat-square)](https://github.com/nwithan8/pytulli/issues?q=is%3Aopen+is%3Aissue)
[![Closed Issues](https://img.shields.io/github/issues-closed-raw/nwithan8/pytulli?color=black&style=flat-square)](https://github.com/nwithan8/pytulli/issues?q=is%3Aissue+is%3Aclosed)
[![Latest Release](https://img.shields.io/github/v/release/nwithan8/pytulli?color=red&label=latest%20release&logo=github&style=flat-square)](https://github.com/nwithan8/pytulli/releases)

[![Discord](https://img.shields.io/discord/472537215457689601?color=blue&logo=discord&style=flat-square)](https://discord.gg/7jGbCJQ)
[![Twitter](https://img.shields.io/twitter/follow/nwithan8?label=%40nwithan8&logo=twitter&style=flat-square)](https://twitter.com/nwithan8)

Interact with Tautulli's API in Python

# Installation

- From PyPi (recommended): ``python -m pip install tautulli``
- From GitHub ``python -m pip install git+https://github.com/nwithan8/pytulli.git``
  - This is not recommended, as the version will always default to 0.0.0


# Usage

This client covers nearly 100% of all Tautulli's available API calls, including type checks and enforcing required variables.

More details about Tautulli's API can be found on the [Tautulli's GitHub wiki page](https://github.com/Tautulli/Tautulli/wiki/Tautulli-API-Reference).

Most API call functions that return data return raw JSON data. Some return strings or file contents (in the case of downloads).

API calls functions that do not return data return `True`/`False` booleans to confirm that the API call was successful.

Import the ``tautulli`` package as initialize the API
Example:
```python
from tautulli import RawAPI

api = RawAPI(base_url="http://myipaddress:port", api_key="thisisanapikey")
```

You can optionally pass ``verbose=True`` into the API declaration to produce verbose debugging logs and error messages.

Additional utilities and shortcuts can be accessed via the `tautulli.tools` module.

# Documentation

Documentation available on [ReadTheDocs](https://pytulli.readthedocs.io/en/latest/documentation.html)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/nwithan8/pytulli",
    "name": "tautulli",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4,>=3.8",
    "maintainer_email": null,
    "keywords": "Tautulli, API, client, Plex, PMS, Plex Media Server, media, server, JSON",
    "author": "Nate Harris",
    "author_email": "n8gr8gbln@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/48/88/acca2266ace1cfcec094a5bf175553ae1ff6b2a20edd1eb93a33bfa198e9/tautulli-4.0.2120.tar.gz",
    "platform": null,
    "description": "# A Python client for Tautulli's API\n\n[![PyPi](https://img.shields.io/pypi/dm/tautulli?label=Downloads&logo=pypi)](https://pypi.org/project/tautulli)\n[![License](https://img.shields.io/pypi/l/tautulli?color=orange&style=flat-square)](https://github.com/nwithan8/pytulli/blob/master/LICENSE)\n\n[![Open Issues](https://img.shields.io/github/issues-raw/nwithan8/pytulli?color=gold&style=flat-square)](https://github.com/nwithan8/pytulli/issues?q=is%3Aopen+is%3Aissue)\n[![Closed Issues](https://img.shields.io/github/issues-closed-raw/nwithan8/pytulli?color=black&style=flat-square)](https://github.com/nwithan8/pytulli/issues?q=is%3Aissue+is%3Aclosed)\n[![Latest Release](https://img.shields.io/github/v/release/nwithan8/pytulli?color=red&label=latest%20release&logo=github&style=flat-square)](https://github.com/nwithan8/pytulli/releases)\n\n[![Discord](https://img.shields.io/discord/472537215457689601?color=blue&logo=discord&style=flat-square)](https://discord.gg/7jGbCJQ)\n[![Twitter](https://img.shields.io/twitter/follow/nwithan8?label=%40nwithan8&logo=twitter&style=flat-square)](https://twitter.com/nwithan8)\n\nInteract with Tautulli's API in Python\n\n# Installation\n\n- From PyPi (recommended): ``python -m pip install tautulli``\n- From GitHub ``python -m pip install git+https://github.com/nwithan8/pytulli.git``\n  - This is not recommended, as the version will always default to 0.0.0\n\n\n# Usage\n\nThis client covers nearly 100% of all Tautulli's available API calls, including type checks and enforcing required variables.\n\nMore details about Tautulli's API can be found on the [Tautulli's GitHub wiki page](https://github.com/Tautulli/Tautulli/wiki/Tautulli-API-Reference).\n\nMost API call functions that return data return raw JSON data. Some return strings or file contents (in the case of downloads).\n\nAPI calls functions that do not return data return `True`/`False` booleans to confirm that the API call was successful.\n\nImport the ``tautulli`` package as initialize the API\nExample:\n```python\nfrom tautulli import RawAPI\n\napi = RawAPI(base_url=\"http://myipaddress:port\", api_key=\"thisisanapikey\")\n```\n\nYou can optionally pass ``verbose=True`` into the API declaration to produce verbose debugging logs and error messages.\n\nAdditional utilities and shortcuts can be accessed via the `tautulli.tools` module.\n\n# Documentation\n\nDocumentation available on [ReadTheDocs](https://pytulli.readthedocs.io/en/latest/documentation.html)\n",
    "bugtrack_url": null,
    "license": "GNU General Public License v3 (GPLv3)",
    "summary": "A complete Python client for Tautulli's API",
    "version": "4.0.2120",
    "project_urls": {
        "Download": "https://github.com/nwithan8/pytulli/archive/refs/tags/4.0.02120.tar.gz",
        "Homepage": "https://github.com/nwithan8/pytulli"
    },
    "split_keywords": [
        "tautulli",
        " api",
        " client",
        " plex",
        " pms",
        " plex media server",
        " media",
        " server",
        " json"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea40a17f1bb09afef27ffc3b808a2e3b38f15b3aa02a68a470d55db1395c87a2",
                "md5": "751b627a4fdc4d3f82d39ad4dc343857",
                "sha256": "d627d1c961bc65d87591368c6078ee904711a4f400863f95a5b63c420650c129"
            },
            "downloads": -1,
            "filename": "tautulli-4.0.2120-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "751b627a4fdc4d3f82d39ad4dc343857",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4,>=3.8",
            "size": 86695,
            "upload_time": "2024-03-28T16:07:58",
            "upload_time_iso_8601": "2024-03-28T16:07:58.394199Z",
            "url": "https://files.pythonhosted.org/packages/ea/40/a17f1bb09afef27ffc3b808a2e3b38f15b3aa02a68a470d55db1395c87a2/tautulli-4.0.2120-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4888acca2266ace1cfcec094a5bf175553ae1ff6b2a20edd1eb93a33bfa198e9",
                "md5": "72527c6b30802558f29452eb73af9f72",
                "sha256": "1e023e89e2695706b7d60e41a11e9ec043f7ee6f24dc3ae3d7e0f07b32d7c887"
            },
            "downloads": -1,
            "filename": "tautulli-4.0.2120.tar.gz",
            "has_sig": false,
            "md5_digest": "72527c6b30802558f29452eb73af9f72",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4,>=3.8",
            "size": 66976,
            "upload_time": "2024-03-28T16:07:59",
            "upload_time_iso_8601": "2024-03-28T16:07:59.873967Z",
            "url": "https://files.pythonhosted.org/packages/48/88/acca2266ace1cfcec094a5bf175553ae1ff6b2a20edd1eb93a33bfa198e9/tautulli-4.0.2120.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-28 16:07:59",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "nwithan8",
    "github_project": "pytulli",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "tox": true,
    "lcname": "tautulli"
}
        
Elapsed time: 0.26425s