Metadata-Version: 2.4
Name: transmissionrpc-ng
Version: 0.14.1
Summary: Python module that implements the Transmission BitTorent client RPC protocol.
Home-page: https://github.com/0x022b/transmissionrpc-ng
Author: Janne K
Author-email: 0x022b@gmail.com
Keywords: transmission bittorent torrent
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Communications :: File Sharing
Classifier: Topic :: Internet
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: requires-python
Dynamic: summary

# transmissionrpc-ng

![PyPI](https://img.shields.io/pypi/v/transmissionrpc-ng?style=for-the-badge)
![CircleCI](https://img.shields.io/circleci/build/github/0x022b/transmissionrpc-ng?style=for-the-badge)
![LGTM Alerts](https://img.shields.io/lgtm/alerts/github/0x022b/transmissionrpc-ng?style=for-the-badge)
![PyPI - Downloads](https://img.shields.io/pypi/dm/transmissionrpc-ng?style=for-the-badge)
![GitHub](https://img.shields.io/github/license/0x022b/transmissionrpc-ng?style=for-the-badge)

**transmissionrpc-ng** is a Python module implementing the JSON-RPC client
protocol for the BitTorrent client Transmission.

## Getting started

transmissionrpc-ng is compatible with Transmission 1.31 - 2.94.

### Requirements

transmissionrpc-ng requires:

* pycurl >= 7.43
* Python >= 3.6

### Install

transmissionrpc-ng can be installed by either by running `setup.py` or with
`pip`, the package installer for Python.

```shell
python3 setup.py install
```

```shell
python3 -m pip install transmissionprc-ng
```

NOTE: You might need administrator privileges to install Python modules.

## Running unit tests

```shell
pipenv install
pipenv run python3 -m unittest test/*.py
```

## Changelog

See [CHANGELOG][changelog].

## License

This project is licensed under the MIT License.

## Developers

Copyright &copy; 2008-2014 [Erik Svensson][blueluna]\
Copyright &copy; 2019 [Janne K][0x022b]

[0x022b]: https://github.com/0x022b
[blueluna]: https://www.bitbucket.org/blueluna
[changelog]: https://github.com/0x022b/transmissionrpc-ng/blob/master/CHANGELOG.md
