pymobiledevice3 7.3.4__py3-none-any.whl → 7.3.6__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.
@@ -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.3.4'
32
- __version_tuple__ = version_tuple = (7, 3, 4)
31
+ __version__ = version = '7.3.6'
32
+ __version_tuple__ = version_tuple = (7, 3, 6)
33
33
 
34
34
  __commit_id__ = commit_id = None
@@ -17,7 +17,6 @@ from pymobiledevice3.services.heartbeat import HeartbeatService
17
17
 
18
18
  logger = logging.getLogger(__name__)
19
19
 
20
-
21
20
  cli = InjectingTyper(
22
21
  name="lockdown",
23
22
  help="Pair/Unpair device or access other lockdown services",
@@ -118,7 +117,9 @@ def lockdown_heartbeat(service_provider: ServiceProviderDep) -> None:
118
117
 
119
118
 
120
119
  @cli.command("language")
121
- def lockdown_language(service_provider: ServiceProviderDep, language: Optional[str] = None) -> None:
120
+ def lockdown_language(
121
+ service_provider: ServiceProviderDep, language: Annotated[Optional[str], typer.Argument()] = None
122
+ ) -> None:
122
123
  """Get/Set current language settings"""
123
124
  if language is not None:
124
125
  service_provider.set_language(language)
@@ -126,7 +127,9 @@ def lockdown_language(service_provider: ServiceProviderDep, language: Optional[s
126
127
 
127
128
 
128
129
  @cli.command("locale")
129
- def lockdown_locale(service_provider: ServiceProviderDep, locale: Optional[str] = None) -> None:
130
+ def lockdown_locale(
131
+ service_provider: ServiceProviderDep, locale: Annotated[Optional[str], typer.Argument()] = None
132
+ ) -> None:
130
133
  """Get/Set current language settings"""
131
134
  if locale is not None:
132
135
  service_provider.set_locale(locale)
@@ -258,6 +258,7 @@ def cli_syslog_live(
258
258
  include_label,
259
259
  regex or [],
260
260
  insensitive_regex or [],
261
+ image_offset,
261
262
  )
262
263
 
263
264
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pymobiledevice3
3
- Version: 7.3.4
3
+ Version: 7.3.6
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=ECmb7EIqKtxIAdilWuKMqHkX7jpx0QiVAV0GGt2bCKo,704
11
+ pymobiledevice3/_version.py,sha256=fDXUjgET34J6oUFQOEWzLJzhz61q92Rm06CPfYUj3Ks,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
@@ -33,7 +33,7 @@ pymobiledevice3/cli/cli_common.py,sha256=FZJtZgnMZcCg2X2daJBvqOgbhiGbcG5aDFQ_pf5
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
36
- pymobiledevice3/cli/lockdown.py,sha256=p5bYYwR2HnXEU2jjotuYt3gSUVoVfzV9kBNTZr9eioU,6428
36
+ pymobiledevice3/cli/lockdown.py,sha256=IMOuPVq5OMt-_GaleDM7eXnljw6KIyVvt1yA9Twz7ro,6497
37
37
  pymobiledevice3/cli/mounter.py,sha256=wKFyn2liZspAVu7GWAfJiA_CyTLmDFeN9mg9YISMK_M,7930
38
38
  pymobiledevice3/cli/notification.py,sha256=rHC8z1RFpQpQAnsbqGC2ozqFjzvJ98FXw2WdAPJE0sw,2143
39
39
  pymobiledevice3/cli/pcap.py,sha256=50_jpjxC5GRJeD3PnrVnp5CkJhw1ZOM-LKxwsotif1E,2431
@@ -44,7 +44,7 @@ pymobiledevice3/cli/provision.py,sha256=tlJ2n7GdCdDMK5kLguo9Zp7l81PcIdzlS8efYylx
44
44
  pymobiledevice3/cli/remote.py,sha256=tjoMjjUg32SPaIdZbwtu2Frno5Ly9is3p_E6FyjWxUU,12711
45
45
  pymobiledevice3/cli/restore.py,sha256=j1T9-eZi2AsvQqJ0EKpXuaWPuttoVUPy0xbYYfH6B_s,7485
46
46
  pymobiledevice3/cli/springboard.py,sha256=S76Kth2DbqsjGRFVOns40-L4RCqFnuMFuy7bVHbmw9M,3111
47
- pymobiledevice3/cli/syslog.py,sha256=tqQLecHGcb0v_3Lq54XyEDojdxJSFpvMnQ8B7P_lU58,8945
47
+ pymobiledevice3/cli/syslog.py,sha256=dKM0hzd4WQF5Y-ReLtoq6ehiBB-BazQEReKYhn3y38M,8971
48
48
  pymobiledevice3/cli/usbmux.py,sha256=TTzVTftgipOS4ulHH9dfj7AG_GYZgKh8stl_4UXGS6o,3193
49
49
  pymobiledevice3/cli/version.py,sha256=59NxyLVJWcqNpoKo-XTc5RYGmweuJUmKgKnLwaLzD5o,326
50
50
  pymobiledevice3/cli/webinspector.py,sha256=grfwKDAQ1oh7WA_VWCM6qGQzo8osIOY2PjpYXJ1hzCs,17946
@@ -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=Nv_qT7Mj4xD08WzpslM0ossE_zej26qPWgGZcEfyLfc,26371
183
- pymobiledevice3-7.3.4.dist-info/licenses/LICENSE,sha256=jOtLnuWt7d5Hsx6XXB2QxzrSe2sWWh3NgMfFRetluQM,35147
184
- pymobiledevice3-7.3.4.dist-info/METADATA,sha256=vRoAEWKmDd8WoA7Uv-QxRIMJASCLo5OmmupGhF4Saw4,17500
185
- pymobiledevice3-7.3.4.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
186
- pymobiledevice3-7.3.4.dist-info/entry_points.txt,sha256=jJMlOanHlVwUxcY__JwvKeWPrvBJr_wJyEq4oHIZNKE,66
187
- pymobiledevice3-7.3.4.dist-info/top_level.txt,sha256=MjZoRqcWPOh5banG-BbDOnKEfsS3kCxqV9cv-nzyg2Q,21
188
- pymobiledevice3-7.3.4.dist-info/RECORD,,
183
+ pymobiledevice3-7.3.6.dist-info/licenses/LICENSE,sha256=jOtLnuWt7d5Hsx6XXB2QxzrSe2sWWh3NgMfFRetluQM,35147
184
+ pymobiledevice3-7.3.6.dist-info/METADATA,sha256=m_lfZNDELrFlWTyRNgRy7cefjLKTwj8RV5f0-AzqRNc,17500
185
+ pymobiledevice3-7.3.6.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
186
+ pymobiledevice3-7.3.6.dist-info/entry_points.txt,sha256=jJMlOanHlVwUxcY__JwvKeWPrvBJr_wJyEq4oHIZNKE,66
187
+ pymobiledevice3-7.3.6.dist-info/top_level.txt,sha256=MjZoRqcWPOh5banG-BbDOnKEfsS3kCxqV9cv-nzyg2Q,21
188
+ pymobiledevice3-7.3.6.dist-info/RECORD,,