Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bimmerconnected/bimmer_connected
🚘 Library to query the status of your BMW or Mini from the ConnectedDrive portal
https://github.com/bimmerconnected/bimmer_connected
bmw bmw-connecteddrive home-assistant home-automation mini python3 vehicle
Last synced: 5 days ago
JSON representation
🚘 Library to query the status of your BMW or Mini from the ConnectedDrive portal
- Host: GitHub
- URL: https://github.com/bimmerconnected/bimmer_connected
- Owner: bimmerconnected
- License: apache-2.0
- Created: 2018-02-09T20:12:53.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-09-01T11:51:24.000Z (4 months ago)
- Last Synced: 2024-10-29T14:54:14.645Z (about 2 months ago)
- Topics: bmw, bmw-connecteddrive, home-assistant, home-automation, mini, python3, vehicle
- Language: Python
- Homepage:
- Size: 7.64 MB
- Stars: 372
- Watchers: 25
- Forks: 81
- Open Issues: 3
-
Metadata Files:
- Readme: README.rst
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
bimmer_connected
================.. image:: https://badge.fury.io/py/bimmer-connected.svg
:target: https://pypi.org/project/bimmer-connected
.. image:: https://github.com/bimmerconnected/bimmer_connected/actions/workflows/test.yml/badge.svg?branch=master
:target: https://github.com/bimmerconnected/bimmer_connected/actions/workflows/test.yml?query=branch%3Amaster
.. image:: https://readthedocs.org/projects/bimmer-connected/badge/?version=latest
:target: https://bimmer-connected.readthedocs.io/en/stable/?badge=latest
.. image:: https://codecov.io/gh/bimmerconnected/bimmer_connected/branch/master/graph/badge.svg?token=qNT50j82f6
:target: https://codecov.io/gh/bimmerconnected/bimmer_connected
.. image:: https://static.pepy.tech/badge/bimmer_connected/week
:target: https://pepy.tech/badge/bimmer-connected/week
.. image:: https://static.pepy.tech/badge/bimmer_connected/month
:target: https://pepy.tech/project/bimmer-connected/month
.. image:: https://static.pepy.tech/badge/bimmer_connected
:target: https://pepy.tech/project/bimmer-connectedThis is a simple library to query and control the status of your BMW, Mini, or Toyota Supra vehicle from
the MyBMW portal.Installation
============
:code:`bimmer_connected` is tested against **Python 3.8 or above**. Just install the latest release from `PyPI `_
using :code:`pip3 install --upgrade bimmer_connected`.Alternatively, clone the project and execute :code:`pip install -e .` to install the current
:code:`master` branch... note::
If you want to connect to a **chinese** server, you need to install the :code:`[china]` extra, e.g. :code:`pip3 install --upgrade bimmer_connected[china]`.Usage
=====
While this library is mainly written to be included in `Home Assistant `_, it can be use on its own.After installation, execute :code:`bimmerconnected` from command line for usage instruction
or see the full `CLI documentation `_... warning::
Login to **north american** and **rest of world** accounts requires a captcha to be solved. See `Using Captchas `_ for more information.
Please be aware that :code:`bimmer_connected` is an :code:`async` library when using it in Python code.
The description of the :code:`modules` can be found in the `module documentation
`_.Example in an :code:`asyncio` event loop
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
::import asyncio
from bimmer_connected.account import MyBMWAccount
from bimmer_connected.api.regions import Regionsasync def main():
# hcaptcha_token is only required for the first login, see the captcha documentation
account = MyBMWAccount(USERNAME, PASSWORD, Regions.REST_OF_WORLD, hcaptcha_token="P1_eY...")
await account.get_vehicles()
vehicle = account.get_vehicle(VIN)
print(vehicle.brand, vehicle.name, vehicle.vin)result = await vehicle.remote_services.trigger_remote_light_flash()
print(result.state)asyncio.run(main())
Example in non-async code
^^^^^^^^^^^^^^^^^^^^^^^^^^::
import asyncio
from bimmer_connected.account import MyBMWAccount
from bimmer_connected.api.regions import Regions# hcaptcha_token is only required for the first login, see the captcha documentation
account = MyBMWAccount(USERNAME, PASSWORD, Regions.REST_OF_WORLD, hcaptcha_token="P1_eY...")
asyncio.run(account.get_vehicles())
vehicle = account.get_vehicle(VIN)
print(vehicle.brand, vehicle.name, vehicle.vin)result = asyncio.run(vehicle.remote_services.trigger_remote_light_flash())
print(result.state)Compatibility
=============
This works with BMW/Mini/Toyota Supra vehicles with a MyBMW account.
So far it is tested on vehicles with a 'MGU', 'NBTEvo', 'EntryEvo', 'NBT', or 'EntryNav'
navigation system. If you have any trouble with other navigation systems, please create
an issue with your server responses (see next section).To use this library, your BMW/Mini/Toyota Supra must have the remote services enabled for your vehicle.
You might need to book this in the MyBMW/Mini Connected/Supra Connect portal and this might cost
some money. In addition to that you need to enable the Remote Services in your infotainment
system in the vehicle.Different models of vehicles and infotainment systems result in different types of attributes
provided by the server. So the experience with the library will certainly vary across the different
vehicle models.Data Contributions
==================
If some features do not work for your vehicle, we would need the data
returned form the server to analyse this and potentially extend the code.
Different models and head unit generations lead to different responses from
the server.If you want to contribute your data, perform the following steps:
::
# get the latest version of the library
pip3 install --upgrade bimmer_connected# run the fingerprint function
bimmerconnected fingerprintThis will create a set of log files in the "vehicle_fingerprint" folder.
Before sending the data to anyone please **check for any personal data** such as **dealer name** or **country**.The following attributes are by default replaced with anonymized values:
* :code:`vin` (Vehicle Identification Number)
* :code:`lat` and :code:`lon` (GPS position)
* :code:`licensePlate`
* :code:`information of dealer`Create a new
`fingerprint data contribution `_
and add the files as attachment to the discussion.Please add your model and year to the title of the issue, to make it easier to organize.
If you know the "chassis code" of your car, you can include that too. (For example,
googling "2017 BMW X5" will show a Wikipedia article entitled "BMW X5 (F15)". F15 is
therefore the chassis code of the car.)**Note:** We will then use this data as additional test cases. So we will publish
(parts of) it (after checking for personal information again) and use
this as test cases for our library. If you do not want this, please
let us know in advance.Code Contributions
==================
Contributions are welcome! Please make sure that your code passes the checks in :code:`.github/workflows/test.yml`.
We currently test against :code:`flake8`, :code:`pylint` and our own :code:`pytest` suite.
And please add tests where it makes sense. The more the better.See the `contributing guidelines `_ for more details.
Thank you
=========Thank you to all `contributors `_ for your research and contributions! And thanks to everyone who shares the `fingerprint data `_ of their vehicles which we use to test the code.
A special thanks to @HuChundong, @muxiachuixue, @vividmuse for figuring out how to solve login issues!This library is basically a best-of of other similar solutions,
yet none of them provided a ready to use library with a matching interface
to be used in Home Assistant and is available on pypi.* https://github.com/edent/BMW-i-Remote
* https://github.com/jupe76/bmwcdapi
* https://github.com/frankjoke/iobroker.bmw
* https://github.com/TA2k/ioBroker.bmw
* https://gitee.com/ichuixue/bmw_shortcuts / https://www.icloud.com/shortcuts/eb064e89e6b647d2828a404227b91c4aThank you for your great software!
License
=======
The bimmer_connected library is licensed under the Apache License 2.0.Disclaimer
==========
This library is not affiliated with or endorsed by BMW Group.