uiautodev 0.7.1__tar.gz → 0.7.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.
Potentially problematic release.
This version of uiautodev might be problematic. Click here for more details.
- {uiautodev-0.7.1 → uiautodev-0.7.2}/PKG-INFO +8 -7
- {uiautodev-0.7.1 → uiautodev-0.7.2}/pyproject.toml +11 -10
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/__init__.py +1 -1
- {uiautodev-0.7.1 → uiautodev-0.7.2}/LICENSE +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/README.md +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/__main__.py +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/app.py +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/appium_proxy.py +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/binaries/scrcpy_server.jar +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/case.py +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/cli.py +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/command_proxy.py +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/command_types.py +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/common.py +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/driver/android.py +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/driver/appium.py +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/driver/base_driver.py +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/driver/harmony.py +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/driver/ios.py +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/driver/mock.py +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/driver/testdata/layout.json +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/driver/udt/appium-uiautomator2-v5.12.4-light.apk +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/driver/udt/udt.py +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/exceptions.py +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/model.py +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/provider.py +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/remote/android_input.py +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/remote/keycode.py +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/remote/scrcpy.py +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/remote/touch_controller.py +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/router/device.py +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/router/xml.py +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/static/demo.html +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/utils/common.py +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/utils/envutils.py +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/utils/exceptions.py +0 -0
- {uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/utils/usbmux.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: uiautodev
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.2
|
|
4
4
|
Summary: Mobile UI Automation, include UI hierarchy inspector, script recorder
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: codeskyblue
|
|
@@ -14,19 +14,20 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.11
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.12
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.13
|
|
17
|
+
Requires-Dist: Pillow
|
|
17
18
|
Requires-Dist: adbutils (>=2.8.10,<3)
|
|
18
19
|
Requires-Dist: click (>=8.1.7,<9.0.0)
|
|
19
20
|
Requires-Dist: construct
|
|
20
|
-
Requires-Dist: fastapi (
|
|
21
|
+
Requires-Dist: fastapi (==0.115.12)
|
|
21
22
|
Requires-Dist: httpx
|
|
22
23
|
Requires-Dist: lxml
|
|
23
|
-
Requires-Dist: pillow
|
|
24
|
-
Requires-Dist: poetry (>=1.8.2,<2.0.0)
|
|
25
24
|
Requires-Dist: pydantic (>=2.6,<3.0)
|
|
26
25
|
Requires-Dist: pygments (>=2)
|
|
27
|
-
Requires-Dist:
|
|
28
|
-
Requires-Dist:
|
|
29
|
-
Requires-Dist:
|
|
26
|
+
Requires-Dist: python-multipart (>=0.0.18)
|
|
27
|
+
Requires-Dist: rich
|
|
28
|
+
Requires-Dist: uiautomator2 (>=3.2.0,<4)
|
|
29
|
+
Requires-Dist: uvicorn (>=0.33.0)
|
|
30
|
+
Requires-Dist: wdapy (>0.2.2,<1)
|
|
30
31
|
Requires-Dist: websockets (>=10.4)
|
|
31
32
|
Project-URL: Homepage, https://uiauto.dev
|
|
32
33
|
Description-Content-Type: text/markdown
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "uiautodev"
|
|
3
|
-
version = "0.7.
|
|
3
|
+
version = "0.7.2"
|
|
4
4
|
description = "Mobile UI Automation, include UI hierarchy inspector, script recorder"
|
|
5
5
|
homepage = "https://uiauto.dev"
|
|
6
6
|
authors = ["codeskyblue <codeskyblue@gmail.com>"]
|
|
@@ -13,20 +13,21 @@ include = [
|
|
|
13
13
|
|
|
14
14
|
[tool.poetry.dependencies]
|
|
15
15
|
python = "^3.8"
|
|
16
|
-
pillow = "*"
|
|
17
16
|
adbutils = ">=2.8.10,<3"
|
|
18
|
-
construct = "*"
|
|
19
|
-
lxml = "*"
|
|
20
17
|
click = "^8.1.7"
|
|
21
18
|
pygments = ">=2"
|
|
22
|
-
uiautomator2 = ">=2"
|
|
23
|
-
|
|
24
|
-
fastapi = "^0.111.0"
|
|
25
|
-
poetry = "^1.8.2"
|
|
19
|
+
uiautomator2 = ">=3.2.0,<4"
|
|
20
|
+
fastapi = "0.115.12"
|
|
26
21
|
pydantic = "^2.6"
|
|
27
|
-
wdapy = "
|
|
28
|
-
uvicorn = "*"
|
|
22
|
+
wdapy = ">0.2.2,<1"
|
|
29
23
|
websockets = ">=10.4"
|
|
24
|
+
Pillow = "*"
|
|
25
|
+
construct = "*"
|
|
26
|
+
lxml = "*"
|
|
27
|
+
httpx = "*"
|
|
28
|
+
uvicorn = ">=0.33.0"
|
|
29
|
+
rich = "*"
|
|
30
|
+
python-multipart = ">=0.0.18"
|
|
30
31
|
|
|
31
32
|
[tool.poetry.scripts]
|
|
32
33
|
"uiauto.dev" = "uiautodev.__main__:main"
|
|
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
|
{uiautodev-0.7.1 → uiautodev-0.7.2}/uiautodev/driver/udt/appium-uiautomator2-v5.12.4-light.apk
RENAMED
|
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
|