carconnectivity-cli 0.1__tar.gz → 0.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. {carconnectivity_cli-0.1 → carconnectivity_cli-0.2}/.github/workflows/build.yml +3 -0
  2. {carconnectivity_cli-0.1 → carconnectivity_cli-0.2}/CHANGELOG.md +5 -2
  3. {carconnectivity_cli-0.1 → carconnectivity_cli-0.2}/PKG-INFO +23 -7
  4. {carconnectivity_cli-0.1 → carconnectivity_cli-0.2}/README.md +22 -6
  5. {carconnectivity_cli-0.1 → carconnectivity_cli-0.2}/pyproject.toml +1 -1
  6. carconnectivity_cli-0.2/setup_requirements.txt +3 -0
  7. {carconnectivity_cli-0.1 → carconnectivity_cli-0.2}/src/carconnectivity_cli/_version.py +2 -2
  8. {carconnectivity_cli-0.1 → carconnectivity_cli-0.2}/src/carconnectivity_cli.egg-info/PKG-INFO +23 -7
  9. {carconnectivity_cli-0.1 → carconnectivity_cli-0.2}/src/carconnectivity_cli.egg-info/requires.txt +1 -1
  10. carconnectivity_cli-0.1/setup_requirements.txt +0 -3
  11. {carconnectivity_cli-0.1 → carconnectivity_cli-0.2}/.flake8 +0 -0
  12. {carconnectivity_cli-0.1 → carconnectivity_cli-0.2}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  13. {carconnectivity_cli-0.1 → carconnectivity_cli-0.2}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  14. {carconnectivity_cli-0.1 → carconnectivity_cli-0.2}/.github/dependabot.yml +0 -0
  15. {carconnectivity_cli-0.1 → carconnectivity_cli-0.2}/.github/workflows/build_and_publish.yml +0 -0
  16. {carconnectivity_cli-0.1 → carconnectivity_cli-0.2}/.github/workflows/codeql-analysis.yml +0 -0
  17. {carconnectivity_cli-0.1 → carconnectivity_cli-0.2}/.gitignore +0 -0
  18. {carconnectivity_cli-0.1 → carconnectivity_cli-0.2}/LICENSE +0 -0
  19. {carconnectivity_cli-0.1 → carconnectivity_cli-0.2}/Makefile +0 -0
  20. {carconnectivity_cli-0.1 → carconnectivity_cli-0.2}/setup.cfg +0 -0
  21. {carconnectivity_cli-0.1 → carconnectivity_cli-0.2}/src/carconnectivity_cli/__init__.py +0 -0
  22. {carconnectivity_cli-0.1 → carconnectivity_cli-0.2}/src/carconnectivity_cli/carconnectivity_cli_base.py +0 -0
  23. {carconnectivity_cli-0.1 → carconnectivity_cli-0.2}/src/carconnectivity_cli.egg-info/SOURCES.txt +0 -0
  24. {carconnectivity_cli-0.1 → carconnectivity_cli-0.2}/src/carconnectivity_cli.egg-info/dependency_links.txt +0 -0
  25. {carconnectivity_cli-0.1 → carconnectivity_cli-0.2}/src/carconnectivity_cli.egg-info/entry_points.txt +0 -0
  26. {carconnectivity_cli-0.1 → carconnectivity_cli-0.2}/src/carconnectivity_cli.egg-info/top_level.txt +0 -0
@@ -41,6 +41,9 @@ jobs:
41
41
  - name: Install built package
42
42
  run: |
