{"id":13802650,"url":"https://github.com/mattytrentini/micropython-hexdump","last_synced_at":"2025-05-13T13:32:37.680Z","repository":{"id":180567308,"uuid":"665343840","full_name":"mattytrentini/micropython-hexdump","owner":"mattytrentini","description":"An implementation of Hexdump for MicroPython","archived":false,"fork":false,"pushed_at":"2024-02-19T11:46:59.000Z","size":5,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-08-04T00:07:28.358Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mattytrentini.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2023-07-12T02:17:26.000Z","updated_at":"2024-03-26T01:11:31.000Z","dependencies_parsed_at":"2024-03-03T17:55:55.366Z","dependency_job_id":null,"html_url":"https://github.com/mattytrentini/micropython-hexdump","commit_stats":null,"previous_names":["mattytrentini/micropython-hexdump"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattytrentini%2Fmicropython-hexdump","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattytrentini%2Fmicropython-hexdump/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattytrentini%2Fmicropython-hexdump/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mattytrentini%2Fmicropython-hexdump/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mattytrentini","download_url":"https://codeload.github.com/mattytrentini/micropython-hexdump/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225229882,"owners_count":17441336,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-04T00:01:49.434Z","updated_at":"2024-11-18T18:30:32.132Z","avatar_url":"https://github.com/mattytrentini.png","language":"Python","funding_links":[],"categories":["Libraries"],"sub_categories":["Utilities"],"readme":"# micropython-hexdump\n\nA simple implementation of hexdump (`hd` and `xxd`) tools for MicroPython.\n\n## Installation\n\nUse `mip` from the command line using `mpremote`:\n\n```bash\n\u003e mpremote mip install github:mattytrentini/micropython-hexdump\n```\n\nor from within a running instance of MicroPython that has an established\ninternet connection.\n\n```python\n\u003e\u003e\u003e import mip\n\u003e\u003e\u003e mip.install(\"github:mattytrentini/micropython-hexdump\")\n```\n\n## Example usage\n\n```text\n\u003e\u003e\u003e from os import urandom\n\u003e\u003e\u003e from hexdump import hd, xxd\n\u003e\u003e\u003e data = urandom(100)\n\u003e\u003e\u003e hd(data)\n00000000  4d 9a 16 3d 4c 87 c4 31  9e 95 36 e3 f8 49 4b 4b  |M..=L..1..6..IKK|\n00000010  98 12 6b b6 a6 a3 fd 1b  91 a5 21 95 73 ac 35 6f  |..k.......!.s.5o|\n00000020  dc b4 4d 0b 43 fb bb 36  d6 17 52 4d 40 b4 04 ed  |..M.C..6..RM@...|\n00000030  2b 7c 8b 30 84 a3 96 9a  71 e4 e5 69 d1 62 b7 06  |+|.0....q..i.b..|\n00000040  fd 89 3a f7 b3 06 04 39  f9 70 62 33 d2 56 35 e2  |..:....9.pb3.V5.|\n00000050  fc 7e 16 46 5f 35 1d 62  63 d4 5c 18 f3 de 6d 3c  |.~.F_5.bc.\\...m\u003c|\n00000060  a1 1f fa ed                                       |....|\n00000061\n\u003e\u003e\u003e xxd(data)\n00000000: 4d 9a 16 3d 4c 87 c4 31 9e 95 36 e3 f8 49 4b 4b  M..=L..1..6..IKK\n00000010: 98 12 6b b6 a6 a3 fd 1b 91 a5 21 95 73 ac 35 6f  ..k.......!.s.5o\n00000020: dc b4 4d 0b 43 fb bb 36 d6 17 52 4d 40 b4 04 ed  ..M.C..6..RM@...\n00000030: 2b 7c 8b 30 84 a3 96 9a 71 e4 e5 69 d1 62 b7 06  +|.0....q..i.b..\n00000040: fd 89 3a f7 b3 06 04 39 f9 70 62 33 d2 56 35 e2  ..:....9.pb3.V5.\n00000050: fc 7e 16 46 5f 35 1d 62 63 d4 5c 18 f3 de 6d 3c  .~.F_5.bc.\\...m\u003c\n00000060: a1 1f fa ed                                      ....\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmattytrentini%2Fmicropython-hexdump","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmattytrentini%2Fmicropython-hexdump","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmattytrentini%2Fmicropython-hexdump/lists"}