carconnectivity-connector-skoda


Namecarconnectivity-connector-skoda JSON
Version 0.3 PyPI version JSON
download
home_pageNone
SummaryCarConnectivity connector for Skoda services
upload_time2025-02-19 21:00:34
maintainerNone
docs_urlNone
authorTill Steinbach
requires_python>=3.8
licenseMIT License Copyright (c) 2021 Till Steinbach 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
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            

# CarConnectivity Connector for Volkswagen Vehicles
[![GitHub sourcecode](https://img.shields.io/badge/Source-GitHub-green)](https://github.com/tillsteinbach/CarConnectivity-connector-skoda/)
[![GitHub release (latest by date)](https://img.shields.io/github/v/release/tillsteinbach/CarConnectivity-connector-skoda)](https://github.com/tillsteinbach/CarConnectivity-connector-skoda/releases/latest)
[![GitHub](https://img.shields.io/github/license/tillsteinbach/CarConnectivity-connector-skoda)](https://github.com/tillsteinbach/CarConnectivity-connector-skoda/blob/master/LICENSE)
[![GitHub issues](https://img.shields.io/github/issues/tillsteinbach/CarConnectivity-connector-skoda)](https://github.com/tillsteinbach/CarConnectivity-connector-skoda/issues)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/carconnectivity-connector-skoda?label=PyPI%20Downloads)](https://pypi.org/project/carconnectivity-connector-skoda/)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/carconnectivity-connector-skoda)](https://pypi.org/project/carconnectivity-connector-skoda/)
[![Donate at PayPal](https://img.shields.io/badge/Donate-PayPal-2997d8)](https://www.paypal.com/donate?hosted_button_id=2BVFF5GJ9SXAJ)
[![Sponsor at Github](https://img.shields.io/badge/Sponsor-GitHub-28a745)](https://github.com/sponsors/tillsteinbach)

## CarConnectivity will become the successor of [WeConnect-python](https://github.com/tillsteinbach/WeConnect-python) in 2025 with similar functionality but support for other brands beyond Volkswagen!

[CarConnectivity](https://github.com/tillsteinbach/CarConnectivity) is a python API to connect to various car services. This connector enables the integration of skoda vehicles through the WeConnect API. Look at [CarConnectivity](https://github.com/tillsteinbach/CarConnectivity) for other supported brands.

## Configuration
In your carconnectivity.json configuration add a section for the skoda connector like this:
```
{
    "carConnectivity": {
        "connectors": [
            {
                "type": "skoda",
                "config": {
                    "username": "test@test.de",
                    "password": "testpassword123"
                }
            }
        ]
    }
}
```
### Credentials
If you do not want to provide your username or password inside the configuration you have to create a ".netrc" file at the appropriate location (usually this is your home folder):
```
# For WeConnect
machine skoda
login test@test.de
password testpassword123
```
In this case the configuration needs to look like this:
```
{
    "carConnectivity": {
        "connectors": [
            {
                "type": "skoda",
                "config": {
                }
            }
        ]
    }
}
```

You can also provide the location of the netrc file in the configuration.
```
{
    "carConnectivity": {
        "connectors": [
            {
                "type": "skoda",
                "config": {
                    "netrc": "/some/path/on/your/filesystem"
                }
            }
        ]
    }
}
```
The optional S-PIN needed for some commands can be provided in the account section of the netrc:
```
# For WeConnect
machine skoda
login test@test.de
password testpassword123
account 1234
```

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "carconnectivity-connector-skoda",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "Till Steinbach",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/d9/f4/098e30462f028b1bd0f046faa3892430b633194ecc61ae1116efd4a59d97/carconnectivity_connector_skoda-0.3.tar.gz",
    "platform": null,
    "description": "\n\n# CarConnectivity Connector for Volkswagen Vehicles\n[![GitHub sourcecode](https://img.shields.io/badge/Source-GitHub-green)](https://github.com/tillsteinbach/CarConnectivity-connector-skoda/)\n[![GitHub release (latest by date)](https://img.shields.io/github/v/release/tillsteinbach/CarConnectivity-connector-skoda)](https://github.com/tillsteinbach/CarConnectivity-connector-skoda/releases/latest)\n[![GitHub](https://img.shields.io/github/license/tillsteinbach/CarConnectivity-connector-skoda)](https://github.com/tillsteinbach/CarConnectivity-connector-skoda/blob/master/LICENSE)\n[![GitHub issues](https://img.shields.io/github/issues/tillsteinbach/CarConnectivity-connector-skoda)](https://github.com/tillsteinbach/CarConnectivity-connector-skoda/issues)\n[![PyPI - Downloads](https://img.shields.io/pypi/dm/carconnectivity-connector-skoda?label=PyPI%20Downloads)](https://pypi.org/project/carconnectivity-connector-skoda/)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/carconnectivity-connector-skoda)](https://pypi.org/project/carconnectivity-connector-skoda/)\n[![Donate at PayPal](https://img.shields.io/badge/Donate-PayPal-2997d8)](https://www.paypal.com/donate?hosted_button_id=2BVFF5GJ9SXAJ)\n[![Sponsor at Github](https://img.shields.io/badge/Sponsor-GitHub-28a745)](https://github.com/sponsors/tillsteinbach)\n\n## CarConnectivity will become the successor of [WeConnect-python](https://github.com/tillsteinbach/WeConnect-python) in 2025 with similar functionality but support for other brands beyond Volkswagen!\n\n[CarConnectivity](https://github.com/tillsteinbach/CarConnectivity) is a python API to connect to various car services. This connector enables the integration of skoda vehicles through the WeConnect API. Look at [CarConnectivity](https://github.com/tillsteinbach/CarConnectivity) for other supported brands.\n\n## Configuration\nIn your carconnectivity.json configuration add a section for the skoda connector like this:\n```\n{\n    \"carConnectivity\": {\n        \"connectors\": [\n            {\n                \"type\": \"skoda\",\n                \"config\": {\n                    \"username\": \"test@test.de\",\n                    \"password\": \"testpassword123\"\n                }\n            }\n        ]\n    }\n}\n```\n### Credentials\nIf you do not want to provide your username or password inside the configuration you have to create a \".netrc\" file at the appropriate location (usually this is your home folder):\n```\n# For WeConnect\nmachine skoda\nlogin test@test.de\npassword testpassword123\n```\nIn this case the configuration needs to look like this:\n```\n{\n    \"carConnectivity\": {\n        \"connectors\": [\n            {\n                \"type\": \"skoda\",\n                \"config\": {\n                }\n            }\n        ]\n    }\n}\n```\n\nYou can also provide the location of the netrc file in the configuration.\n```\n{\n    \"carConnectivity\": {\n        \"connectors\": [\n            {\n                \"type\": \"skoda\",\n                \"config\": {\n                    \"netrc\": \"/some/path/on/your/filesystem\"\n                }\n            }\n        ]\n    }\n}\n```\nThe optional S-PIN needed for some commands can be provided in the account section of the netrc:\n```\n# For WeConnect\nmachine skoda\nlogin test@test.de\npassword testpassword123\naccount 1234\n```\n",
    "bugtrack_url": null,
    "license": "MIT License\n        \n        Copyright (c) 2021 Till Steinbach\n        \n        Permission is hereby granted, free of charge, to any person obtaining a copy\n        of this software and associated documentation files (the \"Software\"), to deal\n        in the Software without restriction, including without limitation the rights\n        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n        copies of the Software, and to permit persons to whom the Software is\n        furnished to do so, subject to the following conditions:\n        \n        The above copyright notice and this permission notice shall be included in all\n        copies or substantial portions of the Software.\n        \n        THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n        SOFTWARE.\n        ",
    "summary": "CarConnectivity connector for Skoda services",
    "version": "0.3",
    "project_urls": null,
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3739d54fb7928c506f08e293c86bc5a5ccab5b7333ba302ed14e479df8f6591d",
                "md5": "bc143bda22d6f257dc0092f512346f46",
                "sha256": "30e1d9c1ae473d03a5c24564b1f6b7f8c2e70cb0fb58f89e9cab1b9409cf3c3a"
            },
            "downloads": -1,
            "filename": "carconnectivity_connector_skoda-0.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "bc143bda22d6f257dc0092f512346f46",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 48244,
            "upload_time": "2025-02-19T21:00:32",
            "upload_time_iso_8601": "2025-02-19T21:00:32.338537Z",
            "url": "https://files.pythonhosted.org/packages/37/39/d54fb7928c506f08e293c86bc5a5ccab5b7333ba302ed14e479df8f6591d/carconnectivity_connector_skoda-0.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d9f4098e30462f028b1bd0f046faa3892430b633194ecc61ae1116efd4a59d97",
                "md5": "5db7d0035440a1e2221810006252e76c",
                "sha256": "f5162a883e1e426571a9529b525342f09df3c64133ea1c5e6596aa0456119b13"
            },
            "downloads": -1,
            "filename": "carconnectivity_connector_skoda-0.3.tar.gz",
            "has_sig": false,
            "md5_digest": "5db7d0035440a1e2221810006252e76c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 45214,
            "upload_time": "2025-02-19T21:00:34",
            "upload_time_iso_8601": "2025-02-19T21:00:34.504389Z",
            "url": "https://files.pythonhosted.org/packages/d9/f4/098e30462f028b1bd0f046faa3892430b633194ecc61ae1116efd4a59d97/carconnectivity_connector_skoda-0.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-19 21:00:34",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "carconnectivity-connector-skoda"
}
        
Elapsed time: 1.01769s