mpflash 1.24.7__py3-none-any.whl → 1.25.0__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.
Files changed (49) hide show
  1. mpflash/ask_input.py +7 -7
  2. mpflash/basicgit.py +26 -59
  3. mpflash/bootloader/__init__.py +0 -2
  4. mpflash/bootloader/detect.py +1 -2
  5. mpflash/bootloader/manual.py +0 -1
  6. mpflash/bootloader/touch1200.py +2 -2
  7. mpflash/cli_flash.py +28 -5
  8. mpflash/cli_group.py +1 -0
  9. mpflash/cli_list.py +7 -8
  10. mpflash/cli_main.py +2 -2
  11. mpflash/common.py +6 -14
  12. mpflash/config.py +30 -6
  13. mpflash/connected.py +6 -14
  14. mpflash/db/boards.py +63 -0
  15. mpflash/db/downloads.py +87 -0
  16. mpflash/download/__init__.py +221 -0
  17. mpflash/download/from_web.py +204 -0
  18. mpflash/downloaded.py +9 -34
  19. mpflash/flash/__init__.py +33 -18
  20. mpflash/flash/esp.py +39 -8
  21. mpflash/flash/uf2/linux.py +4 -9
  22. mpflash/flash/uf2/macos.py +1 -1
  23. mpflash/flash/uf2/windows.py +1 -1
  24. mpflash/flash/worklist.py +10 -5
  25. mpflash/list.py +17 -6
  26. mpflash/logger.py +1 -3
  27. mpflash/mpboard_id/__init__.py +6 -87
  28. mpflash/mpboard_id/add_boards.py +3 -8
  29. mpflash/mpboard_id/board.py +5 -2
  30. mpflash/mpboard_id/board_id.py +67 -7
  31. mpflash/mpboard_id/board_info.json +30974 -0
  32. mpflash/mpboard_id/board_info.zip +0 -0
  33. mpflash/mpboard_id/known.py +108 -0
  34. mpflash/mpboard_id/store.py +2 -3
  35. mpflash/mpremoteboard/__init__.py +85 -17
  36. mpflash/mpremoteboard/mpy_fw_info.py +23 -22
  37. mpflash/py.typed +0 -0
  38. mpflash/vendor/board_database.py +86 -1
  39. mpflash/vendor/click_aliases.py +64 -0
  40. mpflash/vendor/dfu.py +2 -8
  41. mpflash/vendor/pydfu.py +3 -14
  42. mpflash/versions.py +16 -6
  43. {mpflash-1.24.7.dist-info → mpflash-1.25.0.dist-info}/METADATA +71 -13
  44. mpflash-1.25.0.dist-info/RECORD +62 -0
  45. {mpflash-1.24.7.dist-info → mpflash-1.25.0.dist-info}/WHEEL +1 -1
  46. mpflash/download.py +0 -364
  47. mpflash-1.24.7.dist-info/RECORD +0 -56
  48. {mpflash-1.24.7.dist-info → mpflash-1.25.0.dist-info}/LICENSE +0 -0
  49. {mpflash-1.24.7.dist-info → mpflash-1.25.0.dist-info}/entry_points.txt +0 -0
