discotool 0.5.7__py3-none-any.whl
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.
- discotool/__init__.py +14 -0
- discotool/__main__.py +2 -0
- discotool/_version.py +24 -0
- discotool/discotool.py +712 -0
- discotool/usbinfos/__init__.py +157 -0
- discotool/usbinfos/pyserial_list_ports_osx.py +314 -0
- discotool/usbinfos/pyserial_list_ports_windows.py +464 -0
- discotool/usbinfos/usb_descriptor_win32.py +237 -0
- discotool/usbinfos/usbinfos_common.py +30 -0
- discotool/usbinfos/usbinfos_linux.py +107 -0
- discotool/usbinfos/usbinfos_macos.py +313 -0
- discotool/usbinfos/usbinfos_win32.py +139 -0
- discotool-0.5.7.dist-info/METADATA +198 -0
- discotool-0.5.7.dist-info/RECORD +18 -0
- discotool-0.5.7.dist-info/WHEEL +5 -0
- discotool-0.5.7.dist-info/entry_points.txt +2 -0
- discotool-0.5.7.dist-info/licenses/LICENSE +19 -0
- discotool-0.5.7.dist-info/top_level.txt +1 -0
discotool/__init__.py
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
from .usbinfos import (
|
|
2
|
+
get_devices_list,
|
|
3
|
+
get_identified_devices,
|
|
4
|
+
get_unidentified_ports,
|
|
5
|
+
devices_by_name,
|
|
6
|
+
devices_by_drive,
|
|
7
|
+
devices_by_serial,
|
|
8
|
+
devices_by_vidpid,
|
|
9
|
+
)
|
|
10
|
+
|
|
11
|
+
try:
|
|
12
|
+
from ._version import version as __version__
|
|
13
|
+
except:
|
|
14
|
+
__version__ = "0.0.0-auto.0"
|
discotool/__main__.py
ADDED
discotool/_version.py
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# file generated by vcs-versioning
|
|
2
|
+
# don't change, don't track in version control
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
__all__ = [
|
|
6
|
+
"__version__",
|
|
7
|
+
"__version_tuple__",
|
|
8
|
+
"version",
|
|
9
|
+
"version_tuple",
|
|
10
|
+
"__commit_id__",
|
|
11
|
+
"commit_id",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
version: str
|
|
15
|
+
__version__: str
|
|
16
|
+
__version_tuple__: tuple[int | str, ...]
|
|
17
|
+
version_tuple: tuple[int | str, ...]
|
|
18
|
+
commit_id: str | None
|
|
19
|
+
__commit_id__: str | None
|
|
20
|
+
|
|
21
|
+
__version__ = version = '0.5.7'
|
|
22
|
+
__version_tuple__ = version_tuple = (0, 5, 7)
|
|
23
|
+
|
|
24
|
+
__commit_id__ = commit_id = None
|