leneda-client 0.2.0__tar.gz → 0.3.0__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 (24) hide show
  1. leneda_client-0.3.0/LICENSE +21 -0
  2. {leneda_client-0.2.0 → leneda_client-0.3.0}/PKG-INFO +37 -4
  3. leneda_client-0.3.0/README.md +52 -0
  4. {leneda_client-0.2.0 → leneda_client-0.3.0}/src/leneda/client.py +57 -1
  5. leneda_client-0.3.0/src/leneda/exceptions.py +27 -0
  6. {leneda_client-0.2.0 → leneda_client-0.3.0}/src/leneda/version.py +1 -1
  7. {leneda_client-0.2.0 → leneda_client-0.3.0}/src/leneda_client.egg-info/PKG-INFO +37 -4
  8. {leneda_client-0.2.0 → leneda_client-0.3.0}/src/leneda_client.egg-info/SOURCES.txt +2 -0
  9. {leneda_client-0.2.0 → leneda_client-0.3.0}/tests/test_client.py +87 -1
  10. leneda_client-0.2.0/README.md +0 -21
  11. {leneda_client-0.2.0 → leneda_client-0.3.0}/MANIFEST.in +0 -0
  12. {leneda_client-0.2.0 → leneda_client-0.3.0}/examples/advanced_usage.py +0 -0
  13. {leneda_client-0.2.0 → leneda_client-0.3.0}/examples/basic_usage.py +0 -0
  14. {leneda_client-0.2.0 → leneda_client-0.3.0}/pyproject.toml +0 -0
  15. {leneda_client-0.2.0 → leneda_client-0.3.0}/requirements.txt +0 -0
  16. {leneda_client-0.2.0 → leneda_client-0.3.0}/setup.cfg +0 -0
  17. {leneda_client-0.2.0 → leneda_client-0.3.0}/setup.py +0 -0
  18. {leneda_client-0.2.0 → leneda_client-0.3.0}/src/leneda/__init__.py +0 -0
  19. {leneda_client-0.2.0 → leneda_client-0.3.0}/src/leneda/models.py +0 -0
  20. {leneda_client-0.2.0 → leneda_client-0.3.0}/src/leneda/obis_codes.py +0 -0
  21. {leneda_client-0.2.0 → leneda_client-0.3.0}/src/leneda_client.egg-info/dependency_links.txt +0 -0
  22. {leneda_client-0.2.0 → leneda_client-0.3.0}/src/leneda_client.egg-info/requires.txt +0 -0
  23. {leneda_client-0.2.0 → leneda_client-0.3.0}/src/leneda_client.egg-info/top_level.txt +0 -0
  24. {leneda_client-0.2.0 → leneda_client-0.3.0}/tests/__init__.py +0 -0
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 fedus
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: leneda-client
3
- Version: 0.2.0
3
+ Version: 0.3.0
4
4
  Summary: Python client for the Leneda energy data platform
5
5
  Home-page: https://github.com/fedus/leneda-client
6
6
  Author: fedus
@@ -21,6 +21,7 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
21
21
  Classifier: Topic :: Utilities
22
22
  Requires-Python: >=3.8
23
23
  Description-Content-Type: text/markdown
24
+ License-File: LICENSE
24
25
  Requires-Dist: requests>=2.25.0
25
26
  Requires-Dist: python-dateutil>=2.8.2
26
27
  Dynamic: author
@@ -30,6 +31,7 @@ Dynamic: description
30
31
  Dynamic: description-content-type
31
32
  Dynamic: home-page
32
33
  Dynamic: keywords
34
+ Dynamic: license-file
33
35
  Dynamic: project-url
34
36
  Dynamic: requires-dist
35
37
  Dynamic: requires-python
@@ -37,9 +39,10 @@ Dynamic: summary
37
39
 
38
40
  # Leneda API Client
39
41
 
