nmcli 1.3.0__tar.gz → 1.4.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 (32) hide show
  1. {nmcli-1.3.0 → nmcli-1.4.0}/PKG-INFO +6 -1
  2. {nmcli-1.3.0 → nmcli-1.4.0}/README.md +5 -0
  3. {nmcli-1.3.0 → nmcli-1.4.0}/nmcli/data/device.py +1 -1
  4. {nmcli-1.3.0 → nmcli-1.4.0}/nmcli/data/general.py +34 -3
  5. {nmcli-1.3.0 → nmcli-1.4.0}/nmcli.egg-info/PKG-INFO +6 -1
  6. {nmcli-1.3.0 → nmcli-1.4.0}/nmcli.egg-info/SOURCES.txt +0 -1
  7. {nmcli-1.3.0 → nmcli-1.4.0}/setup.py +1 -1
  8. nmcli-1.3.0/LICENSE.txt +0 -21
  9. {nmcli-1.3.0 → nmcli-1.4.0}/nmcli/__init__.py +0 -0
  10. {nmcli-1.3.0 → nmcli-1.4.0}/nmcli/_connection.py +0 -0
  11. {nmcli-1.3.0 → nmcli-1.4.0}/nmcli/_const.py +0 -0
  12. {nmcli-1.3.0 → nmcli-1.4.0}/nmcli/_device.py +0 -0
  13. {nmcli-1.3.0 → nmcli-1.4.0}/nmcli/_exception.py +0 -0
  14. {nmcli-1.3.0 → nmcli-1.4.0}/nmcli/_general.py +0 -0
  15. {nmcli-1.3.0 → nmcli-1.4.0}/nmcli/_helper.py +0 -0
  16. {nmcli-1.3.0 → nmcli-1.4.0}/nmcli/_networking.py +0 -0
  17. {nmcli-1.3.0 → nmcli-1.4.0}/nmcli/_radio.py +0 -0
  18. {nmcli-1.3.0 → nmcli-1.4.0}/nmcli/_system.py +0 -0
  19. {nmcli-1.3.0 → nmcli-1.4.0}/nmcli/data/__init__.py +0 -0
  20. {nmcli-1.3.0 → nmcli-1.4.0}/nmcli/data/connection.py +0 -0
  21. {nmcli-1.3.0 → nmcli-1.4.0}/nmcli/data/hotspot.py +0 -0
  22. {nmcli-1.3.0 → nmcli-1.4.0}/nmcli/data/radio.py +0 -0
  23. {nmcli-1.3.0 → nmcli-1.4.0}/nmcli/dummy/__init__.py +0 -0
  24. {nmcli-1.3.0 → nmcli-1.4.0}/nmcli/dummy/_connection.py +0 -0
  25. {nmcli-1.3.0 → nmcli-1.4.0}/nmcli/dummy/_device.py +0 -0
  26. {nmcli-1.3.0 → nmcli-1.4.0}/nmcli/dummy/_general.py +0 -0
  27. {nmcli-1.3.0 → nmcli-1.4.0}/nmcli/dummy/_networking.py +0 -0
  28. {nmcli-1.3.0 → nmcli-1.4.0}/nmcli/dummy/_radio.py +0 -0
  29. {nmcli-1.3.0 → nmcli-1.4.0}/nmcli/py.typed +0 -0
  30. {nmcli-1.3.0 → nmcli-1.4.0}/nmcli.egg-info/dependency_links.txt +0 -0
  31. {nmcli-1.3.0 → nmcli-1.4.0}/nmcli.egg-info/top_level.txt +0 -0
  32. {nmcli-1.3.0 → nmcli-1.4.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: nmcli
3
- Version: 1.3.0
3
+ Version: 1.4.0
4
4
  Summary: A python wrapper library for the network-manager cli client
5
5
  Home-page: https://github.com/ushiboy/nmcli
6
6
  Author: ushiboy
@@ -466,6 +466,11 @@ Description: nmcli
466
466
 
467
467
  ## Change Log
468
468
 
469
+ ### 1.4.0
470
+
471
+ - Supported unsupported cases of `DeviceWifi.parse`.
472
+ - Fixed the problem that `nmcli.general` does not work on nmcli client after version 1.48.x.
473
+
469
474
  ### 1.3.0
470
475
 
471
476
  - Added rescan parameter to `nmcli.device.wifi`.
@@ -459,6 +459,11 @@ nmcli.set_lang(lang: str) -> None
459
459
 
460
460
  ## Change Log
461
461
 
462
+ ### 1.4.0
463
+
464
+ - Supported unsupported cases of `DeviceWifi.parse`.
465
+ - Fixed the problem that `nmcli.general` does not work on nmcli client after version 1.48.x.
466
+
462
467
  ### 1.3.0
463
468
 
464
469
  - Added rescan parameter to `nmcli.device.wifi`.
@@ -64,7 +64,7 @@ class DeviceWifi:
64
64
  t = text.replace("\\:", "\uFFFE").replace(
65
65
  ":", "\uFFFF").replace("\uFFFE", ":")
66
66
  m = re.search(
67
- r'^(\*|\s)\uFFFF(.*)\uFFFF(.*)\uFFFF(.*)\uFFFF(\d+)\uFFFF(\d+)\sMHz\uFFFF(\d+)\sMbit\/s\uFFFF(\d+)\uFFFF(.*)$', t)
67
+ r'^(\*|\s)\uFFFF(.*)\uFFFF(.*)\uFFFF(.*)\uFFFF(\d+)\uFFFF(\d+)\sMHz\uFFFF(\d+)\s(?:Mb|Mbit)\/s\uFFFF(\d+)\uFFFF(.*)$', t)
68
68
  if m:
