Skip to content

acfischer42/CarConnectivity-connector-skoda

 
 

Repository files navigation

CarConnectivity Connector for Skoda Vehicles

GitHub sourcecode GitHub release (latest by date) GitHub GitHub issues PyPI - Downloads PyPI - Python Version Donate at PayPal Sponsor at Github

CarConnectivity will become the successor of WeConnect-python in 2025 with similar functionality but support for other brands beyond Volkswagen!

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 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

About

Connector for MySkoda for CarConnectivity

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 99.3%
  • Other 0.7%