wotclientdetection


Namewotclientdetection JSON
Version 2024.8.5.1 PyPI version JSON
download
home_pageNone
SummaryProgramatically detect and delegate WoT/MT launchers and clients
upload_time2024-08-05 03:25:28
maintainerNone
docs_urlNone
authorOpenWG.Utils Contributors
requires_python>=3
licenseMIT License Copyright (c) 2017-2022 OpenWG.Utils Contributors Copyright (c) 2024 Paul Ekshmidt 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.
keywords wot mt launcher client detection
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # wotclientdetection

Programatically detect and delegate WoT/MT launchers and clients.  
Based on original code from [OpenWG.Utils](https://gitlab.com/openwg/openwg.utils) and rewritten in Python.  
Currently supports only Windows.

## Installation

```
pip install wotclientdetection
```

## Examples

```py
from wotclientdetection import LauncherManager

manager = LauncherManager()
launchers = manager.get_launchers()
for launcher in launchers:
    clients = launcher.get_clients()
    for client in clients:
        print(client.path)
```

```py
from wotclientdetection import LauncherManager, LauncherFlavour, ClientBranch, ClientRealm

manager = LauncherManager()
launcher = manager.get_launcher(LauncherFlavour.WG)
client = launcher.get_client(realm=ClientRealm.EU)
```

```py
from wotclientdetection import LauncherManager, LauncherFlavour, ClientBranch, ClientRealm

STANDALONE_GAME_PATH = 'C:\Games\wot_standalone'

manager = LauncherManager()
launcher = manager.get_launcher(LauncherFlavour.STANDALONE)
launcher.register_client(STANDALONE_GAME_PATH)
```

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "wotclientdetection",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3",
    "maintainer_email": "Paul Ekshmidt <hello@kurzdor.me>",
    "keywords": "wot, mt, launcher, client, detection",
    "author": "OpenWG.Utils Contributors",
    "author_email": "Paul Ekshmidt <hello@kurzdor.me>",
    "download_url": "https://files.pythonhosted.org/packages/b4/8d/451b2f3531a03f65b4f11727c05ec69ba99cad3f48414a5104d5e328c319/wotclientdetection-2024.8.5.1.tar.gz",
    "platform": null,
    "description": "# wotclientdetection\n\nProgramatically detect and delegate WoT/MT launchers and clients.  \nBased on original code from [OpenWG.Utils](https://gitlab.com/openwg/openwg.utils) and rewritten in Python.  \nCurrently supports only Windows.\n\n## Installation\n\n```\npip install wotclientdetection\n```\n\n## Examples\n\n```py\nfrom wotclientdetection import LauncherManager\n\nmanager = LauncherManager()\nlaunchers = manager.get_launchers()\nfor launcher in launchers:\n    clients = launcher.get_clients()\n    for client in clients:\n        print(client.path)\n```\n\n```py\nfrom wotclientdetection import LauncherManager, LauncherFlavour, ClientBranch, ClientRealm\n\nmanager = LauncherManager()\nlauncher = manager.get_launcher(LauncherFlavour.WG)\nclient = launcher.get_client(realm=ClientRealm.EU)\n```\n\n```py\nfrom wotclientdetection import LauncherManager, LauncherFlavour, ClientBranch, ClientRealm\n\nSTANDALONE_GAME_PATH = 'C:\\Games\\wot_standalone'\n\nmanager = LauncherManager()\nlauncher = manager.get_launcher(LauncherFlavour.STANDALONE)\nlauncher.register_client(STANDALONE_GAME_PATH)\n```\n",
    "bugtrack_url": null,
    "license": "MIT License Copyright (c) 2017-2022 OpenWG.Utils Contributors Copyright (c) 2024 Paul Ekshmidt 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.",
    "summary": "Programatically detect and delegate WoT/MT launchers and clients",
    "version": "2024.8.5.1",
    "project_urls": {
        "Bug Reports": "https://github.com/kurzdor/wot.clientdetection/issues",
        "Homepage": "https://github.com/kurzdor/wot.clientdetection",
        "Source": "https://github.com/kurzdor/wot.clientdetection"
    },
    "split_keywords": [
        "wot",
        " mt",
        " launcher",
        " client",
        " detection"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dbc5a5db7e8c32d86c58c3416b2bdace8ee65055762908d26bfc9640d69a7ed9",
                "md5": "30fe8bce0d485745163e55427cca0939",
                "sha256": "20f44cc3ba42ddeec7c5fd8ac8920d64e87b0b14184323a2fb79a9dd676ea179"
            },
            "downloads": -1,
            "filename": "wotclientdetection-2024.8.5.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "30fe8bce0d485745163e55427cca0939",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3",
            "size": 8373,
            "upload_time": "2024-08-05T03:25:24",
            "upload_time_iso_8601": "2024-08-05T03:25:24.091327Z",
            "url": "https://files.pythonhosted.org/packages/db/c5/a5db7e8c32d86c58c3416b2bdace8ee65055762908d26bfc9640d69a7ed9/wotclientdetection-2024.8.5.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b48d451b2f3531a03f65b4f11727c05ec69ba99cad3f48414a5104d5e328c319",
                "md5": "6f99003049992e4ec222d8509d37708f",
                "sha256": "ed354ade879bb12f0b3a5a48514db6e070be8591e37b7fb6b98941ed37fa36b9"
            },
            "downloads": -1,
            "filename": "wotclientdetection-2024.8.5.1.tar.gz",
            "has_sig": false,
            "md5_digest": "6f99003049992e4ec222d8509d37708f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3",
            "size": 7263,
            "upload_time": "2024-08-05T03:25:28",
            "upload_time_iso_8601": "2024-08-05T03:25:28.498006Z",
            "url": "https://files.pythonhosted.org/packages/b4/8d/451b2f3531a03f65b4f11727c05ec69ba99cad3f48414a5104d5e328c319/wotclientdetection-2024.8.5.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-05 03:25:28",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "kurzdor",
    "github_project": "wot.clientdetection",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "wotclientdetection"
}
        
Elapsed time: 0.32514s