qlsdk2 0.1.1__py3-none-any.whl → 0.1.3__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.
qlsdk/ar4m/ar4sdk.py CHANGED
@@ -8,10 +8,13 @@ from ctypes import (
8
8
  )
9
9
  from loguru import logger
10
10
  from time import sleep, time
11
+ import os
11
12
 
13
+ real_path = os.path.realpath(__file__)
14
+ dll_path = f'{real_path}/libs/libAr4SDK.dll'
12
15
  # 加载 DLL
13
16
  if platform.system() == 'Windows':
14
- _dll = ctypes.CDLL('./libs/libAr4SDK.dll')
17
+ _dll = ctypes.CDLL(dll_path)
15
18
  else:
16
19
  raise NotImplementedError(f"不支持非Windows平台:{platform.system()}")
17
20
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: qlsdk2
3
- Version: 0.1.1
3
+ Version: 0.1.3
4
4
  Summary: SDK for quanlan device
5
5
  Home-page: https://github.com/hehuajun/qlsdk
6
6
  Author: hehuajun
@@ -1,9 +1,9 @@
1
1
  qlsdk/__init__.py,sha256=pHMMwFiz7AGYlWvxo-81Obd7gIkojhLAEUGe0yuiAJI,372
2
2
  qlsdk/ar4m/__init__.py,sha256=-vJiKDRJZKvl3cefwsdtRRYobvpuwdLuMhc669pmZvo,142
3
3
  qlsdk/ar4m/ar4m.py,sha256=AOYvvo04dD0W4EMrKDCx63pUzwL1f_CVcM_N4rebhQc,1524
4
- qlsdk/ar4m/ar4sdk.py,sha256=N79P-92qjxPvLN4iYjxQIz-Fe18YP6bGLsXLbDY4eIg,13933
4
+ qlsdk/ar4m/ar4sdk.py,sha256=A0-YRC_TAjw7b15mNa9UFwtsp8xMIxCv9WQKgGtb6ZY,14017
5
5
  qlsdk/ar4m/example.py,sha256=cm0HeRb53roKw5HYZ4uqnDZ6suaSUdqOW_hCTcGY8lo,1501
6
- qlsdk2-0.1.1.dist-info/METADATA,sha256=spNt9cIz7Cm6zZ-9gndQ78ZCAc9Xbm0-d8b7oT4dNYM,7001
7
- qlsdk2-0.1.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
8
- qlsdk2-0.1.1.dist-info/top_level.txt,sha256=2CHzn0SY-NIBVyBl07Suh-Eo8oBAQfyNPtqQ_aDatBg,6
9
- qlsdk2-0.1.1.dist-info/RECORD,,
6
+ qlsdk2-0.1.3.dist-info/METADATA,sha256=jCflXcT5e7_L1M2OPH0wGdVh_oOhzDvKvEMQzj9iGIo,7001
7
+ qlsdk2-0.1.3.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
8
+ qlsdk2-0.1.3.dist-info/top_level.txt,sha256=2CHzn0SY-NIBVyBl07Suh-Eo8oBAQfyNPtqQ_aDatBg,6
9
+ qlsdk2-0.1.3.dist-info/RECORD,,
File without changes