pymobiledevice3 5.0.0__py3-none-any.whl → 5.0.2__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.

Potentially problematic release.


This version of pymobiledevice3 might be problematic. Click here for more details.

Files changed (143) hide show
  1. misc/plist_sniffer.py +15 -15
  2. misc/remotexpc_sniffer.py +29 -28
  3. pymobiledevice3/__main__.py +128 -102
  4. pymobiledevice3/_version.py +2 -2
  5. pymobiledevice3/bonjour.py +26 -49
  6. pymobiledevice3/ca.py +32 -24
  7. pymobiledevice3/cli/activation.py +7 -7
  8. pymobiledevice3/cli/afc.py +19 -19
  9. pymobiledevice3/cli/amfi.py +4 -4
  10. pymobiledevice3/cli/apps.py +51 -39
  11. pymobiledevice3/cli/backup.py +58 -32
  12. pymobiledevice3/cli/bonjour.py +25 -18
  13. pymobiledevice3/cli/cli_common.py +112 -81
  14. pymobiledevice3/cli/companion_proxy.py +4 -4
  15. pymobiledevice3/cli/completions.py +10 -10
  16. pymobiledevice3/cli/crash.py +37 -31
  17. pymobiledevice3/cli/developer.py +602 -520
  18. pymobiledevice3/cli/diagnostics.py +38 -33
  19. pymobiledevice3/cli/lockdown.py +79 -74
  20. pymobiledevice3/cli/mounter.py +85 -68
  21. pymobiledevice3/cli/notification.py +10 -10
  22. pymobiledevice3/cli/pcap.py +19 -14
  23. pymobiledevice3/cli/power_assertion.py +12 -10
  24. pymobiledevice3/cli/processes.py +10 -10
  25. pymobiledevice3/cli/profile.py +88 -77
  26. pymobiledevice3/cli/provision.py +17 -17
  27. pymobiledevice3/cli/remote.py +186 -110
  28. pymobiledevice3/cli/restore.py +43 -40
  29. pymobiledevice3/cli/springboard.py +30 -28
  30. pymobiledevice3/cli/syslog.py +85 -58
  31. pymobiledevice3/cli/usbmux.py +21 -20
  32. pymobiledevice3/cli/version.py +3 -2
  33. pymobiledevice3/cli/webinspector.py +157 -79
  34. pymobiledevice3/common.py +1 -1
  35. pymobiledevice3/exceptions.py +154 -60
  36. pymobiledevice3/irecv.py +49 -53
  37. pymobiledevice3/irecv_devices.py +1489 -492
  38. pymobiledevice3/lockdown.py +394 -241
  39. pymobiledevice3/lockdown_service_provider.py +5 -7
  40. pymobiledevice3/osu/os_utils.py +18 -9
  41. pymobiledevice3/osu/posix_util.py +28 -15
  42. pymobiledevice3/osu/win_util.py +14 -8
  43. pymobiledevice3/pair_records.py +19 -19
  44. pymobiledevice3/remote/common.py +4 -4
  45. pymobiledevice3/remote/core_device/app_service.py +94 -67
  46. pymobiledevice3/remote/core_device/core_device_service.py +17 -14
  47. pymobiledevice3/remote/core_device/device_info.py +5 -5
  48. pymobiledevice3/remote/core_device/diagnostics_service.py +10 -8
  49. pymobiledevice3/remote/core_device/file_service.py +47 -33
  50. pymobiledevice3/remote/remote_service_discovery.py +53 -35
  51. pymobiledevice3/remote/remotexpc.py +62 -41
  52. pymobiledevice3/remote/tunnel_service.py +371 -293
  53. pymobiledevice3/remote/utils.py +12 -11
  54. pymobiledevice3/remote/xpc_message.py +145 -125
  55. pymobiledevice3/resources/dsc_uuid_map.py +19 -19
  56. pymobiledevice3/resources/firmware_notifications.py +16 -16
  57. pymobiledevice3/restore/asr.py +27 -27
  58. pymobiledevice3/restore/base_restore.py +90 -47
  59. pymobiledevice3/restore/consts.py +87 -66
  60. pymobiledevice3/restore/device.py +11 -11
  61. pymobiledevice3/restore/fdr.py +46 -46
  62. pymobiledevice3/restore/ftab.py +19 -19
  63. pymobiledevice3/restore/img4.py +130 -133
  64. pymobiledevice3/restore/mbn.py +35 -54
  65. pymobiledevice3/restore/recovery.py +125 -135
  66. pymobiledevice3/restore/restore.py +524 -523
  67. pymobiledevice3/restore/restore_options.py +122 -115
  68. pymobiledevice3/restore/restored_client.py +25 -22
  69. pymobiledevice3/restore/tss.py +378 -270
  70. pymobiledevice3/service_connection.py +50 -46
  71. pymobiledevice3/services/accessibilityaudit.py +136 -126
  72. pymobiledevice3/services/afc.py +350 -291
  73. pymobiledevice3/services/amfi.py +21 -18
  74. pymobiledevice3/services/companion.py +23 -19
  75. pymobiledevice3/services/crash_reports.py +60 -46
  76. pymobiledevice3/services/debugserver_applist.py +3 -3
  77. pymobiledevice3/services/device_arbitration.py +8 -8
  78. pymobiledevice3/services/device_link.py +55 -47
  79. pymobiledevice3/services/diagnostics.py +971 -968
  80. pymobiledevice3/services/dtfetchsymbols.py +8 -8
  81. pymobiledevice3/services/dvt/dvt_secure_socket_proxy.py +4 -4
  82. pymobiledevice3/services/dvt/dvt_testmanaged_proxy.py +4 -4
  83. pymobiledevice3/services/dvt/instruments/activity_trace_tap.py +85 -74
  84. pymobiledevice3/services/dvt/instruments/application_listing.py +2 -3
  85. pymobiledevice3/services/dvt/instruments/condition_inducer.py +7 -6
  86. pymobiledevice3/services/dvt/instruments/core_profile_session_tap.py +466 -384
  87. pymobiledevice3/services/dvt/instruments/device_info.py +11 -11
  88. pymobiledevice3/services/dvt/instruments/energy_monitor.py +1 -1
  89. pymobiledevice3/services/dvt/instruments/graphics.py +1 -1
  90. pymobiledevice3/services/dvt/instruments/location_simulation.py +1 -1
  91. pymobiledevice3/services/dvt/instruments/location_simulation_base.py +10 -10
  92. pymobiledevice3/services/dvt/instruments/network_monitor.py +17 -17
  93. pymobiledevice3/services/dvt/instruments/notifications.py +1 -1
  94. pymobiledevice3/services/dvt/instruments/process_control.py +25 -10
  95. pymobiledevice3/services/dvt/instruments/screenshot.py +2 -2
  96. pymobiledevice3/services/dvt/instruments/sysmontap.py +15 -15
  97. pymobiledevice3/services/dvt/testmanaged/xcuitest.py +40 -50
  98. pymobiledevice3/services/file_relay.py +10 -10
  99. pymobiledevice3/services/heartbeat.py +8 -7
  100. pymobiledevice3/services/house_arrest.py +12 -15
  101. pymobiledevice3/services/installation_proxy.py +119 -100
  102. pymobiledevice3/services/lockdown_service.py +12 -5
  103. pymobiledevice3/services/misagent.py +22 -19
  104. pymobiledevice3/services/mobile_activation.py +84 -72
  105. pymobiledevice3/services/mobile_config.py +330 -301
  106. pymobiledevice3/services/mobile_image_mounter.py +137 -116
  107. pymobiledevice3/services/mobilebackup2.py +188 -150
  108. pymobiledevice3/services/notification_proxy.py +11 -11
  109. pymobiledevice3/services/os_trace.py +69 -51
  110. pymobiledevice3/services/pcapd.py +306 -306
  111. pymobiledevice3/services/power_assertion.py +10 -9
  112. pymobiledevice3/services/preboard.py +4 -4
  113. pymobiledevice3/services/remote_fetch_symbols.py +16 -14
  114. pymobiledevice3/services/remote_server.py +176 -146
  115. pymobiledevice3/services/restore_service.py +16 -16
  116. pymobiledevice3/services/screenshot.py +13 -10
  117. pymobiledevice3/services/simulate_location.py +7 -7
  118. pymobiledevice3/services/springboard.py +15 -15
  119. pymobiledevice3/services/syslog.py +5 -5
  120. pymobiledevice3/services/web_protocol/alert.py +3 -3
  121. pymobiledevice3/services/web_protocol/automation_session.py +180 -176
  122. pymobiledevice3/services/web_protocol/cdp_screencast.py +44 -36
  123. pymobiledevice3/services/web_protocol/cdp_server.py +19 -19
  124. pymobiledevice3/services/web_protocol/cdp_target.py +411 -373
  125. pymobiledevice3/services/web_protocol/driver.py +47 -45
  126. pymobiledevice3/services/web_protocol/element.py +74 -63
  127. pymobiledevice3/services/web_protocol/inspector_session.py +106 -102
  128. pymobiledevice3/services/web_protocol/selenium_api.py +2 -2
  129. pymobiledevice3/services/web_protocol/session_protocol.py +15 -10
  130. pymobiledevice3/services/web_protocol/switch_to.py +11 -12
  131. pymobiledevice3/services/webinspector.py +127 -116
  132. pymobiledevice3/tcp_forwarder.py +35 -22
  133. pymobiledevice3/tunneld/api.py +20 -15
  134. pymobiledevice3/tunneld/server.py +212 -133
  135. pymobiledevice3/usbmux.py +183 -138
  136. pymobiledevice3/utils.py +14 -11
  137. {pymobiledevice3-5.0.0.dist-info → pymobiledevice3-5.0.2.dist-info}/METADATA +1 -1
  138. pymobiledevice3-5.0.2.dist-info/RECORD +173 -0
  139. pymobiledevice3-5.0.0.dist-info/RECORD +0 -173
  140. {pymobiledevice3-5.0.0.dist-info → pymobiledevice3-5.0.2.dist-info}/WHEEL +0 -0
  141. {pymobiledevice3-5.0.0.dist-info → pymobiledevice3-5.0.2.dist-info}/entry_points.txt +0 -0
  142. {pymobiledevice3-5.0.0.dist-info → pymobiledevice3-5.0.2.dist-info}/licenses/LICENSE +0 -0
  143. {pymobiledevice3-5.0.0.dist-info → pymobiledevice3-5.0.2.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,173 @@
1
+ misc/DTServices-14.2.txt,sha256=UKafFeQNZBlapCXHnFRSln0KU18QKT7AxI3HFq6gcds,5324
2
+ misc/DTServices-14.5.txt,sha256=gSjw6ZJDiG_Yep9XhAbMUWbEXwJ2SGeZY5uTi5kp0Go,5010
3
+ misc/RemoteXPC.md,sha256=1wfXK_LWKDi-hZlScHffAsD1ZIWjR7bNIA2B82BhW4Y,34110
4
+ misc/plist_sniffer.py,sha256=lL6jJ3bBIlj6U-AEUCijkMFyd_B0kB8x_gV2qvu_KuM,1912
5
+ misc/pyinstaller.md,sha256=-j0uoOoaSoUQSpYhLzszT3oqrgEuBz3jXXvMp2Ix0D8,933
6
+ misc/remotexpc_sniffer.py,sha256=EMhJusdbOhFHJCYF2TLtNABAnzAibIeq8hxRu4xaVhA,7979
7
+ misc/understanding_idevice_protocol_layers.md,sha256=8tEqRXWOUPoxOJLZVh7C7H9JGCh2sQ3B5UH8_AymaQc,18805
8
+ misc/usbmux_sniff.sh,sha256=iWtbucOEQ9_UEFXk9x-2VNt48Jg5zrPsnUbZ_LfZxwA,212
9
+ pymobiledevice3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ pymobiledevice3/__main__.py,sha256=kGPVqJsB9MNlZCIgSCZZq-FzM_3pQzxwSxuJ6ySLOfs,11845
11
+ pymobiledevice3/_version.py,sha256=5t_DBkfjD58HKlHSN3JdA-gmBDgeaP8hfWAFaykqHGc,704
12
+ pymobiledevice3/bonjour.py,sha256=fKlJRs7bOHZFbliXw43gbzqvds32mZORWRpV1tjeoQk,13408
13
+ pymobiledevice3/ca.py,sha256=5_Y4F-zDFX_KeDL-M_TRCKKyrRRb9h1lBE8MGTWv91o,10606
14
+ pymobiledevice3/common.py,sha256=FZzF0BQYV5fCEUPbLo6jbt2Ig9s5YwR8AvX_iR124Ew,329
15
+ pymobiledevice3/exceptions.py,sha256=gc3vPHaeSWaEQ9eY7XRsQCRabPXcCAP3Gr5wwY1eaeE,10654
16
+ pymobiledevice3/irecv.py,sha256=SacI5nfflD7p36w32Bqdyc1I-dNEqZtiY4vK_cXnaSg,10570
17
+ pymobiledevice3/irecv_devices.py,sha256=Mpp0AZYwFxqtqS9dTPdLZfxnj6UiDf8HbGGrHpsSnIA,44220
18
+ pymobiledevice3/lockdown.py,sha256=CYyOhC7Olwr0w8qoUc9O_JKqne3tzHY68jYElDwHE_g,39433
19
+ pymobiledevice3/lockdown_service_provider.py,sha256=pR5x8-qh0I9wVZi-wg3Hiy8oNG6ZcUaOeUEy2Q-p6Eg,1722
20
+ pymobiledevice3/pair_records.py,sha256=4T32UPcBuN_4e-QFzGLoDoUBg3k7hgQh72Yo3CTi18M,6001
21
+ pymobiledevice3/service_connection.py,sha256=V6gAJABjduFidl5SqIFJOy_HkCDLdJFlDOAsiniJJPc,14880
22
+ pymobiledevice3/tcp_forwarder.py,sha256=ISwtmYbNg8HeLuu2iz9Vv4AtQ9VPe_3LxZgbxGj78lU,8991
23
+ pymobiledevice3/usbmux.py,sha256=SjgbCTTV0D1jBrLLAGeuDSBlX3URR9fQuud7MMoZuPQ,16835
24
+ pymobiledevice3/utils.py,sha256=Udx6xubsWYtJU9x7R-PrlSHseY438ua9_DPvzHd3XrQ,2210
25
+ pymobiledevice3/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
+ pymobiledevice3/cli/activation.py,sha256=NT5-RXrCjqUVk14G0DxRy35BMPEI1nQ9wGxCiyaEtSk,1311
27
+ pymobiledevice3/cli/afc.py,sha256=qd1Th1Url4vWGpTohKdL7p5pS-iCsD6IAh3c4q5JeiY,2117
28
+ pymobiledevice3/cli/amfi.py,sha256=mgIXyJt3LZXGVrXm1PfUCjms3DFAi8jf4U_KyVdKry4,955
29
+ pymobiledevice3/cli/apps.py,sha256=wazlXmLNYnsLord4ZD-7w0HpBq47Hi168o_HXNk4iCs,3834
30
+ pymobiledevice3/cli/backup.py,sha256=od72Hz_A850MerrGO68EEnatYccJ4-ry6QnAxAlQZlo,6715
31
+ pymobiledevice3/cli/bonjour.py,sha256=y5WQtdJuLHJMV4jd2wwIgu72hqS_48BZqAHJyXWQ8is,2908
32
+ pymobiledevice3/cli/cli_common.py,sha256=Czm8H93QSGVI5lfE0cc9TQqgx-vqcKuZN2YJrPCQT64,13219
33
+ pymobiledevice3/cli/companion_proxy.py,sha256=MXJOYo2N6phkfIMIGajTyhiMbGly0aacNirZMaAWhBY,577
34
+ pymobiledevice3/cli/completions.py,sha256=PIB3-rQD4b1Lfgx6_cqQFls5jgWbXqijM9X8u1I-UH0,1726
35
+ pymobiledevice3/cli/crash.py,sha256=VSZP3PMBmSM3j0ivBeF6oIjj3d2EKDIno5kLcopRi_4,3177
36
+ pymobiledevice3/cli/developer.py,sha256=jCcYAhPpugwirfk8NhSy2oRys_NHGgq_uFjyzdW7IFM,60916
37
+ pymobiledevice3/cli/diagnostics.py,sha256=FvmIGup9IAPj_gGcJDzjLQkKUvGOtrEA01eXf5iio1w,3628
38
+ pymobiledevice3/cli/lockdown.py,sha256=Vl0hbgNtjD-cHpgMoH_x8zzbKUt66paHwHPzUGl_fjM,7104
39
+ pymobiledevice3/cli/mounter.py,sha256=mZmyMIlqWF_Rf9UPhe8Ofu0DxPBVXAtrInWBJzgvucw,7627
40
+ pymobiledevice3/cli/notification.py,sha256=J0sf1e17hP2bLSpzGWoVSFSKqdjvyk53SY18qB4QEQI,1954
41
+ pymobiledevice3/cli/pcap.py,sha256=fmHiy_KK-uRMcEK6nHNBKyhp5v1y05Yv_hzwe5BFBYw,2193
42
+ pymobiledevice3/cli/power_assertion.py,sha256=Z2T0tSi_sh2B1Ba2x6C7M7EMrKT3jcw42toG0WMbCqA,914
43
+ pymobiledevice3/cli/processes.py,sha256=HxPTLS520W31Ixn5CyC7tysfiBvbEutbuqTw-Dpf0nQ,1096
44
+ pymobiledevice3/cli/profile.py,sha256=gW3KT16A5xdHlW8LKPL_Xarof8SAa5HCC6Ud3vQPyGg,7817
45
+ pymobiledevice3/cli/provision.py,sha256=SofHAYdmxb54n9KSRyPKol6jOMUXN1hBACr2VBQrOFc,1955
46
+ pymobiledevice3/cli/remote.py,sha256=xkIVR4bu1Vdpw-sswH1b-pekBM6rV6AS7YUeYQU5UyY,12375
47
+ pymobiledevice3/cli/restore.py,sha256=xwiUIofoyCMxDSgRq4bndAn5GNUq1P-RcC446M_6I7Y,8085
48
+ pymobiledevice3/cli/springboard.py,sha256=hVoLqLU_gHxXa6q17ar61lc2ovmWejeu-rvxQpHXWD0,3094
49
+ pymobiledevice3/cli/syslog.py,sha256=NwUzgqUBgHsnx-nVqH9f4A9yQJbXrIoTLIoyqmKTwTc,7543
50
+ pymobiledevice3/cli/usbmux.py,sha256=Bx-5OSxEbHBhLeYaRt9LvZzp3RIazn49Q86pFi-EtpQ,2354
51
+ pymobiledevice3/cli/version.py,sha256=N7UY328WNR6FpQ2w7aACyL74XQxkRmi53WV5SVlCgCo,345
52
+ pymobiledevice3/cli/webinspector.py,sha256=HGNY4OD3LfP37IeBWdRyiHI0cY4sA2fkr1YdwIgthQI,15574
53
+ pymobiledevice3/osu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
+ pymobiledevice3/osu/os_utils.py,sha256=rlk1C7_wNsV0SviJLbzaSJAQa29hsjNxEb7GS-sxXEs,3301
55
+ pymobiledevice3/osu/posix_util.py,sha256=dFTYABFQxK2m7eXumVbfAuzrVVoV7-TduRNN0KY_axc,3450
56
+ pymobiledevice3/osu/win_util.py,sha256=SIunWObcaIrlAi6-KndsPQT0U4io6zTB_q0bRZhDNSc,2148
57
+ pymobiledevice3/remote/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
+ pymobiledevice3/remote/common.py,sha256=epLBlSCw8e8w2XvgsCuZfZYAwzHCQpBZ_S6U-_rl8oE,288
59
+ pymobiledevice3/remote/module_imports.py,sha256=DwExSL1r4kkFIWmXiQpqPo-cGl4duYd33kJGyVckYuA,829
60
+ pymobiledevice3/remote/remote_service.py,sha256=fCyzm4oT_WEorAXVHVLYnIOyTOuMGhX69Co3HkUdRYY,867
61
+ pymobiledevice3/remote/remote_service_discovery.py,sha256=BwnUhVQBrFA3wxuR_PT7JgtXtyuemJQuot0_23i-0G8,7376
62
+ pymobiledevice3/remote/remotexpc.py,sha256=F3zTO5rtmHIeJitf8AfFJRUjaFRfCzsnn6dzev0vvG8,8239
63
+ pymobiledevice3/remote/tunnel_service.py,sha256=AmqvIb-0fUT9KzJub3QcMbtHtHuBBDh4ZKHIeAmkyk8,45961
64
+ pymobiledevice3/remote/utils.py,sha256=RPyDYCLqe638FoPIJ7Lcmx05BJqM2PseJe9lc3Al3bM,2550
65
+ pymobiledevice3/remote/xpc_message.py,sha256=ZkAU5vZ3vs-MjxlwAeDZqRTQ9C2eHozesEXKrI6lRV0,8794
66
+ pymobiledevice3/remote/core_device/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
67
+ pymobiledevice3/remote/core_device/app_service.py,sha256=wEYS92D8yzF-g3WWeS487DfPuiX1EVhbs2oIZXu0sR8,5447
68
+ pymobiledevice3/remote/core_device/core_device_service.py,sha256=NV6oAC3eTKnfrJai-q_bGTgCwZNyZLuiZpgui9OHESM,1489
69
+ pymobiledevice3/remote/core_device/device_info.py,sha256=wGnjV-ioEeQ4ZH0F6DnYT9NLJPZmbvu7j2v676SLrOU,1244
70
+ pymobiledevice3/remote/core_device/diagnostics_service.py,sha256=gQwxmFvuaR3Ot0K7C0GKKC2CNuAymDzBRm_UrnPMGpI,1193
71
+ pymobiledevice3/remote/core_device/file_service.py,sha256=B04GCXpcpBcC0SdQ6DQD1QEzlenmueulnnTAGPB3Cy8,3879
72
+ pymobiledevice3/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
+ pymobiledevice3/resources/dsc_uuid_map.json,sha256=oJxU_HptLN9MS8zb2sgmn8SbKTlO0e7PosT_51ojAIY,1023280
74
+ pymobiledevice3/resources/dsc_uuid_map.py,sha256=LCBAoYb6Zhi6fVdwLy-FEc8R8w66djwkr9Fqva7EoRw,2555
75
+ pymobiledevice3/resources/firmware_notifications.py,sha256=b2-UDtpE08-ZPxpmkPM0SHz16WAuQ6DmeZoA40W_Src,1971
76
+ pymobiledevice3/resources/notifications.txt,sha256=dTyzofbVkkPK_7PLvyR17OQ-tTySEpcD7S2nYTWK9d8,36145
77
+ pymobiledevice3/resources/webinspector/element_attribute.js,sha256=-uHwL-cY0Kgjeqz7ZdNzoozPPKglCsB4MgfSXeZYsc8,192
78
+ pymobiledevice3/resources/webinspector/element_clear.js,sha256=H7SvwrqFfqYjMp83UgbA1ovgJFVyOSL0sDNOH8b-F9o,1244
79
+ pymobiledevice3/resources/webinspector/enter_fullscreen.js,sha256=wpP1tLfW5pK5W31k2OhdF1arpTNpalpkp2a9cswyxZU,1100
80
+ pymobiledevice3/resources/webinspector/find_nodes.js,sha256=nAFjMyujYB3OiQtaX1asSEBIzRCe70pSqIjF0qliqak,2689
81
+ pymobiledevice3/resources/webinspector/focus.js,sha256=qfrBrzxUEtQuLHZ22pA6nz2SB7t_8gDEHbUNlafn2no,95
82
+ pymobiledevice3/resources/webinspector/get_attribute.js,sha256=MUPV8eWDWl0dkuLSnoVDN6lUYJu0LGsjWnNuKnmZEdY,42234
83
+ pymobiledevice3/resources/webinspector/is_displayed.js,sha256=X_vwJ7sDm4EqqxmnrPROvDTIm7GfreCiXpcKQllToAM,43072
84
+ pymobiledevice3/resources/webinspector/is_editable.js,sha256=H7SvwrqFfqYjMp83UgbA1ovgJFVyOSL0sDNOH8b-F9o,1244
85
+ pymobiledevice3/resources/webinspector/is_enabled.js,sha256=1li2JYpkADg-e2qT-_bj1AjnhqS6Rwh7oMIN7BuBs9Q,735
86
+ pymobiledevice3/restore/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
87
+ pymobiledevice3/restore/asr.py,sha256=eVzTQ8hDzncfd49z3cB0VUvtgVob-omO5vUY7y2QZFY,4048
88
+ pymobiledevice3/restore/base_restore.py,sha256=7Savyn6TlqWpAG0OhILqb587mpx5yLJeOWljwLhxbVo,5795
89
+ pymobiledevice3/restore/consts.py,sha256=-_CIR3Fb78lGo3VNxtUvBaro5rUqPozHb4KB4ihntis,2167
90
+ pymobiledevice3/restore/device.py,sha256=Xq4k94BIBovheLElL9zeRm9FTdvp8EbuIpfWy__tJxU,2710
91
+ pymobiledevice3/restore/fdr.py,sha256=MwoDBiVmHrY5Duw4ViZnwpUjOx_lAzihi-yTznanKJ8,6182
92
+ pymobiledevice3/restore/ftab.py,sha256=RxjVkB7tHOW_RjHNu0hKt06qJ4HxitsfkW9dyk64Hzk,1509
93
+ pymobiledevice3/restore/img4.py,sha256=gEjULbDVsV6w24NLtOuBQUyU9DEwA3mt0wrcsfll67o,4790
94
+ pymobiledevice3/restore/mbn.py,sha256=xZvpY9ompqQW1NgW31X2eNVK5X4T7H66egjgfai09CU,18981
95
+ pymobiledevice3/restore/recovery.py,sha256=I-2dJvV-7MwiRH14YrZE_qa0gL4BxqE01huvSon_m4Y,17104
96
+ pymobiledevice3/restore/restore.py,sha256=rj-EH5LXky33pfs529qK6Nh3qNy4AZylIIgNyN8y7kc,57705
97
+ pymobiledevice3/restore/restore_options.py,sha256=Qu_Z7JnGSNnSMPw69qu9m--vgXkquo7nxeM-aUqppOU,7354
98
+ pymobiledevice3/restore/restored_client.py,sha256=tv1hyIV7UBDb_OUwj_w6qJsH_x36oBAVHnTS9-t4jh8,3637
99
+ pymobiledevice3/restore/tss.py,sha256=EY8XpUaexHyDTtUCuXQnOgLVIFAikcs9p0ysNSG1Q0U,30818
100
+ pymobiledevice3/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
101
+ pymobiledevice3/services/accessibilityaudit.py,sha256=Nle6Wim9IiWaR07vbD1nqL2FZxsaicHZLiXEmtpN40M,15465
102
+ pymobiledevice3/services/afc.py,sha256=aUukrV6gnip866DxA-uQBOP89E0EWKJWTuu5JH9DylA,35644
103
+ pymobiledevice3/services/amfi.py,sha256=SWGh5UQtf3YhD_4cT8M3dhH1sPE-mnIzkmiZjJ8d2x4,2522
104
+ pymobiledevice3/services/companion.py,sha256=6rvL1KF2-Gflv77rL9txINMoiQplVouL_nnGKNq-Maw,2612
105
+ pymobiledevice3/services/crash_reports.py,sha256=ODsgT3WgpOHIFM-ht9za_-xI9AAh7dKiq50NsRB5q3I,10945
106
+ pymobiledevice3/services/debugserver_applist.py,sha256=Pm65WDKua_zG8veFPp5uemuox6A49gydMlJD6UVvjhA,548
107
+ pymobiledevice3/services/device_arbitration.py,sha256=xdVC8nhpQ0VdsCSzpaUGme7TfZw3rftJZrYnrjfYHj4,1134
108
+ pymobiledevice3/services/device_link.py,sha256=rPB0NoyK3M6AFPWId50bSfYaF4qKBbbDR5rIosv5ejE,8566
109
+ pymobiledevice3/services/diagnostics.py,sha256=Azx2g30hio3RQNRJ-5zs94qMUPeV4Qoix9T_Krdp8cU,29909
110
+ pymobiledevice3/services/dtfetchsymbols.py,sha256=xyi5bXxPSrYaZSFx46zkbpDUk2qNEMAWAk0TZnQuquU,1505
111
+ pymobiledevice3/services/file_relay.py,sha256=8VFaqqvKvb21OvUxvSgKaC5av5SyRzwybyxmBnGnpME,1368
112
+ pymobiledevice3/services/heartbeat.py,sha256=X2jGCaJV1b_T1TyqZh09-DaK6zw00M9hmXpXQrZw7kU,1147
113
+ pymobiledevice3/services/house_arrest.py,sha256=mjpojdZ0tiGpKV00BogjM9L85lMHiFonNU7J639m8VA,1655
114
+ pymobiledevice3/services/installation_proxy.py,sha256=MIWdB6CYEEeG5eGcciHu2wvtn_vPJ2e5s47biMbkaYA,11619
115
+ pymobiledevice3/services/lockdown_service.py,sha256=SJ27hianKLPapPYz5HeEad4Yzx1oU8-m3osDgfLBfiw,1534
116
+ pymobiledevice3/services/misagent.py,sha256=CGh1EhN_f1rV9RhZfP53OBirXdY0elX_nZS-fhMbiPk,1937
117
+ pymobiledevice3/services/mobile_activation.py,sha256=0zvQn2CMmf47--OtDqv3eOK5Ofu-eBw-ab1TxZSrOlY,9230
118
+ pymobiledevice3/services/mobile_config.py,sha256=EjCaBaM4te73Gj_yoOIj_5PC5olNefsrjP8iYlW4nl4,18128
119
+ pymobiledevice3/services/mobile_image_mounter.py,sha256=PZEN9O7XtLW9VH1qNTJ19zo_tFZhX68bTX0O-Uy9sck,15034
120
+ pymobiledevice3/services/mobilebackup2.py,sha256=M2sVY-vXl6f25QFom-z5bUkeTdA4Twbiw1tH-4Tb79M,18303
121
+ pymobiledevice3/services/notification_proxy.py,sha256=mk4kxLRi6aDTXKOazgldliZG4q0bME7jBcxPyJsSpDw,2125
122
+ pymobiledevice3/services/os_trace.py,sha256=r4G1YZRzhwevb54pDAA3vTdMJhxRaoJHNJbCHs-J0TU,6720
123
+ pymobiledevice3/services/pcapd.py,sha256=Gd6xN9eBHnLIQ5M2LM-y4Z-eCquxVEnSKuyBECwZlRs,11960
124
+ pymobiledevice3/services/power_assertion.py,sha256=hh-9tpPbNctAegsV0IYE3ilikT-o4t758-y3u0Td9wM,1212
125
+ pymobiledevice3/services/preboard.py,sha256=QJ1miS0e2lY9y4sS4GxsMZh-uxKDeDi6upgPTyqTpfs,894
126
+ pymobiledevice3/services/remote_fetch_symbols.py,sha256=V2NcKalJ9i24V5gJkW-JrVJV5WRAJrkCSFJd9CnzN50,1831
127
+ pymobiledevice3/services/remote_server.py,sha256=8eH4i2mMSxVQzf5mUPJwQnlFpHPH0ahsgVe1ZL2qP7A,20309
128
+ pymobiledevice3/services/restore_service.py,sha256=6wRRf_aQBx7JLLmpS3eDLLleK-2qzxDE9jWzkF-Fb_o,1887
129
+ pymobiledevice3/services/screenshot.py,sha256=dPAKkvZWVHCcld_NSR5ZwmsfkQIOdKIyB7LgHggdxo0,1315
130
+ pymobiledevice3/services/simulate_location.py,sha256=Let7iupWt8WNYblhIMTlvY-RZQx7IrCTQ6YTo5VVKhY,1162
131
+ pymobiledevice3/services/springboard.py,sha256=Pn6cyNOTVrFN8_x43pj6cE1fPR7HeJ-vd6stD4K0lBg,2474
132
+ pymobiledevice3/services/syslog.py,sha256=EeV-nOlAyOkGKBUTfFwe-QzaJhnW8XUHWHvRk4BNzxM,1563
133
+ pymobiledevice3/services/webinspector.py,sha256=tRfWhZjwwFG5uXe_FG2aAHQt7zuvyy9SMfCgW8mn8JY,16686
134
+ pymobiledevice3/services/dvt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
135
+ pymobiledevice3/services/dvt/dvt_secure_socket_proxy.py,sha256=PZOhnYkEirqWtU0RUNun0tdjSitDXWxcl4p_P7mBELk,1072
136
+ pymobiledevice3/services/dvt/dvt_testmanaged_proxy.py,sha256=pO6C_CI34kP0IcY3JalZ9SKfmYaraPlk-8YiFJuT4fc,1179
137
+ pymobiledevice3/services/dvt/instruments/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
138
+ pymobiledevice3/services/dvt/instruments/activity_trace_tap.py,sha256=EEJdUYGdLQKgwJtAbhvpHATkgwf76xFwBZQ3k8gWrMM,8835
139
+ pymobiledevice3/services/dvt/instruments/application_listing.py,sha256=B_Ofygfq0tAU4q5j6W0leXuOqiiXxxmKyy05mZjjcBg,653
140
+ pymobiledevice3/services/dvt/instruments/condition_inducer.py,sha256=l6kEzgI-li-YgyELhi7YAWykt7ouUgKgOCiAQ_L7PX4,1264
141
+ pymobiledevice3/services/dvt/instruments/core_profile_session_tap.py,sha256=6xKHTLt8j5yaXihVYgsoUzyTfy2NkavvlJ8m2OZcDTA,30641
142
+ pymobiledevice3/services/dvt/instruments/device_info.py,sha256=zcOvAfk2EpxzjE1YkAoHkNN6PfJbrv7VXJ2YVYbhkZw,3080
143
+ pymobiledevice3/services/dvt/instruments/energy_monitor.py,sha256=7zVLliaWoAtiH_iEuydUzmb0nSLfTgRFNGizk43Z_Lc,892
144
+ pymobiledevice3/services/dvt/instruments/graphics.py,sha256=hkX8_kLStRf9pliLSJUO2Vk7KG9gqSo55Ydntm6S9Xw,588
145
+ pymobiledevice3/services/dvt/instruments/location_simulation.py,sha256=A04YrB8ptP_t2ImEY4Gj8168-q-Hh-emzWKzVSGSL1U,703
146
+ pymobiledevice3/services/dvt/instruments/location_simulation_base.py,sha256=LQJO1aa50Duue4ZrRpoZyjwnV4qsLw4nge0oWuhm_yY,1543
147
+ pymobiledevice3/services/dvt/instruments/network_monitor.py,sha256=T8KFbrdqXinbluGqH5Fe_piS_mZt1hcHBOL47jRKFUE,2621
148
+ pymobiledevice3/services/dvt/instruments/notifications.py,sha256=IDFtGKWxOoicAyPmE4FADEn84-B-OTrP0k_6kKKMlXU,829
149
+ pymobiledevice3/services/dvt/instruments/process_control.py,sha256=9S4ck7MLRmMIiaO9x-LczVUENh0l6GtdlF4QDb51gsA,3864
150
+ pymobiledevice3/services/dvt/instruments/screenshot.py,sha256=JKz8UFWTkroMTIEnXBqCMI4AupKIjhwDpuZaxy98Ouw,476
151
+ pymobiledevice3/services/dvt/instruments/sysmontap.py,sha256=Tscf05j2xNfTKcYsBL1KEXHkrs0I1sS7YAKt-AtlcFU,1594
152
+ pymobiledevice3/services/dvt/testmanaged/xcuitest.py,sha256=WN6qZ8DJiZkQ34gLXHU7clrJ9M5ptIXbNTViNqfHkAQ,12273
153
+ pymobiledevice3/services/web_protocol/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
154
+ pymobiledevice3/services/web_protocol/alert.py,sha256=1H_1ML3M-90nePsxHPuUNZAfnsmNUXyDiQ40jkV9zJE,830
155
+ pymobiledevice3/services/web_protocol/automation_session.py,sha256=RWab-7R1LJD4_EmJ6V0Ym4MYCG4H2F4Nc-YEtI2DXvA,14513
156
+ pymobiledevice3/services/web_protocol/cdp_screencast.py,sha256=zCTKYXaly1v4DODooTZHZDp5qyeXiQ0JkYxMrh2SeCs,5908
157
+ pymobiledevice3/services/web_protocol/cdp_server.py,sha256=NwwtrBco9iOynJaoXTNM9lamNYZ-t7pLvU1vswKwKsU,2554
158
+ pymobiledevice3/services/web_protocol/cdp_target.py,sha256=dtJ5I59Q--yZ9_0dwDm7BMV4_tbTDiZaqLFWxSlYaxM,32393
159
+ pymobiledevice3/services/web_protocol/driver.py,sha256=KIkPHszP51wHSi2Gt_u2p9HcpxSpqSa-geLYo1ljETI,7534
160
+ pymobiledevice3/services/web_protocol/element.py,sha256=Teqc_ziPbdu-syaZNcQzelyNO9u5wA62vv-dce9gAOQ,8498
161
+ pymobiledevice3/services/web_protocol/inspector_session.py,sha256=ep4YWu9Pm9IQfkRZ8AYVUCWDV1-BPRz0DQHKTGwj-JE,10625
162
+ pymobiledevice3/services/web_protocol/selenium_api.py,sha256=KnkWL3Ugxocq7bptKrMqKtO28WDLRbNEu0uxxtis8aM,2772
163
+ pymobiledevice3/services/web_protocol/session_protocol.py,sha256=7ykfQ-Iy2M6GMgzP21Gh02v1YzTBxdTLjrESDulAa_Y,1936
164
+ pymobiledevice3/services/web_protocol/switch_to.py,sha256=k2jy9jVIUSlrlXIu3hNNWf8tBtGgvhjbyRETKnHMXTQ,2786
165
+ pymobiledevice3/tunneld/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
166
+ pymobiledevice3/tunneld/api.py,sha256=Lwl1OdhPTgX6Zqezy8T4dEcXRfaEPwyGNClioTx3fUc,2338
167
+ pymobiledevice3/tunneld/server.py,sha256=qYRYytSxJOP48cU71gHmLUcLo7W70jaTb9sIisCPDUs,25850
168
+ pymobiledevice3-5.0.2.dist-info/licenses/LICENSE,sha256=jOtLnuWt7d5Hsx6XXB2QxzrSe2sWWh3NgMfFRetluQM,35147
169
+ pymobiledevice3-5.0.2.dist-info/METADATA,sha256=dkeONkffgeSngkosR7qo92pcXJ9OzJ-IV4e7ExlSAMU,17416
170
+ pymobiledevice3-5.0.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
171
+ pymobiledevice3-5.0.2.dist-info/entry_points.txt,sha256=jJMlOanHlVwUxcY__JwvKeWPrvBJr_wJyEq4oHIZNKE,66
172
+ pymobiledevice3-5.0.2.dist-info/top_level.txt,sha256=MjZoRqcWPOh5banG-BbDOnKEfsS3kCxqV9cv-nzyg2Q,21
173
+ pymobiledevice3-5.0.2.dist-info/RECORD,,
@@ -1,173 +0,0 @@
1
- misc/DTServices-14.2.txt,sha256=UKafFeQNZBlapCXHnFRSln0KU18QKT7AxI3HFq6gcds,5324
2
- misc/DTServices-14.5.txt,sha256=gSjw6ZJDiG_Yep9XhAbMUWbEXwJ2SGeZY5uTi5kp0Go,5010
3
- misc/RemoteXPC.md,sha256=1wfXK_LWKDi-hZlScHffAsD1ZIWjR7bNIA2B82BhW4Y,34110
4
- misc/plist_sniffer.py,sha256=Er_1eYDLbkMRv2yZ8N7xz1g_yj1xFrIe5TwNbDlW85Q,1916
5
- misc/pyinstaller.md,sha256=-j0uoOoaSoUQSpYhLzszT3oqrgEuBz3jXXvMp2Ix0D8,933
6
- misc/remotexpc_sniffer.py,sha256=EThsKN0Vbs-mnLKCDXeooqg0MdpSkjwhAZHZwvhI458,7977
7
- misc/understanding_idevice_protocol_layers.md,sha256=8tEqRXWOUPoxOJLZVh7C7H9JGCh2sQ3B5UH8_AymaQc,18805
8
- misc/usbmux_sniff.sh,sha256=iWtbucOEQ9_UEFXk9x-2VNt48Jg5zrPsnUbZ_LfZxwA,212
9
- pymobiledevice3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
- pymobiledevice3/__main__.py,sha256=viUbhGzaoDi18zu5crX33PMws4qNBjBTwnaK5rAaObY,11651
11
- pymobiledevice3/_version.py,sha256=cF99FZpN-aTdrzTHYCxKJsYbLYzvaOLuf8fkq4yEuRk,704
12
- pymobiledevice3/bonjour.py,sha256=_f5RQs9uLDjDFsXMvykQs8vFoGJXiw6xfth86qewEGA,13719
13
- pymobiledevice3/ca.py,sha256=mTvWdSjTZw6Eb-22-IZ323GyA1G6CXYmdPedImTjm3A,10542
14
- pymobiledevice3/common.py,sha256=-PG6oaUkNFlB3jb7E0finMrX8wqhkS-cuTAfmLvZUmc,329
15
- pymobiledevice3/exceptions.py,sha256=VqWB6WWoMrXt8GDdKqRHeJ1otP-eZIThoHERswXWqpw,10347
16
- pymobiledevice3/irecv.py,sha256=FoEln1_zHkAiNcEctB5bStfhKNgniOSg7lg9xcX1U2Q,10596
17
- pymobiledevice3/irecv_devices.py,sha256=BG30ecXSChxdyYCCGIrIO0sVWT31hbKymB78nZWVfWc,38506
18
- pymobiledevice3/lockdown.py,sha256=jVrw--ifD8ewGwp5fZVYdoQDuaUiSckZ7fnB8dDtc58,38615
19
- pymobiledevice3/lockdown_service_provider.py,sha256=l5N72tiuI-2uowk8wu6B7qkjY2UmqQsnhdJqvJy3I8A,1744
20
- pymobiledevice3/pair_records.py,sha256=Tr28mlBWPXvOF7vdKBDOuw1rCRwm6RViDTGbikfP77I,6034
21
- pymobiledevice3/service_connection.py,sha256=_-PTLFr3krtwEBNHEKXCd_2eOGwMpbsfPbB8AX2uN-g,14861
22
- pymobiledevice3/tcp_forwarder.py,sha256=TVtIHn4hFlNIMEYXW9nwdSEhLfHaEHf4jkMsfJXLrTA,8906
23
- pymobiledevice3/usbmux.py,sha256=NSgcgEbaFxGqyyYuZm4SgLx1DPdkP1oeGRLZ8bEkXes,16916
24
- pymobiledevice3/utils.py,sha256=X3hU3wf_REUPRS-XtLgGgI2pxIwDGZP0RpZvZf7hOBY,2195
25
- pymobiledevice3/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
- pymobiledevice3/cli/activation.py,sha256=mF64abX7d0bbyALVC-f_9rjc1DuB6mukP3Zwg9Hoj1Y,1321
27
- pymobiledevice3/cli/afc.py,sha256=z-qnBVUPA4uOnXADkYVyRJxeibRDFF3j5LejHt_6UW4,2129
28
- pymobiledevice3/cli/amfi.py,sha256=6hlqKrKOFj0secUnLQ8grDDnnh3fRsO6x_vo40oy22w,963
29
- pymobiledevice3/cli/apps.py,sha256=LH75A1gDRGP0nWO4QFcOUDg0EdphkGuYnWJgIQHrIBg,3859
30
- pymobiledevice3/cli/backup.py,sha256=SyHojiRRguxdkAPMz_Rp_9-zJNeuOtmpa0imdPN12-4,6691
31
- pymobiledevice3/cli/bonjour.py,sha256=X5W-5rPLX3xAwEeQJLPB_iOhdHcOL9ePkrm3xx4-Qic,2854
32
- pymobiledevice3/cli/cli_common.py,sha256=lQFhkTwPfi1UYFkMiDc-jrId2s2yHwzF5lFTK0dXM_s,12945
33
- pymobiledevice3/cli/companion_proxy.py,sha256=ey0X3moJ49zVJoNCpRMMHmf9fBZfdqimhz2VCA35oII,581
34
- pymobiledevice3/cli/completions.py,sha256=t8oryezQTcWDno_E2Cch7o1f-qURVL9M1Z4o6uLA_kM,1722
35
- pymobiledevice3/cli/crash.py,sha256=m1vs0_KUy4cxu8vHYjn7olay8oPQGTFZqMCHspnGpVs,3181
36
- pymobiledevice3/cli/developer.py,sha256=qSGvUZPVCwJZQaE9jF2vk-0Fp3x_2-wIlFjy-QoM5cI,61471
37
- pymobiledevice3/cli/diagnostics.py,sha256=VDWr41ryIZcpuQp47nQSzCiSuIILExqGSrwFizXCIkI,3641
38
- pymobiledevice3/cli/lockdown.py,sha256=AV_7snLEkc9mbwWVlWg1Ki0tWQMtPHReziun_lxjNvY,7133
39
- pymobiledevice3/cli/mounter.py,sha256=AnNneNF_kW7XnBMe4V5cvlbLYd_mAP4tuB3PXLQpeiA,7724
40
- pymobiledevice3/cli/notification.py,sha256=vqn8uPslr7A9HiZ4yrs7YKF2VLS7Nk4G7ab5ELljpVQ,1962
41
- pymobiledevice3/cli/pcap.py,sha256=KzFxXWFRYWNOEJE1XAuMF2cG8I4k5wFVcMRhSdY4GQg,2188
42
- pymobiledevice3/cli/power_assertion.py,sha256=aTlesowRyrbd9JXebEZe9SomTkDkZaAXIOyTIitRJ0c,880
43
- pymobiledevice3/cli/processes.py,sha256=XNJe2KaacP7c-1NtR_HF6Gd5rByyj3vpyyT_xEntIbA,1102
44
- pymobiledevice3/cli/profile.py,sha256=WT8hgYOmkOHUlWtEz-BoBelCerT70TpwBBzJC8wRLmY,7939
45
- pymobiledevice3/cli/provision.py,sha256=yWabJrieISrBfFo7vCFIAM8xXLG-8_9qRe1igkTHIA0,1967
46
- pymobiledevice3/cli/remote.py,sha256=n_PbPnUqnQRYxVG-y8rERmWu__64OY0mDx12mX62pRg,11999
47
- pymobiledevice3/cli/restore.py,sha256=vg3yjKOjsONUUzPp-XHIjNGMV8qCfptJrz6eJzG2diY,8172
48
- pymobiledevice3/cli/springboard.py,sha256=pYMqnD0zN_ETIASPqxBohi54F2HMC9jCILW4epVaaIk,3140
49
- pymobiledevice3/cli/syslog.py,sha256=JfLhjyVAeRx16VC4BsAu308rABjcIQX8DB7vbVKGiic,7462
50
- pymobiledevice3/cli/usbmux.py,sha256=f8T6Xt4ym9wfnxFIAyJ1W76YI0h1hqrRfKj4PxCoNRc,2365
51
- pymobiledevice3/cli/version.py,sha256=OtvxHV8JjLFNaiA1Q5Qll3bsw__hrij-9FUmkDmNS40,346
52
- pymobiledevice3/cli/webinspector.py,sha256=NOrTtjUOwXu0mvHiIHUXTcacsAo91FUIF8lJ6PnzTs8,15519
53
- pymobiledevice3/osu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
- pymobiledevice3/osu/os_utils.py,sha256=YwMTUT6o67xa-la8ElxdHQ1hBJM_u2gsoKW5RNxCEEU,3272
55
- pymobiledevice3/osu/posix_util.py,sha256=YllI2PH2VngvLs273Hi05C2pHfvwx5NNPdtbrlNYxaI,3370
56
- pymobiledevice3/osu/win_util.py,sha256=ytQsuArYPI8Ley0viKi5pUfwlUz9DBEBmzrI-ecQKC8,2118
57
- pymobiledevice3/remote/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
- pymobiledevice3/remote/common.py,sha256=W1b_5tXFnQbH74cvMOHzFVnFRK1gJx4mR4jcJYdnw1U,288
59
- pymobiledevice3/remote/module_imports.py,sha256=DwExSL1r4kkFIWmXiQpqPo-cGl4duYd33kJGyVckYuA,829
60
- pymobiledevice3/remote/remote_service.py,sha256=fCyzm4oT_WEorAXVHVLYnIOyTOuMGhX69Co3HkUdRYY,867
61
- pymobiledevice3/remote/remote_service_discovery.py,sha256=iqPE1PiDDB2ISK-ThuUPEiSU9ETZ-FGTcANhb6MrWmo,7156
62
- pymobiledevice3/remote/remotexpc.py,sha256=KbFHaH4D3RnaATve6kaIpJMHNF8H-kdhbRbEbxFmO6w,8082
63
- pymobiledevice3/remote/tunnel_service.py,sha256=LhPCduH4mNU8sACGI3aJeXpH0UjPfvsjm0FGA4QIV_4,46830
64
- pymobiledevice3/remote/utils.py,sha256=PV9tICVY6-L7eoqRF1yNmOGxdC2kp9h0kBqeoIAo4pA,2530
65
- pymobiledevice3/remote/xpc_message.py,sha256=-nVbf88ZN4ZNxLg6cOq4FfeKXYAoVRKnwGdfe7s-sZE,9336
66
- pymobiledevice3/remote/core_device/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
67
- pymobiledevice3/remote/core_device/app_service.py,sha256=x_K-3IA4NWG-skyffKyeGrS7slAbn3MsVLhdY62FSh0,5066
68
- pymobiledevice3/remote/core_device/core_device_service.py,sha256=tvOZ_113SIeL2bCQBMAjxsTArCiWj8h6D4wxTTnZ3hQ,1472
69
- pymobiledevice3/remote/core_device/device_info.py,sha256=ATjOBsRkoyyl3h9uuhQb3sAFEbKXZnf9_Tvdb0c_068,1244
70
- pymobiledevice3/remote/core_device/diagnostics_service.py,sha256=8653xefkTvMetg9TInu0LZliIRcz4hpz3mOH1ryPRNo,1224
71
- pymobiledevice3/remote/core_device/file_service.py,sha256=2MG8hoyRk8sb5miFEiyP8Ghs5G8N15VZEm8UsovOlEI,3746
72
- pymobiledevice3/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
- pymobiledevice3/resources/dsc_uuid_map.json,sha256=oJxU_HptLN9MS8zb2sgmn8SbKTlO0e7PosT_51ojAIY,1023280
74
- pymobiledevice3/resources/dsc_uuid_map.py,sha256=pRgmLYOcWXm2XwqvhiIizwsQ8Emn5fnwDA4crufodE8,2549
75
- pymobiledevice3/resources/firmware_notifications.py,sha256=eCQXx7rg54OijDCK683oS5mGeywq_QHBR7mO1dEoyVU,1971
76
- pymobiledevice3/resources/notifications.txt,sha256=dTyzofbVkkPK_7PLvyR17OQ-tTySEpcD7S2nYTWK9d8,36145
77
- pymobiledevice3/resources/webinspector/element_attribute.js,sha256=-uHwL-cY0Kgjeqz7ZdNzoozPPKglCsB4MgfSXeZYsc8,192
78
- pymobiledevice3/resources/webinspector/element_clear.js,sha256=H7SvwrqFfqYjMp83UgbA1ovgJFVyOSL0sDNOH8b-F9o,1244
79
- pymobiledevice3/resources/webinspector/enter_fullscreen.js,sha256=wpP1tLfW5pK5W31k2OhdF1arpTNpalpkp2a9cswyxZU,1100
80
- pymobiledevice3/resources/webinspector/find_nodes.js,sha256=nAFjMyujYB3OiQtaX1asSEBIzRCe70pSqIjF0qliqak,2689
81
- pymobiledevice3/resources/webinspector/focus.js,sha256=qfrBrzxUEtQuLHZ22pA6nz2SB7t_8gDEHbUNlafn2no,95
82
- pymobiledevice3/resources/webinspector/get_attribute.js,sha256=MUPV8eWDWl0dkuLSnoVDN6lUYJu0LGsjWnNuKnmZEdY,42234
83
- pymobiledevice3/resources/webinspector/is_displayed.js,sha256=X_vwJ7sDm4EqqxmnrPROvDTIm7GfreCiXpcKQllToAM,43072
84
- pymobiledevice3/resources/webinspector/is_editable.js,sha256=H7SvwrqFfqYjMp83UgbA1ovgJFVyOSL0sDNOH8b-F9o,1244
85
- pymobiledevice3/resources/webinspector/is_enabled.js,sha256=1li2JYpkADg-e2qT-_bj1AjnhqS6Rwh7oMIN7BuBs9Q,735
86
- pymobiledevice3/restore/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
87
- pymobiledevice3/restore/asr.py,sha256=zk5LM8hMAR549qnUz3A6p5BzdqEfvtglIKd6vQCXx0Y,4052
88
- pymobiledevice3/restore/base_restore.py,sha256=77vXUxLHmo9FoQSsVIAPNNwnq1imTy2s3heuFt8prDY,5571
89
- pymobiledevice3/restore/consts.py,sha256=C4HheYOFbalRNPGsfc0DRr3ogo7RYQachUslVlOsHx4,2114
90
- pymobiledevice3/restore/device.py,sha256=TZahPSKHxfrF7A8DC70fwcoQK9bXD6QV1dAr80YAgmw,2710
91
- pymobiledevice3/restore/fdr.py,sha256=KOXZH50oNYseP-PzSkw_uxu1NyGP5d32_DYSoYdbFu8,6269
92
- pymobiledevice3/restore/ftab.py,sha256=SWNKZRN1pFWzx_qHCkycvsLaHFAqkqQJYRBJYQ_-Wjw,1507
93
- pymobiledevice3/restore/img4.py,sha256=V03nq1L7FMkdmC15MN7W9Wct4MQx472aDpy5IkuNvII,4888
94
- pymobiledevice3/restore/mbn.py,sha256=3Xb62vrfCROosvcTYAbAwALW_URxm5wEpctjj82CwIQ,19323
95
- pymobiledevice3/restore/recovery.py,sha256=1eHQ-I1iJG31TLIAz890fBtGqopBQT3FB--UYESIkEQ,17205
96
- pymobiledevice3/restore/restore.py,sha256=VKro3s0vm3WDrgVAbdcw4SNSPmgtsJ5yEvpMy_eUfPM,58104
97
- pymobiledevice3/restore/restore_options.py,sha256=qeh_wRa_bi0Ccl0p0JuX9EChEQBqwJt94EBImWcEJ3E,7255
98
- pymobiledevice3/restore/restored_client.py,sha256=h_yBZ_e1wfaIzi0f9-R8Ky2x6xFTkvDlpWIV561uxoU,3638
99
- pymobiledevice3/restore/tss.py,sha256=QHq5OTyCn7iIrYhhgOxT5_gpV7wggcy5Faje5160FHQ,29852
100
- pymobiledevice3/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
101
- pymobiledevice3/services/accessibilityaudit.py,sha256=PtQujwFLL3E1OgOSUjkKHvgmk2e8Ij2XZIp8JicAphs,15547
102
- pymobiledevice3/services/afc.py,sha256=bENRiozw5qAqMatXeqQZ1JmT8OZBH2R1UmN3hJSrKo4,36527
103
- pymobiledevice3/services/amfi.py,sha256=CmH4tbWpwLhfZlX0ukOD7sX8sYhr0exlczQ8tY2NnPw,2511
104
- pymobiledevice3/services/companion.py,sha256=uKsIqDHIdMkx6QjRd55NE6w8ksXhT_aN2z2cQAcIif0,2694
105
- pymobiledevice3/services/crash_reports.py,sha256=vHIDCjlJTz26X6e2rpxb2K9sASNHlvms_mM2eXglxjU,10808
106
- pymobiledevice3/services/debugserver_applist.py,sha256=YE6mWfEb4IiKmdATOCESto1nI-_uovrbqrkByGektLI,548
107
- pymobiledevice3/services/device_arbitration.py,sha256=FNcWydgueBqNUVZXwYfRF-EKS3vvQQHQwVzKzc-O8u4,1134
108
- pymobiledevice3/services/device_link.py,sha256=KCpHjOBvvzIz87JClMpRmK4fAARftaHHK1cT-YSDcXY,8435
109
- pymobiledevice3/services/diagnostics.py,sha256=Yk1_xycqaOrVLirf1iJQE8uUFoCc9JJ48loXW3vqjG4,45775
110
- pymobiledevice3/services/dtfetchsymbols.py,sha256=bFGnyBccj3a7LzMC3PdVtl5X8z3fCK9y36lBSyAh84g,1505
111
- pymobiledevice3/services/file_relay.py,sha256=g0FlD1dXH94IlBLVoeMl91nvlz6woe6DtaTJY7ztARU,1368
112
- pymobiledevice3/services/heartbeat.py,sha256=CBqBfsS2duClG2gWzYxr4TwC0MLNdU6ncX_xCkOCht4,1128
113
- pymobiledevice3/services/house_arrest.py,sha256=0I1K54_y6FBg75vxEQ4bqm9wAhpoq43o24nyRfaFt1E,1695
114
- pymobiledevice3/services/installation_proxy.py,sha256=_k8bIRHEs-V1dt_9rJgNSKMAsx-VC8GXE3V_UEMH780,11585
115
- pymobiledevice3/services/lockdown_service.py,sha256=WP2l3qIdU7XtWDQMfNEPwSJZfS7D6S8btcdoRjt_3mQ,1482
116
- pymobiledevice3/services/misagent.py,sha256=YGLo2LhzyYWyICxKDhy3Ph7SewYk5I1VN3-LjKv_plo,2088
117
- pymobiledevice3/services/mobile_activation.py,sha256=W0irgFgM4dAAhAKboG41liSHzHX8kMWQtBGMXZZTuag,9083
118
- pymobiledevice3/services/mobile_config.py,sha256=Ev1AmJ6pzeZKnwMaSKIwWAOWVMqH2QgDbjD49Jc_l20,17419
119
- pymobiledevice3/services/mobile_image_mounter.py,sha256=cWKpFeDurkDg2LEetDdXODmiEyWwTaTVSEQc5GsJIXk,15046
120
- pymobiledevice3/services/mobilebackup2.py,sha256=1Wo4IpLG5HUfkGJustsv2SoTBBax30PZyKOtEOz5Eac,18217
121
- pymobiledevice3/services/notification_proxy.py,sha256=VCOG8G0HNn8_tFKUdLs5BFkshQCtI_LNH-w4MuNF2MM,2109
122
- pymobiledevice3/services/os_trace.py,sha256=Vi_KGWK8hsvk6eMNuv-ae-iEn3UlUk3SF_niC8yBEmU,6465
123
- pymobiledevice3/services/pcapd.py,sha256=PQtz-mGDvmjVVHD7Ixbv8A2zMnw7XVobzZh30udYiRQ,11010
124
- pymobiledevice3/services/power_assertion.py,sha256=xwmzAvdzqa9CeDLkxKWFF_WXJFTtw73qd4qMfpYHkWc,1176
125
- pymobiledevice3/services/preboard.py,sha256=CpyiJWQXIuA4DZ8a_vaucvExSuyGlY3YIcSWvEQDsnk,894
126
- pymobiledevice3/services/remote_fetch_symbols.py,sha256=yLaHdqg87JIQJQLb5sO3FanZ_MGPgSm1skx_5pZ7Tkc,1828
127
- pymobiledevice3/services/remote_server.py,sha256=7uvalCAxKfetaSbYs5jMYaHmZHEQLIKbShpmvvNE0Tw,20430
128
- pymobiledevice3/services/restore_service.py,sha256=7SSHPANqjqkK453C7eq8IID5_csR34TuQrTg97rrW8E,1897
129
- pymobiledevice3/services/screenshot.py,sha256=sulQnyVGmq_3MJZGQ_GPJYOCj_tmE_d9ZG0vZFgKDAY,1282
130
- pymobiledevice3/services/simulate_location.py,sha256=WsnxaHIeRa0-9LkHbfnfOG0I9GK7D7xgksl91hOfCkI,1166
131
- pymobiledevice3/services/springboard.py,sha256=-3tqSuRx4p2j-rWRkDl_icvxftyuEkESWANKAS1L97M,2510
132
- pymobiledevice3/services/syslog.py,sha256=dccKS8sWgPCGOzK2-3f08gyF9UrN5-iHeqHxtpt6P-0,1563
133
- pymobiledevice3/services/webinspector.py,sha256=p-wazgczgVh07dTuPNtYv9RHB6HgwxLrQMFX_dms96k,16488
134
- pymobiledevice3/services/dvt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
135
- pymobiledevice3/services/dvt/dvt_secure_socket_proxy.py,sha256=2lhxkZVxV3U3tDKrx2AxX5Ui2QXBoz8_WEY6xbrkkTc,1072
136
- pymobiledevice3/services/dvt/dvt_testmanaged_proxy.py,sha256=dsaResRZem1ezLkQNfMXvFJoaE0lsbznhYs7q8BLVAw,1179
137
- pymobiledevice3/services/dvt/instruments/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
138
- pymobiledevice3/services/dvt/instruments/activity_trace_tap.py,sha256=SARFCaEhDxams9slRKZBBiZDCmR6WDlRdho3mxZGNLY,8769
139
- pymobiledevice3/services/dvt/instruments/application_listing.py,sha256=6zWnYUyaxNFudrZo0oKGMTYG3T4sTm2w2XKi-jK-59E,666
140
- pymobiledevice3/services/dvt/instruments/condition_inducer.py,sha256=u7CfKvS2dkL3xzbmU9e8zWY29RKRPuAqi3PT6REErpQ,1243
141
- pymobiledevice3/services/dvt/instruments/core_profile_session_tap.py,sha256=YeV4xiI8QMc8O6Su0s6h7GiS27RhE14z9U9dlr7mV5k,27877
142
- pymobiledevice3/services/dvt/instruments/device_info.py,sha256=dP6PEW62MsRS8hUy3i000wwI2tE8jek_GvOmT1cjMUE,3085
143
- pymobiledevice3/services/dvt/instruments/energy_monitor.py,sha256=ZzkoC1wyK1zYskiXDtUoEa9PPWnDM9WLl4tZWxfVl-k,892
144
- pymobiledevice3/services/dvt/instruments/graphics.py,sha256=KjdO6o_rDsD1YfvW8rW2nOj0N7JfPblFTOlR9XIwwXY,588
145
- pymobiledevice3/services/dvt/instruments/location_simulation.py,sha256=Cai8Fhd1QTuHhgacpJMhFaGn8dspNFEC2H8Q59M1RX0,703
146
- pymobiledevice3/services/dvt/instruments/location_simulation_base.py,sha256=APBcmUla620BAn2ezyTXIjkbixGREocmgS6-kUks3nI,1520
147
- pymobiledevice3/services/dvt/instruments/network_monitor.py,sha256=zfK-UM63t1QXoUl07kB0tRuNFJh39zXd3rh_A1lsZ_4,2599
148
- pymobiledevice3/services/dvt/instruments/notifications.py,sha256=al96MoxjXlnigwEbQWtHHNi8QOr5pY_04Py4PLCMJIQ,829
149
- pymobiledevice3/services/dvt/instruments/process_control.py,sha256=49k8CKe0yB0x-L6pGtjKYzrGBAipm033x2vKicdQHkQ,3718
150
- pymobiledevice3/services/dvt/instruments/screenshot.py,sha256=o0HNmSNMR7bXH7ETJ4up21zJIrSW5JCSeyNDTQkGpRM,478
151
- pymobiledevice3/services/dvt/instruments/sysmontap.py,sha256=83pu30e8jZAGuVXWzCwr_XUrchw8ULYdzQ-71HPbw1k,1592
152
- pymobiledevice3/services/dvt/testmanaged/xcuitest.py,sha256=wepCtyi0aYhLP-d2gluOYbFIS6SMqdEVh75OjFVY1jo,12490
153
- pymobiledevice3/services/web_protocol/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
154
- pymobiledevice3/services/web_protocol/alert.py,sha256=EQLd4PPo8hsxg-YUM0Fw-Rc62aVNO77z6SouV_qVnA8,836
155
- pymobiledevice3/services/web_protocol/automation_session.py,sha256=hes1ZVmYykwSJ9ta679LXLQmfLJwkFd2GwWuZkaLXmk,14547
156
- pymobiledevice3/services/web_protocol/cdp_screencast.py,sha256=qOnN5bouxYXyTdaZp1KoIAvlu7O7IGyTb363QEKgw9E,5731
157
- pymobiledevice3/services/web_protocol/cdp_server.py,sha256=xKPRv6MzYYgAit0mH22YTCOQCA3hQXUDD71hgFvp4ls,2553
158
- pymobiledevice3/services/web_protocol/cdp_target.py,sha256=_ViaxC3BCAz0b5C76w7OvBQ6QAFNwnLPiCi_7KaNbbs,32081
159
- pymobiledevice3/services/web_protocol/driver.py,sha256=oDX3dNIBRrsBag_wNdwYqLwwaqW4bkQhju6ZEgeVliU,7578
160
- pymobiledevice3/services/web_protocol/element.py,sha256=zNNRgwGH4LzwsT3eBE3Lxx35OQjMDGKaM8THFrf23ZI,8522
161
- pymobiledevice3/services/web_protocol/inspector_session.py,sha256=2PSjGfW4b2qUoIbRNM_3BPHZQNsjLwOTtpS7zpkUXlA,11122
162
- pymobiledevice3/services/web_protocol/selenium_api.py,sha256=MiDq8OhPb3c1SbUPc8k92insZW8Vc4cCiRJDlxbj0Uw,2772
163
- pymobiledevice3/services/web_protocol/session_protocol.py,sha256=7dJkFyivu554K6I5ZbYD14hnRtbr10OLFH6VFP9awjY,1861
164
- pymobiledevice3/services/web_protocol/switch_to.py,sha256=hDddJUEePbRN-8xlllOeGhnYvE4NEnd8JJIlosLMB9c,2880
165
- pymobiledevice3/tunneld/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
166
- pymobiledevice3/tunneld/api.py,sha256=EfGKXEWhsMSB__menPmRmL9R6dpazVJDUy7B3pn05MM,2357
167
- pymobiledevice3/tunneld/server.py,sha256=fbwnKrm4d84MpopWKIWoQF1_ZEUB4vONKmHih6qce_U,25206
168
- pymobiledevice3-5.0.0.dist-info/licenses/LICENSE,sha256=jOtLnuWt7d5Hsx6XXB2QxzrSe2sWWh3NgMfFRetluQM,35147
169
- pymobiledevice3-5.0.0.dist-info/METADATA,sha256=kQKKC-FV5BNQqQUIOctTPVLa6wSnLgZXD06kbC9QLiI,17416
170
- pymobiledevice3-5.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
171
- pymobiledevice3-5.0.0.dist-info/entry_points.txt,sha256=jJMlOanHlVwUxcY__JwvKeWPrvBJr_wJyEq4oHIZNKE,66
172
- pymobiledevice3-5.0.0.dist-info/top_level.txt,sha256=MjZoRqcWPOh5banG-BbDOnKEfsS3kCxqV9cv-nzyg2Q,21
173
- pymobiledevice3-5.0.0.dist-info/RECORD,,