qbittorrentui


Nameqbittorrentui JSON
Version 0.3.5 PyPI version JSON
download
home_page
SummaryConsole UI for qBittorrent v4.1+
upload_time2024-02-13 22:32:25
maintainerRussell Martin
docs_urlNone
authorRussell Martin
requires_python>=3.8
license
keywords qbittorrent console terminal tui text
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            qBittorrenTUI
=============
[![PyPI](https://img.shields.io/pypi/v/qbittorrentui?style=flat-square)](https://pypi.org/project/qbittorrentui/)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/qbittorrentui?style=flat-square)

Console UI for qBittorrent. Not feature-complete but is usable for low volume and everyday torrenting.

![qbittorrentui screenshot 1](https://i.imgur.com/Uy7DK37.png)

![qbittorrentui screensho 2](https://i.imgur.com/E6I9q4V.png)

Key Map
-------
Any Window
* q : exit
* n : open connection dialog

Torrent List Window
* a : open add torrent dialog
* enter : open context menu for selected torrent
* right arrow: open Torrent Window

Torrent Window
* left : return to Torrent List
* esc : return to Torrent List
* Content
  * enter : bump priority
  * space : bump priority

Installation
------------
Install from pypi:
```bash
pip install qbittorrentui
```
In most cases, this should allow you to run the application simply with the `qbittorrentui` command. Alternatively, you can specify a specific python binary with `./venv/bin/python -m qbittorrentui` or similar.

Configuration
-------------
Connections can be pre-defined within a configuration file (modeled after default.ini). Specify the configuration file using --config_file. Each section in the file will be presented as a separate instance to connect to.

Sample configuration file section:
```
[localhost:8080]
HOST = localhost
PORT = 8080
USERNAME = admin
PASSWORD = adminadmin
CONNECT_AUTOMATICALLY = 1
TIME_AFTER_CONNECTION_FAILURE_THAT_CONNECTION_IS_CONSIDERED_LOST = 5
TORRENT_CONTENT_MAX_FILENAME_LENGTH = 75
TORRENT_LIST_MAX_TORRENT_NAME_LENGTH = 60
TORRENT_LIST_PROGRESS_BAR_LENGTH = 40
DO_NOT_VERIFY_WEBUI_CERTIFICATE = 1
```

Only HOST, USERNAME, AND PASSWORD are required.
DO_NOT_VERIFY_WEBUI_CERTIFICATE is necessary if the certificate is untrusted (e.g. self-signed).

TODO/Wishlist
-------------
Application
 - [ ] Figure out the theme(s)
 - [x] Configuration for connections
 - [ ] Log/activity output (likely above status bar)
 - [ ] Implement window for editing qBittorrent settings

Torrent List Window
 - [ ] Torrent sorting
 - [ ] Additional torrent filtering mechanisms
 - [ ] Torrent searching
 - [ ] Torrent status icon in torrent name
 - [ ] Torrent name color coding
 - [ ] Torrent list column configuration

Torrent Window
 - [ ] Make focus more obvious when switching between tabs list and a display
 - [ ] Scrollbar in the displays
 - [ ] Speed graph display

Torrent Window Content Display
 - [ ] Left key should return to tab list

MIT License

Copyright (c) Russell Martin

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "qbittorrentui",
    "maintainer": "Russell Martin",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "qbittorrent,console,terminal,TUI,text",
    "author": "Russell Martin",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/88/8f/25624fd95d461e89f7bdcb4d613209ce23bd9462a1b06592cf73beeed33a/qbittorrentui-0.3.5.tar.gz",
    "platform": null,
    "description": "qBittorrenTUI\n=============\n[![PyPI](https://img.shields.io/pypi/v/qbittorrentui?style=flat-square)](https://pypi.org/project/qbittorrentui/)\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/qbittorrentui?style=flat-square)\n\nConsole UI for qBittorrent. Not feature-complete but is usable for low volume and everyday torrenting.\n\n![qbittorrentui screenshot 1](https://i.imgur.com/Uy7DK37.png)\n\n![qbittorrentui screensho 2](https://i.imgur.com/E6I9q4V.png)\n\nKey Map\n-------\nAny Window\n* q : exit\n* n : open connection dialog\n\nTorrent List Window\n* a : open add torrent dialog\n* enter : open context menu for selected torrent\n* right arrow: open Torrent Window\n\nTorrent Window\n* left : return to Torrent List\n* esc : return to Torrent List\n* Content\n  * enter : bump priority\n  * space : bump priority\n\nInstallation\n------------\nInstall from pypi:\n```bash\npip install qbittorrentui\n```\nIn most cases, this should allow you to run the application simply with the `qbittorrentui` command. Alternatively, you can specify a specific python binary with `./venv/bin/python -m qbittorrentui` or similar.\n\nConfiguration\n-------------\nConnections can be pre-defined within a configuration file (modeled after default.ini). Specify the configuration file using --config_file. Each section in the file will be presented as a separate instance to connect to.\n\nSample configuration file section:\n```\n[localhost:8080]\nHOST = localhost\nPORT = 8080\nUSERNAME = admin\nPASSWORD = adminadmin\nCONNECT_AUTOMATICALLY = 1\nTIME_AFTER_CONNECTION_FAILURE_THAT_CONNECTION_IS_CONSIDERED_LOST = 5\nTORRENT_CONTENT_MAX_FILENAME_LENGTH = 75\nTORRENT_LIST_MAX_TORRENT_NAME_LENGTH = 60\nTORRENT_LIST_PROGRESS_BAR_LENGTH = 40\nDO_NOT_VERIFY_WEBUI_CERTIFICATE = 1\n```\n\nOnly HOST, USERNAME, AND PASSWORD are required.\nDO_NOT_VERIFY_WEBUI_CERTIFICATE is necessary if the certificate is untrusted (e.g. self-signed).\n\nTODO/Wishlist\n-------------\nApplication\n - [ ] Figure out the theme(s)\n - [x] Configuration for connections\n - [ ] Log/activity output (likely above status bar)\n - [ ] Implement window for editing qBittorrent settings\n\nTorrent List Window\n - [ ] Torrent sorting\n - [ ] Additional torrent filtering mechanisms\n - [ ] Torrent searching\n - [ ] Torrent status icon in torrent name\n - [ ] Torrent name color coding\n - [ ] Torrent list column configuration\n\nTorrent Window\n - [ ] Make focus more obvious when switching between tabs list and a display\n - [ ] Scrollbar in the displays\n - [ ] Speed graph display\n\nTorrent Window Content Display\n - [ ] Left key should return to tab list\n\nMIT License\n\nCopyright (c) Russell Martin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Console UI for qBittorrent v4.1+",
    "version": "0.3.5",
    "project_urls": {
        "Homepage": "https://github.com/rmartin16/qbittorrentui",
        "Source": "https://github.com/rmartin16/qbittorrentui"
    },
    "split_keywords": [
        "qbittorrent",
        "console",
        "terminal",
        "tui",
        "text"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a65b9e37ad8104f361f2f7419205d1ff136e8bb2bc11986b9dd217f78f035e1",
                "md5": "e4060f97dfc47b77f7cbd750ce0c88b8",
                "sha256": "8e9e48af0625b81e8e53925c2906d5b8830dc7c9b7ef51306366f1ed9beaa104"
            },
            "downloads": -1,
            "filename": "qbittorrentui-0.3.5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e4060f97dfc47b77f7cbd750ce0c88b8",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 46347,
            "upload_time": "2024-02-13T22:32:24",
            "upload_time_iso_8601": "2024-02-13T22:32:24.233590Z",
            "url": "https://files.pythonhosted.org/packages/6a/65/b9e37ad8104f361f2f7419205d1ff136e8bb2bc11986b9dd217f78f035e1/qbittorrentui-0.3.5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "888f25624fd95d461e89f7bdcb4d613209ce23bd9462a1b06592cf73beeed33a",
                "md5": "4893832e2aed842008efe02c4344b410",
                "sha256": "de1bc04f435dee81e6ff68f2fb5ca87a04bf255fae5cb32c88626511be381f25"
            },
            "downloads": -1,
            "filename": "qbittorrentui-0.3.5.tar.gz",
            "has_sig": false,
            "md5_digest": "4893832e2aed842008efe02c4344b410",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 42328,
            "upload_time": "2024-02-13T22:32:25",
            "upload_time_iso_8601": "2024-02-13T22:32:25.992475Z",
            "url": "https://files.pythonhosted.org/packages/88/8f/25624fd95d461e89f7bdcb4d613209ce23bd9462a1b06592cf73beeed33a/qbittorrentui-0.3.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-13 22:32:25",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "rmartin16",
    "github_project": "qbittorrentui",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "qbittorrentui"
}
        
Elapsed time: 0.18294s