40
- [![PyPI version]](https://pypi.org/project/leneda-client/)
41
- [![Python versions]](https://pypi.org/project/leneda-client/)
42
- [![License]](https://github.com/fedus/leneda-client/blob/main/LICENSE)
42
+ [![PyPI version](https://img.shields.io/pypi/v/leneda-client.svg)](https://pypi.org/project/leneda-client/)
43
+ [![Python Versions](https://img.shields.io/pypi/pyversions/leneda-client)](https://pypi.org/project/leneda-client/)
44
+ [![License](https://img.shields.io/github/license/fedus/leneda-client)](https://github.com/fedus/leneda-client/blob/main/LICENSE)
45
+
43
46
 
44
47
  A Python client for interacting with the Leneda energy data platform API.
45
48
 
@@ -56,3 +59,33 @@ This client provides a simple interface to the Leneda API, which allows users to
56
59
 
57
60
  ```bash
58
61
  pip install leneda-client
62
+ ```
63
+
64
+ ## Trying it out
65
+
66
+ ```bash
67
+ $ export LENEDA_ENERGY_ID='LUXE-xx-yy-1234'
68
+ $ export LENEDA_API_KEY='YOUR-API-KEY'
69
+ $ python examples/basic_usage.py --metering-point LU0000012345678901234000000000000
70
+ Example 1: Getting hourly electricity consumption data for the last 7 days
71
+ Retrieved 514 consumption measurements
72
+ Unit: kW
73
+ Interval length: PT15M
74
+ Metering point: LU0000012345678901234000000000000
75
+ OBIS code: ObisCode.ELEC_CONSUMPTION_ACTIVE
76
+
77
+ First 3 measurements:
78
+ Time: 2025-04-18T13:30:00+00:00, Value: 0.048 kW, Type: Actual, Version: 2, Calculated: False
79
+ Time: 2025-04-18T13:45:00+00:00, Value: 0.08 kW, Type: Actual, Version: 2, Calculated: False
80
+ Time: 2025-04-18T14:00:00+00:00, Value: 0.08 kW, Type: Actual, Version: 2, Calculated: False
81
+
82
+ Example 2: Getting monthly aggregated electricity consumption for 2025
83
+ Retrieved 4 monthly aggregations
84
+ Unit: kWh
85
+
86
+ Monthly consumption:
87
+ Period: 2024-12 to 2025-01, Value: 30.858 kWh, Calculated: False
88
+ Period: 2025-01 to 2025-02, Value: 148.985 kWh, Calculated: False
89
+ Period: 2025-02 to 2025-03, Value: 44.619 kWh, Calculated: False
90
+ Period: 2025-03 to 2025-04, Value: 29.662 kWh, Calculated: False
91
+ ```
@@ -0,0 +1,52 @@
1
+ # Leneda API Client
2
+
3
+ [![PyPI version](https://img.shields.io/pypi/v/leneda-client.svg)](https://pypi.org/project/leneda-client/)
4
+ [![Python Versions](https://img.shields.io/pypi/pyversions/leneda-client)](https://pypi.org/project/leneda-client/)
5
+ [![License](https://img.shields.io/github/license/fedus/leneda-client)](https://github.com/fedus/leneda-client/blob/main/LICENSE)
6
+
7
+
8
+ A Python client for interacting with the Leneda energy data platform API.
9
+
10
+ ## Overview
11
+
12
+ This client provides a simple interface to the Leneda API, which allows users to:
13
+
14
+ - Retrieve metering data for specific time ranges
15
+ - Get aggregated metering data (hourly, daily, weekly, monthly, or total)
16
+ - Create metering data access requests
17
+ - Use predefined OBIS code constants for easy reference
18
+
19
+ ## Installation
20
+
21
+ ```bash
22
+ pip install leneda-client
23
+ ```
24
+
25
+ ## Trying it out
26
+
27
+ ```bash
28
+ $ export LENEDA_ENERGY_ID='LUXE-xx-yy-1234'
29
+ $ export LENEDA_API_KEY='YOUR-API-KEY'
30
+ $ python examples/basic_usage.py --metering-point LU0000012345678901234000000000000
31
+ Example 1: Getting hourly electricity consumption data for the last 7 days
32
+ Retrieved 514 consumption measurements
33
+ Unit: kW
34
+ Interval length: PT15M
35
+ Metering point: LU0000012345678901234000000000000
36
+ OBIS code: ObisCode.ELEC_CONSUMPTION_ACTIVE
37
+
38
+ First 3 measurements:
39
+ Time: 2025-04-18T13:30:00+00:00, Value: 0.048 kW, Type: Actual, Version: 2, Calculated: False
40
+ Time: 2025-04-18T13:45:00+00:00, Value: 0.08 kW, Type: Actual, Version: 2, Calculated: False
41
+ Time: 2025-04-18T14:00:00+00:00, Value: 0.08 kW, Type: Actual, Version: 2, Calculated: False
42
+
43
+ Example 2: Getting monthly aggregated electricity consumption for 2025
44
+ Retrieved 4 monthly aggregations
45
+ Unit: kWh
46
+
47
+ Monthly consumption:
48
+ Period: 2024-12 to 2025-01, Value: 30.858 kWh, Calculated: False
49
+ Period: 2025-01 to 2025-02, Value: 148.985 kWh, Calculated: False
50
+ Period: 2025-02 to 2025-03, Value: 44.619 kWh, Calculated: False
51
+ Period: 2025-03 to 2025-04, Value: 29.662 kWh, Calculated: False
52
+ ```
@@ -7,11 +7,12 @@ energy consumption and production data for electricity and gas.
7
7
 
8
8
  import json
9
9
  import logging
10
- from datetime import datetime
10
+ from datetime import datetime, timedelta
11
11
  from typing import Any, Dict, List, Optional, Union
12
12
 
13
13
  import requests
14
14
 
15
+ from .exceptions import ForbiddenException, InvalidMeteringPointException, UnauthorizedException
15
16
  from .models import (
16
17
  AggregatedMeteringData,
17
18
  MeteringData,
@@ -70,6 +71,12 @@ class LenedaClient:
70
71
 
71
72
  Returns:
72
73
  The JSON response from the API
74
+
75
+ Raises:
76
+ UnauthorizedException: If the API returns a 401 status code
77
+ ForbiddenException: If the API returns a 403 status code
78
+ requests.exceptions.RequestException: For other request errors
79
+ json.JSONDecodeError: If the response cannot be parsed as JSON
73
80
  """
74
81
  url = f"{self.BASE_URL}/{endpoint}"
75
82
 
@@ -87,6 +94,14 @@ class LenedaClient:
87
94
  )
88
95
 
89
96
  # Check for HTTP errors
97
+ if response.status_code == 401:
98
+ raise UnauthorizedException(
99
+ "API authentication failed. Please check your API key and energy ID."
100
+ )
101
+ if response.status_code == 403:
102
+ raise ForbiddenException(
103
+ "Access forbidden. This may be due to Leneda's geoblocking or other access restrictions."
104
+ )
90
105
  response.raise_for_status()
91
106
 
92
107
  # Parse the response
@@ -234,3 +249,44 @@ class LenedaClient:
234
249
  response_data = self._make_request(method="POST", endpoint=endpoint, json_data=data)
235
250
 
236
251
  return response_data
252
+
253
+ def test_metering_point(self, metering_point_code: str) -> bool:
254
+ """
255
+ Test if a metering point code is valid and accessible.
256
+
257
+ This method checks if a metering point code is valid by making a request
258
+ for aggregated metering data. If the unit property in the response is null,
259
+ it indicates that the metering point is invalid or not accessible.
260
+
261
+ Args:
262
+ metering_point_code: The metering point code to test
263
+
264
+ Returns:
265
+ bool: True if the metering point is valid and accessible, False otherwise
266
+
267
+ Raises:
268
+ UnauthorizedException: If the API returns a 401 status code
269
+ ForbiddenException: If the API returns a 403 status code
270
+ requests.exceptions.RequestException: For other request errors
271
+ """
272
+ # Use arbitrary time window
273
+ end_date = datetime.now()
274
+ start_date = end_date - timedelta(weeks=4)
275
+
276
+ # Try to get aggregated data for electricity consumption
277
+ result = self.get_aggregated_metering_data(
278
+ metering_point_code=metering_point_code,
279
+ obis_code=ObisCode.ELEC_CONSUMPTION_ACTIVE,
280
+ start_date=start_date,
281
+ end_date=end_date,
282
+ aggregation_level="Month",
283
+ transformation_mode="Accumulation",
284
+ )
285
+
286
+ # If we get here and the unit is None, the metering point is invalid
287
+ if result.unit is None:
288
+ raise InvalidMeteringPointException(
289
+ f"Metering point {metering_point_code} is invalid or not accessible"
290
+ )
291
+
292
+ return True
@@ -0,0 +1,27 @@
1
+ """
2
+ Custom exceptions for the Leneda API client.
3
+ """
4
+
5
+
6
+ class LenedaException(Exception):
7
+ """Base exception for all Leneda API client exceptions."""
8
+
9
+ pass
10
+
11
+
12
+ class UnauthorizedException(LenedaException):
13
+ """Raised when API authentication fails (401 Unauthorized)."""
14
+
15
+ pass
16
+
17
+
18
+ class ForbiddenException(LenedaException):
19
+ """Raised when access is forbidden (403 Forbidden), typically due to geoblocking or other access restrictions."""
20
+
21
+ pass
22
+
23
+
24
+ class InvalidMeteringPointException(LenedaException):
25
+ """Raised when a metering point code is invalid or not accessible."""
26
+
27
+ pass
@@ -1,3 +1,3 @@
1
1
  """Version information."""
2
2
 
3
- __version__ = "0.2.0"
3
+ __version__ = "0.3.0"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: leneda-client
3
- Version: 0.2.0
3
+ Version: 0.3.0
4
4
  Summary: Python client for the Leneda energy data platform
5
5
  Home-page: https://github.com/fedus/leneda-client
6
6
  Author: fedus
@@ -21,6 +21,7 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
21
21
  Classifier: Topic :: Utilities
22
22
  Requires-Python: >=3.8
23
23
  Description-Content-Type: text/markdown
24
+ License-File: LICENSE
24
25
  Requires-Dist: requests>=2.25.0
25
26
  Requires-Dist: python-dateutil>=2.8.2
26
27
  Dynamic: author
@@ -30,6 +31,7 @@ Dynamic: description
30
31
  Dynamic: description-content-type
31
32
  Dynamic: home-page
32
33
  Dynamic: keywords
34
+ Dynamic: license-file
33
35
  Dynamic: project-url
34
36
  Dynamic: requires-dist
35
37
  Dynamic: requires-python
@@ -37,9 +39,10 @@ Dynamic: summary
37
39
 
38
40
  # Leneda API Client
39
41
 
40
- [![PyPI version]](https://pypi.org/project/leneda-client/)
41
- [![Python versions]](https://pypi.org/project/leneda-client/)
42
- [![License]](https://github.com/fedus/leneda-client/blob/main/LICENSE)
42
+ [![PyPI version](https://img.shields.io/pypi/v/leneda-client.svg)](https://pypi.org/project/leneda-client/)
43
+ [![Python Versions](https://img.shields.io/pypi/pyversions/leneda-client)](https://pypi.org/project/leneda-client/)
44
+ [![License](https://img.shields.io/github/license/fedus/leneda-client)](https://github.com/fedus/leneda-client/blob/main/LICENSE)
45
+
43
46
 
44
47
  A Python client for interacting with the Leneda energy data platform API.
45
48
 
@@ -56,3 +59,33 @@ This client provides a simple interface to the Leneda API, which allows users to
56
59
 
57
60
  ```bash
58
61
  pip install leneda-client
62
+ ```
63
+
64
+ ## Trying it out
65
+
66
+ ```bash
67
+ $ export LENEDA_ENERGY_ID='LUXE-xx-yy-1234'
68
+ $ export LENEDA_API_KEY='YOUR-API-KEY'
69
+ $ python examples/basic_usage.py --metering-point LU0000012345678901234000000000000
70
+ Example 1: Getting hourly electricity consumption data for the last 7 days
71
+ Retrieved 514 consumption measurements
72
+ Unit: kW
73
+ Interval length: PT15M
74
+ Metering point: LU0000012345678901234000000000000
75
+ OBIS code: ObisCode.ELEC_CONSUMPTION_ACTIVE
76
+
77
+ First 3 measurements:
78
+ Time: 2025-04-18T13:30:00+00:00, Value: 0.048 kW, Type: Actual, Version: 2, Calculated: False
79
+ Time: 2025-04-18T13:45:00+00:00, Value: 0.08 kW, Type: Actual, Version: 2, Calculated: False
80
+ Time: 2025-04-18T14:00:00+00:00, Value: 0.08 kW, Type: Actual, Version: 2, Calculated: False
81
+
82
+ Example 2: Getting monthly aggregated electricity consumption for 2025
83
+ Retrieved 4 monthly aggregations
84
+ Unit: kWh
85
+
86
+ Monthly consumption:
87
+ Period: 2024-12 to 2025-01, Value: 30.858 kWh, Calculated: False
88
+ Period: 2025-01 to 2025-02, Value: 148.985 kWh, Calculated: False
89
+ Period: 2025-02 to 2025-03, Value: 44.619 kWh, Calculated: False
90
+ Period: 2025-03 to 2025-04, Value: 29.662 kWh, Calculated: False
91
+ ```
@@ -1,3 +1,4 @@
1
+ LICENSE
1
2
  MANIFEST.in
2
3
  README.md
3
4
  pyproject.toml
@@ -7,6 +8,7 @@ examples/advanced_usage.py
7
8
  examples/basic_usage.py
8
9
  src/leneda/__init__.py
9
10
  src/leneda/client.py
11
+ src/leneda/exceptions.py
10
12
  src/leneda/models.py
11
13
  src/leneda/obis_codes.py
12
14
  src/leneda/version.py
@@ -14,6 +14,11 @@ import requests
14
14
  sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))
15
15
 
16
16
  from src.leneda import LenedaClient
17
+ from src.leneda.exceptions import (
18
+ ForbiddenException,
19
+ InvalidMeteringPointException,
20
+ UnauthorizedException,
21
+ )
17
22
  from src.leneda.models import (
18
23
  AggregatedMeteringData,
19
24
  AggregatedMeteringValue,
@@ -220,9 +225,51 @@ class TestLenedaClient(unittest.TestCase):
220
225
  },
221
226
  )
222
227
 
228
+ @patch("requests.request")
229
+ def test_unauthorized_error(self, mock_request):
230
+ """Test handling of 401 Unauthorized errors."""
231
+ # Set up the mock response with 401 status
232
+ mock_response = MagicMock()
233
+ mock_response.status_code = 401
234
+ mock_response.content = b"Unauthorized"
235
+ mock_request.return_value = mock_response
236
+
237
+ # Call the method and check that it raises UnauthorizedException
238
+ with self.assertRaises(UnauthorizedException) as context:
239
+ self.client.get_metering_data(
240
+ "LU-METERING_POINT1",
241
+ ObisCode.ELEC_CONSUMPTION_ACTIVE,
242
+ "2023-01-01T00:00:00Z",
243
+ "2023-01-02T00:00:00Z",
244
+ )
245
+
246
+ # Check the error message
247
+ self.assertIn("API authentication failed", str(context.exception))
248
+
249
+ @patch("requests.request")
250
+ def test_forbidden_error(self, mock_request):
251
+ """Test handling of 403 Forbidden errors."""
252
+ # Set up the mock response with 403 status
253
+ mock_response = MagicMock()
254
+ mock_response.status_code = 403
255
+ mock_response.content = b"Forbidden"
256
+ mock_request.return_value = mock_response
257
+
258
+ # Call the method and check that it raises ForbiddenException
259
+ with self.assertRaises(ForbiddenException) as context:
260
+ self.client.get_metering_data(
261
+ "LU-METERING_POINT1",
262
+ ObisCode.ELEC_CONSUMPTION_ACTIVE,
263
+ "2023-01-01T00:00:00Z",
264
+ "2023-01-02T00:00:00Z",
265
+ )
266
+
267
+ # Check the error message
268
+ self.assertIn("geoblocking", str(context.exception))
269
+
223
270
  @patch("requests.request")
224
271
  def test_error_handling(self, mock_request):
225
- """Test error handling."""
272
+ """Test error handling for other HTTP errors."""
226
273
  # Set up the mock response to raise an exception
227
274
  mock_request.side_effect = requests.exceptions.HTTPError("404 Client Error")
228
275
 
@@ -235,6 +282,45 @@ class TestLenedaClient(unittest.TestCase):
235
282
  "2023-01-02T00:00:00Z",
236
283
  )
237
284
 
285
+ @patch("requests.request")
286
+ def test_test_metering_point_valid(self, mock_request):
287
+ """Test test_metering_point with a valid metering point."""
288
+ # Set up the mock response with valid data
289
+ mock_response = MagicMock()
290
+ mock_response.status_code = 200
291
+ mock_response.json.return_value = {"unit": "kWh", "aggregatedTimeSeries": []}
292
+ mock_response.content = json.dumps(mock_response.json.return_value).encode()
293
+ mock_request.return_value = mock_response
294
+
295
+ # Call the method
296
+ result = self.client.test_metering_point("LU-METERING_POINT1")
297
+
298
+ # Check the result
299
+ self.assertTrue(result)
300
+
301
+ # Check that the request was made correctly
302
+ mock_request.assert_called_once()
303
+
304
+ @patch("requests.request")
305
+ def test_test_metering_point_invalid(self, mock_request):
306
+ """Test test_metering_point with an invalid metering point."""
307
+ # Set up the mock response with null unit
308
+ mock_response = MagicMock()
309
+ mock_response.status_code = 200
310
+ mock_response.json.return_value = {"unit": None, "aggregatedTimeSeries": []}
311
+ mock_response.content = json.dumps(mock_response.json.return_value).encode()
312
+ mock_request.return_value = mock_response
313
+
314
+ # Call the method and check that it raises InvalidMeteringPointException
315
+ with self.assertRaises(InvalidMeteringPointException) as context:
316
+ self.client.test_metering_point("INVALID-METERING-POINT")
317
+
318
+ # Check the error message
319
+ self.assertIn("INVALID-METERING-POINT", str(context.exception))
320
+
321
+ # Check that the request was made correctly
322
+ mock_request.assert_called_once()
323
+
238
324
 
239
325
  if __name__ == "__main__":
240
326
  unittest.main()
@@ -1,21 +0,0 @@
1
- # Leneda API Client
2
-
3
- [![PyPI version]](https://pypi.org/project/leneda-client/)
4
- [![Python versions]](https://pypi.org/project/leneda-client/)
5
- [![License]](https://github.com/fedus/leneda-client/blob/main/LICENSE)
6
-
7
- A Python client for interacting with the Leneda energy data platform API.
8
-
9
- ## Overview
10
-
11
- This client provides a simple interface to the Leneda API, which allows users to:
12
-
13
- - Retrieve metering data for specific time ranges
14
- - Get aggregated metering data (hourly, daily, weekly, monthly, or total)
15
- - Create metering data access requests
16
- - Use predefined OBIS code constants for easy reference
17
-
18
- ## Installation
19
-
20
- ```bash
21
- pip install leneda-client
File without changes
File without changes
File without changes