43
43
  pip install dist/*.whl
44
+ - name: Run
45
+ run: |
46
+ carconnectivity-cli --version
44
47
  - name: Lint
45
48
  run: |
46
49
  make lint
@@ -5,9 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
  ## [Unreleased]
6
6
  - No unreleased changes so far
7
7
 
8
+ ## [0.2] - 2025-02-19
9
+ - Bump carconnectivity dependency to 0.3
10
+
8
11
  ## [0.1] - 2025-01-25
9
12
  Initial release, let's go and give this to the public to try out...
10
13
 
11
- [unreleased]: https://github.com/tillsteinbach/CarConnectivity-cli/compare/v0.1...HEAD
12
-
14
+ [unreleased]: https://github.com/tillsteinbach/CarConnectivity-cli/compare/v0.2...HEAD
15
+ [0.2]: https://github.com/tillsteinbach/CarConnectivity-cli/releases/tag/v0.2
13
16
  [0.1]: https://github.com/tillsteinbach/CarConnectivity-cli/releases/tag/v0.1
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: carconnectivity-cli
3
- Version: 0.1
3
+ Version: 0.2
4
4
  Summary: Library for retrieving information from car connectivity services
5
5
  Author: Till Steinbach
6
6
  License: MIT License
@@ -40,7 +40,7 @@ Classifier: Topic :: System :: Monitoring
40
40
  Requires-Python: >=3.9
41
41
  Description-Content-Type: text/markdown
42
42
  License-File: LICENSE
43
- Requires-Dist: carconnectivity~=0.1.0
43
+ Requires-Dist: carconnectivity>=0.3.0
44
44
  Requires-Dist: argparse
45
45
  Requires-Dist: JSON_minify~=0.3.0
46
46
  Provides-Extra: connectors
@@ -67,14 +67,30 @@ Requires-Dist: carconnectivity-plugin-homekit; extra == "plugins"
67
67
  ## Supported Car Brands
68
68
  CarConenctivity uses a plugin architecture to enable access to the services of various brands. Currently known plugins are:
69
69
 
70
- | Brand | Connector |
71
- |------------|---------------------------------------------------------------------------------------------------------------|
72
- | Skoda | [CarConnectivity-connector-skoda](https://github.com/tillsteinbach/CarConnectivity-connector-skoda) |
73
- | Volkswagen | [CarConnectivity-connector-volkswagen](https://github.com/tillsteinbach/CarConnectivity-connector-volkswagen) |
70
+ | Brand | Connector |
71
+ |-----------------------------------|---------------------------------------------------------------------------------------------------------------|
72
+ | Skoda | [CarConnectivity-connector-skoda](https://github.com/tillsteinbach/CarConnectivity-connector-skoda) |
73
+ | Volkswagen | [CarConnectivity-connector-volkswagen](https://github.com/tillsteinbach/CarConnectivity-connector-volkswagen) |
74
+ | [Tronity](https://www.tronity.io) | [CarConnectivity-connector-tronity](https://github.com/tillsteinbach/CarConnectivity-connector-tronity) |
74
75
 
75
76
  If you know of a connector not listed here let me know and I will add it to the list.
76
77
  If you are a python developer and willing to implement a connector for a brand not listed here, let me know and I try to support you as good as possible
77
78
 
79
+ ## How to install
80
+ You first need a running [Python](https://www.python.org/downloads/) installation. Afterwards you can install CarConnectivity-cli with:
81
+ ```
82
+ pip install carconnectivity-cli
83
+ ```
84
+ You also need the right connector for your vehicle, e.g.
85
+ ```
86
+ pip install carconnectivity-connector-skoda
87
+ ```
88
+ or you installed CarConnectivity-cli with all known connectors and plugins:
89
+ ```
90
+ pip3 install 'carconnectivity-cli[connectors,plugins]'
91
+ ```
92
+ The plugins will then become active when you add them to your configuration.
93
+
78
94
  ## How to use
79
95
  Start by creating a carconnectivity.json configuration file
80
96
 
@@ -199,5 +215,5 @@ Please feel free to open an issue at [GitHub Issue page](https://github.com/till
199
215
  - The Tool is in alpha state and may change unexpectedly at any time!
200
216
 
201
217
  ## Related Projects:
202
- - [WeConnect-MQTT](https://github.com/tillsteinbach/WeConnect-mqtt): MQTT Client that publishes data from CarConnectivity to any MQTT broker.
218
+ - [CarConnectivity-plugin-mqtt](https://github.com/tillsteinbach/CarConnectivity-plugin-mqtt): MQTT Client that publishes data from CarConnectivity to any MQTT broker.
203
219
  - [CarConnectivity](https://github.com/tillsteinbach/CarConnectivity): The underlying python API behind CarConnectivity-cli. If you are a developer and want to implement an application or service with vehicle telemetry data you can use [CarConnectivity-Library](https://github.com/tillsteinbach/CarConnectivity).
@@ -15,14 +15,30 @@
15
15
  ## Supported Car Brands
16
16
  CarConenctivity uses a plugin architecture to enable access to the services of various brands. Currently known plugins are:
17
17
 
18
- | Brand | Connector |
19
- |------------|---------------------------------------------------------------------------------------------------------------|
20
- | Skoda | [CarConnectivity-connector-skoda](https://github.com/tillsteinbach/CarConnectivity-connector-skoda) |
21
- | Volkswagen | [CarConnectivity-connector-volkswagen](https://github.com/tillsteinbach/CarConnectivity-connector-volkswagen) |
18
+ | Brand | Connector |
19
+ |-----------------------------------|---------------------------------------------------------------------------------------------------------------|
20
+ | Skoda | [CarConnectivity-connector-skoda](https://github.com/tillsteinbach/CarConnectivity-connector-skoda) |
21
+ | Volkswagen | [CarConnectivity-connector-volkswagen](https://github.com/tillsteinbach/CarConnectivity-connector-volkswagen) |
22
+ | [Tronity](https://www.tronity.io) | [CarConnectivity-connector-tronity](https://github.com/tillsteinbach/CarConnectivity-connector-tronity) |
22
23
 
23
24
  If you know of a connector not listed here let me know and I will add it to the list.
24
25
  If you are a python developer and willing to implement a connector for a brand not listed here, let me know and I try to support you as good as possible
25
26
 
27
+ ## How to install
28
+ You first need a running [Python](https://www.python.org/downloads/) installation. Afterwards you can install CarConnectivity-cli with:
29
+ ```
30
+ pip install carconnectivity-cli
31
+ ```
32
+ You also need the right connector for your vehicle, e.g.
33
+ ```
34
+ pip install carconnectivity-connector-skoda
35
+ ```
36
+ or you installed CarConnectivity-cli with all known connectors and plugins:
37
+ ```
38
+ pip3 install 'carconnectivity-cli[connectors,plugins]'
39
+ ```
40
+ The plugins will then become active when you add them to your configuration.
41
+
26
42
  ## How to use
27
43
  Start by creating a carconnectivity.json configuration file
28
44
 
@@ -147,5 +163,5 @@ Please feel free to open an issue at [GitHub Issue page](https://github.com/till
147
163
  - The Tool is in alpha state and may change unexpectedly at any time!
148
164
 
149
165
  ## Related Projects:
150
- - [WeConnect-MQTT](https://github.com/tillsteinbach/WeConnect-mqtt): MQTT Client that publishes data from CarConnectivity to any MQTT broker.
151
- - [CarConnectivity](https://github.com/tillsteinbach/CarConnectivity): The underlying python API behind CarConnectivity-cli. If you are a developer and want to implement an application or service with vehicle telemetry data you can use [CarConnectivity-Library](https://github.com/tillsteinbach/CarConnectivity).
166
+ - [CarConnectivity-plugin-mqtt](https://github.com/tillsteinbach/CarConnectivity-plugin-mqtt): MQTT Client that publishes data from CarConnectivity to any MQTT broker.
167
+ - [CarConnectivity](https://github.com/tillsteinbach/CarConnectivity): The underlying python API behind CarConnectivity-cli. If you are a developer and want to implement an application or service with vehicle telemetry data you can use [CarConnectivity-Library](https://github.com/tillsteinbach/CarConnectivity).
@@ -14,7 +14,7 @@ authors = [
14
14
  { name = "Till Steinbach" }
15
15
  ]
16
16
  dependencies = [
17
- "carconnectivity~=0.1.0",
17
+ "carconnectivity>=0.3.0",
18
18
  "argparse",
19
19
  "JSON_minify~=0.3.0"
20
20
  ]
@@ -0,0 +1,3 @@
1
+ flake8~=7.1.2
2
+ pylint~=3.3.4
3
+ bandit~=1.8.3
@@ -12,5 +12,5 @@ __version__: str
12
12
  __version_tuple__: VERSION_TUPLE
13
13
  version_tuple: VERSION_TUPLE
14
14
 
15
- __version__ = version = '0.1'
16
- __version_tuple__ = version_tuple = (0, 1)
15
+ __version__ = version = '0.2'
16
+ __version_tuple__ = version_tuple = (0, 2)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: carconnectivity-cli
3
- Version: 0.1
3
+ Version: 0.2
4
4
  Summary: Library for retrieving information from car connectivity services
5
5
  Author: Till Steinbach
6
6
  License: MIT License
@@ -40,7 +40,7 @@ Classifier: Topic :: System :: Monitoring
40
40
  Requires-Python: >=3.9
41
41
  Description-Content-Type: text/markdown
42
42
  License-File: LICENSE
43
- Requires-Dist: carconnectivity~=0.1.0
43
+ Requires-Dist: carconnectivity>=0.3.0
44
44
  Requires-Dist: argparse
45
45
  Requires-Dist: JSON_minify~=0.3.0
46
46
  Provides-Extra: connectors
@@ -67,14 +67,30 @@ Requires-Dist: carconnectivity-plugin-homekit; extra == "plugins"
67
67
  ## Supported Car Brands
68
68
  CarConenctivity uses a plugin architecture to enable access to the services of various brands. Currently known plugins are:
69
69
 
70
- | Brand | Connector |
71
- |------------|---------------------------------------------------------------------------------------------------------------|
72
- | Skoda | [CarConnectivity-connector-skoda](https://github.com/tillsteinbach/CarConnectivity-connector-skoda) |
73
- | Volkswagen | [CarConnectivity-connector-volkswagen](https://github.com/tillsteinbach/CarConnectivity-connector-volkswagen) |
70
+ | Brand | Connector |
71
+ |-----------------------------------|---------------------------------------------------------------------------------------------------------------|
72
+ | Skoda | [CarConnectivity-connector-skoda](https://github.com/tillsteinbach/CarConnectivity-connector-skoda) |
73
+ | Volkswagen | [CarConnectivity-connector-volkswagen](https://github.com/tillsteinbach/CarConnectivity-connector-volkswagen) |
74
+ | [Tronity](https://www.tronity.io) | [CarConnectivity-connector-tronity](https://github.com/tillsteinbach/CarConnectivity-connector-tronity) |
74
75
 
75
76
  If you know of a connector not listed here let me know and I will add it to the list.
76
77
  If you are a python developer and willing to implement a connector for a brand not listed here, let me know and I try to support you as good as possible
77
78
 
79
+ ## How to install
80
+ You first need a running [Python](https://www.python.org/downloads/) installation. Afterwards you can install CarConnectivity-cli with:
81
+ ```
82
+ pip install carconnectivity-cli
83
+ ```
84
+ You also need the right connector for your vehicle, e.g.
85
+ ```
86
+ pip install carconnectivity-connector-skoda
87
+ ```
88
+ or you installed CarConnectivity-cli with all known connectors and plugins:
89
+ ```
90
+ pip3 install 'carconnectivity-cli[connectors,plugins]'
91
+ ```
92
+ The plugins will then become active when you add them to your configuration.
93
+
78
94
  ## How to use
79
95
  Start by creating a carconnectivity.json configuration file
80
96
 
@@ -199,5 +215,5 @@ Please feel free to open an issue at [GitHub Issue page](https://github.com/till
199
215
  - The Tool is in alpha state and may change unexpectedly at any time!
200
216
 
201
217
  ## Related Projects:
202
- - [WeConnect-MQTT](https://github.com/tillsteinbach/WeConnect-mqtt): MQTT Client that publishes data from CarConnectivity to any MQTT broker.
218
+ - [CarConnectivity-plugin-mqtt](https://github.com/tillsteinbach/CarConnectivity-plugin-mqtt): MQTT Client that publishes data from CarConnectivity to any MQTT broker.
203
219
  - [CarConnectivity](https://github.com/tillsteinbach/CarConnectivity): The underlying python API behind CarConnectivity-cli. If you are a developer and want to implement an application or service with vehicle telemetry data you can use [CarConnectivity-Library](https://github.com/tillsteinbach/CarConnectivity).
@@ -1,4 +1,4 @@
1
- carconnectivity~=0.1.0
1
+ carconnectivity>=0.3.0
2
2
  argparse
3
3
  JSON_minify~=0.3.0
4
4
 
@@ -1,3 +0,0 @@
1
- flake8~=7.1.1
2
- pylint~=3.3.3
3
- bandit~=1.8.0