mpflash/download.py DELETED
@@ -1,364 +0,0 @@
1
- """
2
- Module to download MicroPython firmware for specific boards and versions.
3
- Uses the micropython.org website to get the available versions and locations to download firmware files.
4
- """
5
-
6
- import functools
7
- import itertools
8
- import re
9
- from pathlib import Path
10
- from typing import Dict, List, Optional
11
- from urllib.parse import urljoin
12
-
13
- # #########################################################################################################
14
- # make sure that jsonlines does not mistake the MicroPython ujson for the CPython ujson
15
- import jsonlines
16
- import requests
17
- from bs4 import BeautifulSoup
18
- from loguru import logger as log
19
- from rich.progress import track
20
-
21
- from mpflash.common import PORT_FWTYPES, FWInfo
22
- from mpflash.errors import MPFlashError
23
- from mpflash.mpboard_id import get_known_ports
24
- from mpflash.versions import clean_version
25
-
26
- # avoid conflict with the ujson used by MicroPython
27
- jsonlines.ujson = None # type: ignore
28
- # #########################################################################################################
29
-
30
-
31
- MICROPYTHON_ORG_URL = "https://micropython.org/"
32
-
33
- # Regexes to remove dates and hashes in the filename that just get in the way
34
- RE_DATE = r"(-\d{8}-)"
35
- RE_HASH = r"(.g[0-9a-f]+\.)"
36
- # regex to extract the version and the build from the firmware filename
37
- # group 1 is the version, group 2 is the build
38
- RE_VERSION_PREVIEW = r"v([\d\.]+)-?(?:preview\.)?(\d+)?\."
39
- # 'RPI_PICO_W-v1.23.uf2'
40
- # 'RPI_PICO_W-v1.23.0.uf2'
41
- # 'RPI_PICO_W-v1.23.0-406.uf2'
42
- # 'RPI_PICO_W-v1.23.0-preview.406.uf2'
43
- # 'RPI_PICO_W-v1.23.0-preview.4.uf2'
44
- # 'RPI_PICO_W-v1.23.0.uf2'
45
- # 'https://micropython.org/resources/firmware/RPI_PICO_W-20240531-v1.24.0-preview.10.gc1a6b95bf.uf2'
46
- # 'https://micropython.org/resources/firmware/RPI_PICO_W-20240531-v1.24.0-preview.10.uf2'
47
- # 'RPI_PICO_W-v1.24.0-preview.10.gc1a6b95bf.uf2'
48
-
49
-
50
- # use functools.lru_cache to avoid needing to download pages multiple times
51
- @functools.lru_cache(maxsize=500)
52
- def get_page(page_url: str) -> str:
53
- """Get the HTML of a page and return it as a string."""
54
- response = requests.get(page_url)
55
- return response.content.decode()
56
-
57
-
58
- @functools.lru_cache(maxsize=500)
59
- def get_board_urls(page_url: str) -> List[Dict[str, str]]:
60
- """
61
- Get the urls to all the board pages listed on this page.
62
- Assumes that all links to firmware have "class": "board-card"
63
-
64
- Args:
65
- page_url (str): The url of the page to get the board urls from.
66
-
67
- Returns:
68
- List[Dict[str, str]]: A list of dictionaries containing the board name and url.
69
-
70
- """
71
- downloads_html = get_page(page_url)
72
- soup = BeautifulSoup(downloads_html, "html.parser")
73
- tags = soup.findAll("a", recursive=True, attrs={"class": "board-card"})
74
- # assumes that all links are relative to the page url
75
- boards = [tag.get("href") for tag in tags]
76
- if "?" in page_url:
77
- page_url = page_url.split("?")[0]
78
- return [{"board": board, "url": page_url + board} for board in boards]
79
-
80
-
81
- def board_firmware_urls(board_url: str, base_url: str, ext: str) -> List[str]:
82
- """
83
- Get the urls to all the firmware files for a board.
84
- Args:
85
- page_url (str): The url of the page to get the board urls from.
86
- ??? base_url (str): The base url to join the relative urls to.
87
- ext (str): The extension of the firmware files to get. (with or withouth leading .)
88
-
89
- the urls are relative urls to the site root
90
-
91
- """
92
- html = get_page(board_url)
93
- soup = BeautifulSoup(html, "html.parser")
94
- # get all the a tags:
95
- # 1. that have a url that starts with `/resources/firmware/`
96
- # 2. end with a matching extension for this port.
97
- tags = soup.findAll(
98
- "a",
99
- recursive=True,
100
- attrs={"href": re.compile(r"^/resources/firmware/.*\." + ext.lstrip(".") + "$")},
101
- )
102
- if "?" in base_url:
103
- base_url = base_url.split("?")[0]
104
- links: List = [urljoin(base_url, tag.get("href")) for tag in tags]
105
- return links
106
-
107
-
108
- # boards we are interested in ( this avoids getting a lot of boards we don't care about)
109
- # The first run takes ~60 seconds to run for 4 ports , all boards
110
- # so it makes sense to cache the results and skip boards as soon as possible
111
- def get_boards(ports: List[str], boards: List[str], clean: bool) -> List[FWInfo]:
112
- # sourcery skip: use-getitem-for-re-match-groups
113
- """
114
- Retrieves a list of firmware information for the specified ports and boards.
115
-
116
- Args:
117
- ports (List[str]): The list of ports to check for firmware.
118
- boards (List[str]): The list of boards to retrieve firmware information for.
119
- clean (bool): A flag indicating whether to perform a clean retrieval.
120
-
121
- Returns:
122
- List[FWInfo]: A list of firmware information for the specified ports and boards.
123
-
124
- """
125
- board_urls: List[FWInfo] = []
126
- if ports is None:
127
- ports = get_known_ports()
128
- for port in ports:
129
- download_page_url = f"{MICROPYTHON_ORG_URL}download/?port={port}"
130
- urls = get_board_urls(download_page_url)
131
- # filter out boards we don't care about
132
- urls = [board for board in urls if board["board"] in boards]
133
- # add the port to the board urls
134
- for board in urls:
135
- board["port"] = port
136
-
137
- for board in track(
138
- urls,
139
- description=f"Checking {port} download pages",
140
- transient=True,
141
- refresh_per_second=1,
142
- show_speed=False,
143
- ):
144
- # add a board to the list for each firmware found
145
- firmware_urls: List[str] = []
146
- for ext in PORT_FWTYPES[port]:
147
- firmware_urls += board_firmware_urls(board["url"], MICROPYTHON_ORG_URL, ext)
148
- for _url in firmware_urls:
149
- board["firmware"] = _url
150
- fname = Path(board["firmware"]).name
151
- if clean:
152
- # remove date from firmware name
153
- fname = re.sub(RE_DATE, "-", fname)
154
- # remove hash from firmware name
155
- fname = re.sub(RE_HASH, ".", fname)
156
- fw_info = FWInfo(
157
- filename=fname,
158
- port=port,
159
- board=board["board"],
160
- preview="preview" in _url,
161
- firmware=_url,
162
- version="",
163
- )
164
- # board["firmware"] = _url
165
- # board["preview"] = "preview" in _url # type: ignore
166
- if ver_match := re.search(RE_VERSION_PREVIEW, _url):
167
- fw_info.version = clean_version(ver_match.group(1))
168
- fw_info.build = ver_match.group(2) or "0"
169
- fw_info.preview = fw_info.build != "0"
170
- # # else:
171
- # # board.$1= ""
172
- # if "preview." in fw_info.version:
173
- # fw_info.build = fw_info.version.split("preview.")[-1]
174
- # else:
175
- # fw_info.build = "0"
176
-
177
- fw_info.ext = Path(fw_info.firmware).suffix
178
- fw_info.variant = fw_info.filename.split("-v")[0] if "-v" in fw_info.filename else ""
179
-
180
- board_urls.append(fw_info)
181
- return board_urls
182
-
183
-
184
- def key_fw_ver_pre_ext_bld(x: FWInfo):
185
- "sorting key for the retrieved board urls"
186
- return x.variant, x.version, x.preview, x.ext, x.build
187
-
188
-
189
- def key_fw_var_pre_ext(x: FWInfo):
190
- "Grouping key for the retrieved board urls"
191
- return x.variant, x.preview, x.ext
192
-
193
-
194
- def download_firmwares(
195
- firmware_folder: Path,
196
- ports: List[str],
197
- boards: List[str],
198
- versions: Optional[List[str]] = None,
199
- *,
200
- force: bool = False,
201
- clean: bool = True,
202
- ) -> int:
203
- """
204
- Downloads firmware files based on the specified firmware folder, ports, boards, versions, force flag, and clean flag.
205
-
206
- Args:
207
- firmware_folder : The folder to save the downloaded firmware files.
208
- ports : The list of ports to check for firmware.
209
- boards : The list of boards to download firmware for.
210
- versions : The list of versions to download firmware for.
211
- force : A flag indicating whether to force the download even if the firmware file already exists.
212
- clean : A flag indicating to clean the date from the firmware filename.
213
- """
214
- skipped = downloaded = 0
215
- versions = [] if versions is None else [clean_version(v) for v in versions]
216
- # handle renamed boards
217
- boards = add_renamed_boards(boards)
218
-
219
- unique_boards = get_firmware_list(ports, boards, versions, clean)
220
-
221
- for b in unique_boards:
222
- log.debug(b.filename)
223
- # relevant
224
-
225
- log.info(f"Found {len(unique_boards)} relevant unique firmwares")
226
- if not unique_boards:
227
- log.error("No relevant firmwares could be found on https://micropython.org/download")
228
- log.info(f"{versions=} {ports=} {boards=}")
229
- log.info("Please check the website for the latest firmware files or try the preview version.")
230
- return 0
231
-
232
- firmware_folder.mkdir(exist_ok=True)
233
-
234
- with jsonlines.open(firmware_folder / "firmware.jsonl", "a") as writer:
235
- for board in unique_boards:
236
- filename = firmware_folder / board.port / board.filename
237
- filename.parent.mkdir(exist_ok=True)
238
- if filename.exists() and not force:
239
- skipped += 1
240
- log.debug(f" {filename} already exists, skip download")
241
- continue
242
- log.info(f"Downloading {board.firmware}")
243
- log.info(f" to {filename}")
244
- try:
245
- r = requests.get(board.firmware, allow_redirects=True)
246
- with open(filename, "wb") as fw:
247
- fw.write(r.content)
248
- board.filename = str(filename.relative_to(firmware_folder))
249
- except requests.RequestException as e:
250
- log.exception(e)
251
- continue
252
- writer.write(board.to_dict())
253
- downloaded += 1
254
- # if downloaded > 0:
255
- # clean_downloaded_firmwares(firmware_folder)
256
- log.success(f"Downloaded {downloaded} firmwares, skipped {skipped} existing files.")
257
- return downloaded + skipped
258
-
259
-
260
- def get_firmware_list(ports: List[str], boards: List[str], versions: List[str], clean: bool):
261
- """
262
- Retrieves a list of unique firmware information based on the specified ports, boards, versions, and clean flag.
263
-
264
- Args:
265
- ports : The list of ports to check for firmware.
266
- boards : The list of boards to filter the firmware by.
267
- versions : The list of versions to filter the firmware by.
268
- clean : A flag indicating whether to perform a clean check.
269
-
270
- Returns:
271
- List[FWInfo]: A list of unique firmware information.
272
-
273
- """
274
-
275
- log.trace("Checking MicroPython download pages")
276
- preview = "preview" in versions
277
- board_urls = sorted(get_boards(ports, boards, clean), key=key_fw_ver_pre_ext_bld)
278
-
279
- log.debug(f"Total {len(board_urls)} firmwares")
280
-
281
- relevant = [
282
- board for board in board_urls if board.version in versions and board.build == "0" and board.board in boards and not board.preview
283
- ]
284
-
285
- if preview:
286
- relevant.extend([board for board in board_urls if board.board in boards and board.preview])
287
- log.debug(f"Matching firmwares: {len(relevant)}")
288
- # select the unique boards
289
- unique_boards: List[FWInfo] = []
290
- for _, g in itertools.groupby(relevant, key=key_fw_var_pre_ext):
291
- # list is aleady sorted by build so we can just get the last item
292
- sub_list = list(g)
293
- unique_boards.append(sub_list[-1])
294
- log.debug(f"Last preview only: {len(unique_boards)}")
295
- return unique_boards
296
-
297
-
298
- def download(
299
- destination: Path,
300
- ports: List[str],
301
- boards: List[str],
302
- versions: List[str],
303
- force: bool,
304
- clean: bool,
305
- ) -> int:
306
- """
307
- Downloads firmware files based on the specified destination, ports, boards, versions, force flag, and clean flag.
308
-
309
- Args:
310
- destination : The destination folder to save the downloaded firmware files.
311
- ports : The list of ports to check for firmware.
312
- boards : The list of boards to download firmware for.
313
- versions : The list of versions to download firmware for.
314
- force : A flag indicating whether to force the download even if the firmware file already exists.
315
- clean : A flag indicating whether to clean the date from the firmware filename.
316
-
317
- Returns:
318
- int: The number of downloaded firmware files.
319
-
320
- Raises:
321
- MPFlashError : If no boards are found or specified.
322
-
323
- """
324
- if not boards:
325
- log.critical("No boards found, please connect a board or specify boards to download firmware for.")
326
- raise MPFlashError("No boards found")
327
-
328
- try:
329
- destination.mkdir(exist_ok=True, parents=True)
330
- except (PermissionError, FileNotFoundError) as e:
331
- log.critical(f"Could not create folder {destination}")
332
- raise MPFlashError(f"Could not create folder {destination}") from e
333
- try:
334
- result = download_firmwares(destination, ports, boards, versions, force=force, clean=clean)
335
- except requests.exceptions.RequestException as e:
336
- log.exception(e)
337
- raise MPFlashError("Could not connect to micropython.org") from e
338
-
339
- return result
340
-
341
-
342
- def add_renamed_boards(boards: List[str]) -> List[str]:
343
- """
344
- Adds the renamed boards to the list of boards.
345
-
346
- Args:
347
- boards : The list of boards to add the renamed boards to.
348
-
349
- Returns:
350
- List[str]: The list of boards with the renamed boards added.
351
-
352
- """
353
- renamed = {
354
- "PICO": ["RPI_PICO"],
355
- "PICO_W": ["RPI_PICO_W"],
356
- "GENERIC": ["ESP32_GENERIC", "ESP8266_GENERIC"], # just add both of them
357
- }
358
- _boards = boards.copy()
359
- for board in boards:
360
- if board in renamed and renamed[board] not in boards:
361
- _boards.extend(renamed[board])
362
- if board != board.upper() and board.upper() not in boards:
363
- _boards.append(board.upper())
364
- return _boards
@@ -1,56 +0,0 @@
1
- mpflash/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- mpflash/add_firmware.py,sha256=1h0HsA-EVi3HXLmoEvzwY_a-GuWYzPwulTYHHBB8THg,3428
3
- mpflash/ask_input.py,sha256=RJHGGrhYniSu-bdoKnKptE3DtpiCREJGRTZmFazvG-E,8946
4
- mpflash/basicgit.py,sha256=NO27JTPUsnMWQ2bKI_zsIFsFTfCZO3QKbvQ23kIehxU,10734
5
- mpflash/bootloader/__init__.py,sha256=Qy3E6tETPnzMga9LgD5UgOvJ0zZIBEqhtEVb4v8CTWQ,107
6
- mpflash/bootloader/activate.py,sha256=orQOw4XTkXVZI-rMInRb0T5Wp3qA_BlzbJUA2gyBToU,2361
7
- mpflash/bootloader/detect.py,sha256=fBrILi7-ICRaregqms3PYqwiQVAJC0rXVhpyzDkoPQI,2690
8
- mpflash/bootloader/manual.py,sha256=2IfxrTFRso78FezVMTOrXMEojamFDDTXrAM9g1SbjNA,3170
9
- mpflash/bootloader/micropython.py,sha256=v_kZkvg0uWZDbMrT78gmiYHbD83QLdnrctvEClI8iRg,529
10
- mpflash/bootloader/touch1200.py,sha256=hQ2Ng2zkvnCnQ4A7Sir4SuW3nlSu1ojUfHCLbIiDjrE,1119
11
- mpflash/cli_download.py,sha256=6p83u0Iqyq-V6zS_zQbngSgnCnE0thNPR02r_12_d_Y,3660
12
- mpflash/cli_flash.py,sha256=pVqEsDocDT3KmIMTpXdym-ZlzThLSIp6oVtYib65dys,7595
13
- mpflash/cli_group.py,sha256=VWwYHiPVV19sQEr5lL8LlcPyZ-A6Gs79eMDJy8LLt90,2615
14
- mpflash/cli_list.py,sha256=ja21AZ4yghGTtOHkEtV1EOmT6EYxOiU2gzJc-mZaDto,2427
15
- mpflash/cli_main.py,sha256=5EkvzsqOUDXvNaW814oSUcPWeNhnwh78Sg0MteDv_fk,1133
16
- mpflash/common.py,sha256=umTouKs5Wb7Q2zOaaoO9nqmlpHIaiDBRIGYIkZMBVO8,7558
17
- mpflash/config.py,sha256=tdpvAvAlpco1GfeG2evn5tAKYluLEanqwrrvkir7QcQ,1073
18
- mpflash/connected.py,sha256=woYhuXoWpfzRMDUpBLVQZbVTGtMsKWNd5z1rsR1ELXA,3578
19
- mpflash/download.py,sha256=wE4uBSFFMAKOBH4jwHweL0wVYh4vi74t1673ku_IeoA,14305
20
- mpflash/downloaded.py,sha256=nxTWU4lvhcthqvVmzpYHnXCnjD8wJv0KFq2KtaoTO1A,5160
21
- mpflash/errors.py,sha256=IAidY3qkZsXy6Pm1rdmVFmGyg81ywHhse3itaPctA2w,247
22
- mpflash/flash/__init__.py,sha256=g4Fp8MiquaDZXIvRJwYRkkll1MMyRud7x6qmwCk9Lgo,2096
23
- mpflash/flash/esp.py,sha256=CRF8sfIyuDZoYC1luBy92zLm6Qz3dnBBWjuJ3A4_crE,2284
24
- mpflash/flash/stm32.py,sha256=dqp9BZ4Vr-6GlQcF12TSmRf-5TXkov9qvCpMgeUJc7Y,574
25
- mpflash/flash/stm32_dfu.py,sha256=W-3JsRQyf3DduoIRXDmGZ35RogqtjQgcJnk-GOtQoLE,3090
26
- mpflash/flash/uf2/__init__.py,sha256=haL84hP2p1ZjKF6dXJJHAB_NTf7jT91MuZvmvg9SpIA,3617
27
- mpflash/flash/uf2/boardid.py,sha256=U5wGM8VA3wEpUxQCMtuXpMZZomdVH8J_Zd5_GekUMuU,423
28
- mpflash/flash/uf2/linux.py,sha256=UgoF_GhJdxA2NvfcFNV69YuDg3v4ueLM0epsDzmfKK0,4440
29
- mpflash/flash/uf2/macos.py,sha256=TGGijlnMJy3RDhdPS3WsPOE2lWFOQbqC3xn4cxLu8GA,1229
30
- mpflash/flash/uf2/uf2disk.py,sha256=4_P2l-kedM7VSliA2u706LQLxvu3xWSod1-lj-xjZis,298
31
- mpflash/flash/uf2/windows.py,sha256=v89eXA3QwZxilCazi3Z--yY8UNtZ94trNEJ6U7XUuXA,1333
32
- mpflash/flash/worklist.py,sha256=owS3xJbWC-SzbK9z6jQER0Kat3OIV09IxnV-f-tjGlY,5998
33
- mpflash/list.py,sha256=lP_S5xbC0Men9HsXcIxOsP0bFRlCYh5CynMLFJx8cEE,3607
34
- mpflash/logger.py,sha256=dI_H_a7EOdQJyvoeRHQuYeZuTKYVUS3DUPTLhE9rkdM,1098
35
- mpflash/mpboard_id/__init__.py,sha256=b9PJiKFqmfyYgfi0-pbWGp2mrljdgvO6DNy0ABS8izU,3898
36
- mpflash/mpboard_id/add_boards.py,sha256=xBC9DULWq6nR1Nui2Z7tiLHxC0QohPXgJOYvSgrGwEM,10063
37
- mpflash/mpboard_id/board.py,sha256=JKb4T67HmK7widW-4c1PgilvywMbZYToLk9Fyokm-6Q,1163
38
- mpflash/mpboard_id/board_id.py,sha256=A2os0LU7-i_0JuEcMc1PbLt79TiAq16qRl7fv5uzsA8,3374
39
- mpflash/mpboard_id/board_info.zip,sha256=0rQkVLOBRg5dwvkLmJtRdCXwKiA9arkWYVH7N8dYuNw,21720
40
- mpflash/mpboard_id/store.py,sha256=n85vnUAxGKv1C23wkm22ZFAFGK6AZZiCFvc1lGJJjis,1703
41
- mpflash/mpremoteboard/__init__.py,sha256=Vydc7jZai32lrGTUjwylZT9U8yulsgLIk39mnuI_k9I,9666
42
- mpflash/mpremoteboard/mpy_fw_info.py,sha256=eRjhqN7MpmYE9TiS4iukquZZs3QE_lD5zv_vOPSjNrk,4821
43
- mpflash/mpremoteboard/runner.py,sha256=-PgzAeBGbyXaAUlwyiw4mcINsP2U1XRRjP1_QdBrxpg,4786
44
- mpflash/vendor/board_database.py,sha256=QE3oXj96oTAsx94gNfHMYWu_RgBTHW1v9Wp5dq_Dt-Q,5253
45
- mpflash/vendor/click_aliases.py,sha256=c853EHSlkE2DvFqeFvFpwXKuJj3_jsXDP7iotVOKaAw,3156
46
- mpflash/vendor/dfu.py,sha256=ZXMcE6aH4-43Wh4tbQT4U-q-BU3RUiL3JAxmP_QAK2s,5755
47
- mpflash/vendor/pico-universal-flash-nuke/LICENSE.txt,sha256=Zkc2iTNbib2NCMwtLjMEz0vFCPglgvaw6Mj7QiWldpQ,1484
48
- mpflash/vendor/pico-universal-flash-nuke/universal_flash_nuke.uf2,sha256=QuPMppqHMVOt3vDVU0bikHRLsTiDRQYNUcGQ_OLRFGI,28160
49
- mpflash/vendor/pydfu.py,sha256=_MdBRo1EeNeKDqFPSTB5tNL1jGSBJgsVeVjE5e7Pb8s,20542
50
- mpflash/vendor/readme.md,sha256=BQ7Uxf8joeYMjTUuSLLBG49ob6a9MgFPIEwuc72-Mfw,415
51
- mpflash/versions.py,sha256=qGkE2LTzQ1QDyHc9-wzsHsRrN7PWK69xt0Vq3EVojms,4452
52
- mpflash-1.24.7.dist-info/entry_points.txt,sha256=Jk_visOhYOsZIcSP2Ms9hKqfKy1iorR-6dYltSoWCpY,52
53
- mpflash-1.24.7.dist-info/LICENSE,sha256=mWpNhsIxWzetYNnTpr4eb3HtgsxGIC8KcYWxXEcxQvE,1077
54
- mpflash-1.24.7.dist-info/METADATA,sha256=kkeoaVrJt6i62yFsvXWdczncaJ3bz3055X05Ijt6z-g,17757
55
- mpflash-1.24.7.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
56
- mpflash-1.24.7.dist-info/RECORD,,