Name | carconnectivity-connector-volkswagen JSON |
Version |
0.8.2
JSON |
| download |
home_page | None |
Summary | CarConnectivity connector for Volkswagen services |
upload_time | 2025-07-22 13:04:38 |
maintainer | None |
docs_url | None |
author | Till Steinbach |
requires_python | >=3.9 |
license | MIT 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
[](https://github.com/tillsteinbach/CarConnectivity-connector-volkswagen/)
[](https://github.com/tillsteinbach/CarConnectivity-connector-volkswagen/releases/latest)
[](https://github.com/tillsteinbach/CarConnectivity-connector-volkswagen/blob/master/LICENSE)
[](https://github.com/tillsteinbach/CarConnectivity-connector-volkswagen/issues)
[](https://pypi.org/project/carconnectivity-connector-volkswagen/)
[](https://pypi.org/project/carconnectivity-connector-volkswagen/)
[](https://www.paypal.com/donate?hosted_button_id=2BVFF5GJ9SXAJ)
[](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 volkswagen 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 volkswagen connector like this:
```
{
"carConnectivity": {
"connectors": [
{
"type": "volkswagen",
"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 volkswagen
login test@test.de
password testpassword123
```
In this case the configuration needs to look like this:
```
{
"carConnectivity": {
"connectors": [
{
"type": "volkswagen",
"config": {
}
}
]
}
}
```
You can also provide the location of the netrc file in the configuration.
```
{
"carConnectivity": {
"connectors": [
{
"type": "volkswagen",
"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 volkswagen
login test@test.de
password testpassword123
account 1234
```
### Limitations
The connector is not working with US based vehicles.
Raw data
{
"_id": null,
"home_page": null,
"name": "carconnectivity-connector-volkswagen",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": null,
"author": "Till Steinbach",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/5b/47/39d4e66a15833c01bb75f3ed3154d6aeb92360cf61667b4a6c4bce46b8cf/carconnectivity_connector_volkswagen-0.8.2.tar.gz",
"platform": null,
"description": "\n\n# CarConnectivity Connector for Volkswagen Vehicles\n[](https://github.com/tillsteinbach/CarConnectivity-connector-volkswagen/)\n[](https://github.com/tillsteinbach/CarConnectivity-connector-volkswagen/releases/latest)\n[](https://github.com/tillsteinbach/CarConnectivity-connector-volkswagen/blob/master/LICENSE)\n[](https://github.com/tillsteinbach/CarConnectivity-connector-volkswagen/issues)\n[](https://pypi.org/project/carconnectivity-connector-volkswagen/)\n[](https://pypi.org/project/carconnectivity-connector-volkswagen/)\n[](https://www.paypal.com/donate?hosted_button_id=2BVFF5GJ9SXAJ)\n[](https://github.com/sponsors/tillsteinbach)\n\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 volkswagen 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 volkswagen connector like this:\n```\n{\n \"carConnectivity\": {\n \"connectors\": [\n {\n \"type\": \"volkswagen\",\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 volkswagen\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\": \"volkswagen\",\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\": \"volkswagen\",\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 volkswagen\nlogin test@test.de\npassword testpassword123\naccount 1234\n```\n### Limitations\nThe connector is not working with US based vehicles.\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 Volkswagen services",
"version": "0.8.2",
"project_urls": null,
"split_keywords": [],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "d9d0365d1b121e2940611ea9ebe0f69715129759ff85730bea4033c19a5e6cb1",
"md5": "5e4f4807b9976c412047f6ea9912f45a",
"sha256": "83271eec0a75f5ba8292582c38808dea011971399f49dd63d1c1ee7f3b98079e"
},
"downloads": -1,
"filename": "carconnectivity_connector_volkswagen-0.8.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "5e4f4807b9976c412047f6ea9912f45a",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 45758,
"upload_time": "2025-07-22T13:04:37",
"upload_time_iso_8601": "2025-07-22T13:04:37.145190Z",
"url": "https://files.pythonhosted.org/packages/d9/d0/365d1b121e2940611ea9ebe0f69715129759ff85730bea4033c19a5e6cb1/carconnectivity_connector_volkswagen-0.8.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5b4739d4e66a15833c01bb75f3ed3154d6aeb92360cf61667b4a6c4bce46b8cf",
"md5": "03d84275df1927a4b9c759a24d123548",
"sha256": "ba4f4a4eb019a8e1c241e08fb84fb837669bab59bc5585f83895718d44d167d8"
},
"downloads": -1,
"filename": "carconnectivity_connector_volkswagen-0.8.2.tar.gz",
"has_sig": false,
"md5_digest": "03d84275df1927a4b9c759a24d123548",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 43808,
"upload_time": "2025-07-22T13:04:38",
"upload_time_iso_8601": "2025-07-22T13:04:38.410236Z",
"url": "https://files.pythonhosted.org/packages/5b/47/39d4e66a15833c01bb75f3ed3154d6aeb92360cf61667b4a6c4bce46b8cf/carconnectivity_connector_volkswagen-0.8.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-22 13:04:38",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "carconnectivity-connector-volkswagen"
}