pymobiledevice3 7.0.5__py3-none-any.whl → 7.0.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.
- pymobiledevice3/_version.py +2 -2
- pymobiledevice3/cli/cli_common.py +1 -3
- pymobiledevice3/cli/usbmux.py +5 -3
- {pymobiledevice3-7.0.5.dist-info → pymobiledevice3-7.0.7.dist-info}/METADATA +1 -1
- {pymobiledevice3-7.0.5.dist-info → pymobiledevice3-7.0.7.dist-info}/RECORD +9 -9
- {pymobiledevice3-7.0.5.dist-info → pymobiledevice3-7.0.7.dist-info}/WHEEL +0 -0
- {pymobiledevice3-7.0.5.dist-info → pymobiledevice3-7.0.7.dist-info}/entry_points.txt +0 -0
- {pymobiledevice3-7.0.5.dist-info → pymobiledevice3-7.0.7.dist-info}/licenses/LICENSE +0 -0
- {pymobiledevice3-7.0.5.dist-info → pymobiledevice3-7.0.7.dist-info}/top_level.txt +0 -0
pymobiledevice3/_version.py
CHANGED
|
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
|
28
28
|
commit_id: COMMIT_ID
|
|
29
29
|
__commit_id__: COMMIT_ID
|
|
30
30
|
|
|
31
|
-
__version__ = version = '7.0.
|
|
32
|
-
__version_tuple__ = version_tuple = (7, 0,
|
|
31
|
+
__version__ = version = '7.0.7'
|
|
32
|
+
__version_tuple__ = version_tuple = (7, 0, 7)
|
|
33
33
|
|
|
34
34
|
__commit_id__ = commit_id = None
|
|
@@ -206,7 +206,6 @@ def any_service_provider_dependency(
|
|
|
206
206
|
mobdev2: Annotated[
|
|
207
207
|
bool,
|
|
208
208
|
typer.Option(
|
|
209
|
-
expose_value=False,
|
|
210
209
|
help="Discover devices over bonjour/mobdev2 instead of usbmux.",
|
|
211
210
|
rich_help_panel=DEVICE_OPTIONS_PANEL_TITLE,
|
|
212
211
|
),
|
|
@@ -215,7 +214,6 @@ def any_service_provider_dependency(
|
|
|
215
214
|
Optional[str],
|
|
216
215
|
typer.Option(
|
|
217
216
|
envvar=USBMUX_ENV_VAR,
|
|
218
|
-
expose_value=False,
|
|
219
217
|
help=USBMUX_OPTION_HELP,
|
|
220
218
|
rich_help_panel=DEVICE_OPTIONS_PANEL_TITLE,
|
|
221
219
|
),
|
|
@@ -247,7 +245,7 @@ def any_service_provider_dependency(
|
|
|
247
245
|
return prompt_device_list(devices)
|
|
248
246
|
|
|
249
247
|
if udid is not None:
|
|
250
|
-
return create_using_usbmux(serial=udid)
|
|
248
|
+
return create_using_usbmux(serial=udid, usbmux_address=usbmux)
|
|
251
249
|
|
|
252
250
|
devices = select_devices_by_connection_type(connection_type="USB", usbmux_address=usbmux)
|
|
253
251
|
if len(devices) <= 1:
|
pymobiledevice3/cli/usbmux.py
CHANGED
|
@@ -6,7 +6,7 @@ import typer
|
|
|
6
6
|
from typer_injector import InjectingTyper
|
|
7
7
|
|
|
8
8
|
from pymobiledevice3 import usbmux
|
|
9
|
-
from pymobiledevice3.cli.cli_common import USBMUX_OPTION_HELP, print_json
|
|
9
|
+
from pymobiledevice3.cli.cli_common import USBMUX_ENV_VAR, USBMUX_OPTION_HELP, print_json
|
|
10
10
|
from pymobiledevice3.lockdown import create_using_usbmux
|
|
11
11
|
from pymobiledevice3.tcp_forwarder import UsbmuxTcpForwarder
|
|
12
12
|
|
|
@@ -35,13 +35,14 @@ def usbmux_forward(
|
|
|
35
35
|
Optional[str],
|
|
36
36
|
typer.Option(
|
|
37
37
|
"--usbmux",
|
|
38
|
+
envvar=USBMUX_ENV_VAR,
|
|
38
39
|
help=USBMUX_OPTION_HELP,
|
|
39
40
|
),
|
|
40
41
|
] = None,
|
|
41
42
|
serial: Annotated[
|
|
42
|
-
str,
|
|
43
|
+
Optional[str],
|
|
43
44
|
typer.Option(help="Device serial/UDID to forward traffic to."),
|
|
44
|
-
],
|
|
45
|
+
] = None,
|
|
45
46
|
daemonize: Annotated[
|
|
46
47
|
bool,
|
|
47
48
|
typer.Option("--daemonize", "-d", help="Run the forwarder in the background."),
|
|
@@ -69,6 +70,7 @@ def usbmux_list(
|
|
|
69
70
|
Optional[str],
|
|
70
71
|
typer.Option(
|
|
71
72
|
"--usbmux",
|
|
73
|
+
envvar=USBMUX_ENV_VAR,
|
|
72
74
|
help=USBMUX_OPTION_HELP,
|
|
73
75
|
),
|
|
74
76
|
] = None,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pymobiledevice3
|
|
3
|
-
Version: 7.0.
|
|
3
|
+
Version: 7.0.7
|
|
4
4
|
Summary: Pure python3 implementation for working with iDevices (iPhone, etc...)
|
|
5
5
|
Author-email: doronz88 <doron88@gmail.com>, matan <matan1008@gmail.com>
|
|
6
6
|
Maintainer-email: doronz88 <doron88@gmail.com>, matan <matan1008@gmail.com>
|
|
@@ -8,7 +8,7 @@ misc/understanding_idevice_protocol_layers.md,sha256=FMJQ-ik2j9kFLPS15JzDZg62uk1
|
|
|
8
8
|
misc/usbmux_sniff.sh,sha256=iWtbucOEQ9_UEFXk9x-2VNt48Jg5zrPsnUbZ_LfZxwA,212
|
|
9
9
|
pymobiledevice3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
10
|
pymobiledevice3/__main__.py,sha256=Ogsyro4MUVVSciEtg8kZufL81AHcjuphItnaL0BT10Q,16386
|
|
11
|
-
pymobiledevice3/_version.py,sha256=
|
|
11
|
+
pymobiledevice3/_version.py,sha256=0c2yrCNjkahQT4hAahQeRLH51KQrBSwCjA0jYBtvoiI,704
|
|
12
12
|
pymobiledevice3/bonjour.py,sha256=lmx3uCaiolF59AieftmTKqktNod5ZDyJ06oRZdYKHSE,13681
|
|
13
13
|
pymobiledevice3/ca.py,sha256=5_Y4F-zDFX_KeDL-M_TRCKKyrRRb9h1lBE8MGTWv91o,10606
|
|
14
14
|
pymobiledevice3/common.py,sha256=FZzF0BQYV5fCEUPbLo6jbt2Ig9s5YwR8AvX_iR124Ew,329
|
|
@@ -29,7 +29,7 @@ pymobiledevice3/cli/amfi.py,sha256=3cpKYYNuyT58ojggsiI3LoBVhbOEvOOncabSK_w3J1c,9
|
|
|
29
29
|
pymobiledevice3/cli/apps.py,sha256=rieU0xT9y8mdzwkXXif3OIJaxMnDv6rdEUFVFc-ljkk,3518
|
|
30
30
|
pymobiledevice3/cli/backup.py,sha256=Qt-iUARMtdMeFujawN1kpxC39u2q3IKocUDkpCrTFYM,6814
|
|
31
31
|
pymobiledevice3/cli/bonjour.py,sha256=UMPJU1oOu6pnvhM0MKInlXkag70Z9D-wUzLhFWc8WYs,2837
|
|
32
|
-
pymobiledevice3/cli/cli_common.py,sha256=
|
|
32
|
+
pymobiledevice3/cli/cli_common.py,sha256=FZJtZgnMZcCg2X2daJBvqOgbhiGbcG5aDFQ_pf59Ugo,9841
|
|
33
33
|
pymobiledevice3/cli/companion_proxy.py,sha256=Zp1PJKE36mNs2lbnmwevDoVC7jTX5FSuQApTcmvEhJg,611
|
|
34
34
|
pymobiledevice3/cli/crash.py,sha256=wss34L3at8qwL_z5ExGabofBbQ99cP_CGJJm8vuF36g,3506
|
|
35
35
|
pymobiledevice3/cli/idam.py,sha256=a_xnURhQlmfnrTGY5KwOIbl9f-1rAjuGG-q6QfOfSE4,1105
|
|
@@ -45,7 +45,7 @@ pymobiledevice3/cli/remote.py,sha256=tjoMjjUg32SPaIdZbwtu2Frno5Ly9is3p_E6FyjWxUU
|
|
|
45
45
|
pymobiledevice3/cli/restore.py,sha256=j1T9-eZi2AsvQqJ0EKpXuaWPuttoVUPy0xbYYfH6B_s,7485
|
|
46
46
|
pymobiledevice3/cli/springboard.py,sha256=S76Kth2DbqsjGRFVOns40-L4RCqFnuMFuy7bVHbmw9M,3111
|
|
47
47
|
pymobiledevice3/cli/syslog.py,sha256=tqQLecHGcb0v_3Lq54XyEDojdxJSFpvMnQ8B7P_lU58,8945
|
|
48
|
-
pymobiledevice3/cli/usbmux.py,sha256=
|
|
48
|
+
pymobiledevice3/cli/usbmux.py,sha256=1YopbLDgp34x3EfGM889H6UWch412hVWkDJp8OXdvb4,3009
|
|
49
49
|
pymobiledevice3/cli/version.py,sha256=59NxyLVJWcqNpoKo-XTc5RYGmweuJUmKgKnLwaLzD5o,326
|
|
50
50
|
pymobiledevice3/cli/webinspector.py,sha256=grfwKDAQ1oh7WA_VWCM6qGQzo8osIOY2PjpYXJ1hzCs,17946
|
|
51
51
|
pymobiledevice3/cli/developer/__init__.py,sha256=idQOgVsitt3nfolyhZuA6KHN2j44JNVq-d41I6ychpY,2015
|
|
@@ -180,9 +180,9 @@ pymobiledevice3/services/web_protocol/switch_to.py,sha256=TCdVrMfsvd18o-vZ0owVrE
|
|
|
180
180
|
pymobiledevice3/tunneld/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
181
181
|
pymobiledevice3/tunneld/api.py,sha256=Lwl1OdhPTgX6Zqezy8T4dEcXRfaEPwyGNClioTx3fUc,2338
|
|
182
182
|
pymobiledevice3/tunneld/server.py,sha256=dMEZAv_X-76l0vSalpq4x0IVkbE-MNGR77T-u1TiHuE,25752
|
|
183
|
-
pymobiledevice3-7.0.
|
|
184
|
-
pymobiledevice3-7.0.
|
|
185
|
-
pymobiledevice3-7.0.
|
|
186
|
-
pymobiledevice3-7.0.
|
|
187
|
-
pymobiledevice3-7.0.
|
|
188
|
-
pymobiledevice3-7.0.
|
|
183
|
+
pymobiledevice3-7.0.7.dist-info/licenses/LICENSE,sha256=jOtLnuWt7d5Hsx6XXB2QxzrSe2sWWh3NgMfFRetluQM,35147
|
|
184
|
+
pymobiledevice3-7.0.7.dist-info/METADATA,sha256=vRzzMNV_Ahuu1AO2zkZFm2oZRI2MpNBaxUirarK3dd8,17500
|
|
185
|
+
pymobiledevice3-7.0.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
186
|
+
pymobiledevice3-7.0.7.dist-info/entry_points.txt,sha256=jJMlOanHlVwUxcY__JwvKeWPrvBJr_wJyEq4oHIZNKE,66
|
|
187
|
+
pymobiledevice3-7.0.7.dist-info/top_level.txt,sha256=MjZoRqcWPOh5banG-BbDOnKEfsS3kCxqV9cv-nzyg2Q,21
|
|
188
|
+
pymobiledevice3-7.0.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|