69
69
  in_use, ssid, bssid, mode, chan, freq, rate, signal, security = m.groups()
70
70
  return DeviceWifi(in_use == '*', ssid, bssid, mode,
@@ -25,12 +25,43 @@ class General:
25
25
  'wwan': self.wwan
26
26
  }
27
27
 
28
+ # case 1:
29
+ # STATE CONNECTIVITY WIFI-HW WIFI WWAN-HW WWAN METERED
30
+ # connected full enabled enabled missing enabled no (guessed)
31
+ #
32
+ # case 2:
33
+ # unknown none enabled enabled enabled disabled
34
+ #
35
+ # case 3:
36
+ # connected (local only) full disabled enabled enabled enabled
37
+ #
38
+ # see: https://regex101.com/r/zW1hHE/1
39
+
28
40
  @classmethod
29
41
  def parse(cls, text: str) -> General:
30
- m = re.search(
31
- r'^([\S\s]+)\s{2}(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s*', text)
42
+ pattern = (
43
+ r'^'
44
+ + r'(?P<state>.+)'
45
+ + r' '
46
+ + r'(?P<connectivity>\S+)'
47
+ + r'\s+'
48
+ + r'(?P<wifi_hw>\S+)'
49
+ + r' '
50
+ + r'(?P<wifi>\S+)'
51
+ + r' '
52
+ + r'(?P<wwan_hw>\S+)'
53
+ + r' '
54
+ + r'(?P<wwan>\S+)'
55
+ + r'(?: (?P<metered>.+)?)?'
56
+ + r'$'
57
+ )
58
+
59
+ # The execution result will have a trailing space,
60
+ # so trim it and then match it to the pattern.
61
+ m = re.search(pattern, text.rstrip())
62
+
32
63
  if m:
33
- state, connectivity, wifi_hw, wifi, wwan_hw, wwan = m.groups()
64
+ state, connectivity, wifi_hw, wifi, wwan_hw, wwan, _metered = m.groups()
34
65
  return General(NetworkManagerState(state),
35
66
  NetworkConnectivity(connectivity),
36
67
  wifi_hw == 'enabled',
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: nmcli
3
- Version: 1.3.0
3
+ Version: 1.4.0
4
4
  Summary: A python wrapper library for the network-manager cli client
5
5
  Home-page: https://github.com/ushiboy/nmcli
6
6
  Author: ushiboy
@@ -466,6 +466,11 @@ Description: nmcli
466
466
 
467
467
  ## Change Log
468
468
 
469
+ ### 1.4.0
470
+
471
+ - Supported unsupported cases of `DeviceWifi.parse`.
472
+ - Fixed the problem that `nmcli.general` does not work on nmcli client after version 1.48.x.
473
+
469
474
  ### 1.3.0
470
475
 
471
476
  - Added rescan parameter to `nmcli.device.wifi`.
@@ -1,4 +1,3 @@
1
- LICENSE.txt
2
1
  README.md
3
2
  setup.py
4
3
  nmcli/__init__.py
@@ -13,7 +13,7 @@ with open('README.md', 'r') as f:
13
13
 
14
14
  setup(
15
15
  name='nmcli',
16
- version='1.3.0',
16
+ version='1.4.0',
17
17
  author='ushiboy',
18
18
  license='MIT',
19
19
  license_files = ('LICENSE.txt',),
nmcli-1.3.0/LICENSE.txt DELETED
@@ -1,21 +0,0 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2020 ushiboy
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
13
- all 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
21
- THE SOFTWARE.
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes