Name | pyimg4 JSON |
Version |
0.8.7
JSON |
| download |
home_page | None |
Summary | A Python library/CLI tool for parsing Apple's Image4 format. |
upload_time | 2025-02-26 23:04:38 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | MIT License
Copyright (c) 2025 m1sta
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE. |
keywords |
iboot
image4
img4
ios
jailbreak
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
<p align="center">
<img src=".github/assets/icon.png" alt="https://github.com/m1stadev/PyIMG4" width=256px>
</p>
<h1 align="center">
PyIMG4
</h1>
<p align="center">
<a href="https://github.com/m1stadev/PyIMG4/blob/master/LICENSE">
<image src="https://img.shields.io/github/license/m1stadev/PyIMG4">
</a>
<a href="https://github.com/m1stadev/PyIMG4/stargazers">
<image src="https://img.shields.io/github/stars/m1stadev/PyIMG4">
</a>
<a href="https://github.com/m1stadev/PyIMG4">
<image src="https://tokei.rs/b1/github/m1stadev/PyIMG4?category=code&lang=python&style=flat">
</a>
<a href="https://github.com/m1stadev/PyIMG4">
<image src="https://img.shields.io/github/actions/workflow/status/m1stadev/PyIMG4/.github/workflows/python-tests.yml">
</a>
<br>
</p>
<p align="center">
A Python library/CLI tool for parsing Apple's <a href="https://www.theiphonewiki.com/wiki/IMG4_File_Format">Image4 format</a>.
</p>
## Usage
```
Usage: pyimg4 [OPTIONS] COMMAND [ARGS]...
A Python CLI tool for parsing Apple's Image4 format.
Options:
--version Show the version and exit.
-h, --help Show this message and exit.
Commands:
im4m Image4 manifest commands.
im4p Image4 payload commands.
im4r Image4 restore info commands.
img4 Image4 commands.
```
## Requirements
- Python 3.9 or later
## Installation
- Install from <a href="https://pypi.org/p/pyimg4">PyPI</a>:
- ```python3 -m pip install pyimg4```
- Local installation:
- `pip install --force-reinstall .`
## Notes
- For compression, LZFSE compression utilizes the <a href="https://pypi.org/p/apple-compress">apple-compress</a> library on *OS, and the <a href="https://pypi.org/p/lzfse">lzfse</a> library on all other OSes (due to libcompression not being available outside of Apple platforms).
- If for some reason you'd like to force the lzfse library to be used on *OS (not recommended), you can set the environment variable `PYIMG4_FORCE_LZFSE`.
## Support
For any questions/issues you have, <a href="https://github.com/m1stadev/PyIMG4/issues">open an issue<a/>.
Raw data
{
"_id": null,
"home_page": null,
"name": "pyimg4",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "iboot, image4, img4, ios, jailbreak",
"author": null,
"author_email": "m1stadev <adamhamdi31@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/c8/12/55d6439e5fcfc1552b31f839e72264617ecf8cfc885f1e5688c28714e47f/pyimg4-0.8.7.tar.gz",
"platform": null,
"description": "<p align=\"center\">\n<img src=\".github/assets/icon.png\" alt=\"https://github.com/m1stadev/PyIMG4\" width=256px> \n</p>\n\n<h1 align=\"center\">\nPyIMG4\n</h1>\n<p align=\"center\">\n <a href=\"https://github.com/m1stadev/PyIMG4/blob/master/LICENSE\">\n <image src=\"https://img.shields.io/github/license/m1stadev/PyIMG4\">\n </a>\n <a href=\"https://github.com/m1stadev/PyIMG4/stargazers\">\n <image src=\"https://img.shields.io/github/stars/m1stadev/PyIMG4\">\n </a>\n <a href=\"https://github.com/m1stadev/PyIMG4\">\n <image src=\"https://tokei.rs/b1/github/m1stadev/PyIMG4?category=code&lang=python&style=flat\">\n </a>\n <a href=\"https://github.com/m1stadev/PyIMG4\">\n <image src=\"https://img.shields.io/github/actions/workflow/status/m1stadev/PyIMG4/.github/workflows/python-tests.yml\">\n </a>\n <br>\n</p>\n\n<p align=\"center\">\nA Python library/CLI tool for parsing Apple's <a href=\"https://www.theiphonewiki.com/wiki/IMG4_File_Format\">Image4 format</a>.\n</p>\n\n## Usage\n```\nUsage: pyimg4 [OPTIONS] COMMAND [ARGS]...\n\n A Python CLI tool for parsing Apple's Image4 format.\n\nOptions:\n --version Show the version and exit.\n -h, --help Show this message and exit.\n\nCommands:\n im4m Image4 manifest commands.\n im4p Image4 payload commands.\n im4r Image4 restore info commands.\n img4 Image4 commands.\n```\n\n## Requirements\n- Python 3.9 or later\n\n## Installation\n- Install from <a href=\"https://pypi.org/p/pyimg4\">PyPI</a>:\n - ```python3 -m pip install pyimg4```\n- Local installation:\n - `pip install --force-reinstall .`\n\n## Notes\n- For compression, LZFSE compression utilizes the <a href=\"https://pypi.org/p/apple-compress\">apple-compress</a> library on *OS, and the <a href=\"https://pypi.org/p/lzfse\">lzfse</a> library on all other OSes (due to libcompression not being available outside of Apple platforms).\n - If for some reason you'd like to force the lzfse library to be used on *OS (not recommended), you can set the environment variable `PYIMG4_FORCE_LZFSE`.\n\n## Support\nFor any questions/issues you have, <a href=\"https://github.com/m1stadev/PyIMG4/issues\">open an issue<a/>.\n",
"bugtrack_url": null,
"license": "MIT License\n \n Copyright (c) 2025 m1sta\n \n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n \n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.",
"summary": "A Python library/CLI tool for parsing Apple's Image4 format.",
"version": "0.8.7",
"project_urls": {
"Bug Tracker": "https://github.com/m1stadev/PyIMG4/issues",
"Repository": "https://github.com/m1stadev/PyIMG4"
},
"split_keywords": [
"iboot",
" image4",
" img4",
" ios",
" jailbreak"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "b3121bba577d2f7b7a7415e5fd2d1141f73479a5281eed38afe182df68f0fd81",
"md5": "b2534928afe9162167754b9d8822433d",
"sha256": "1f78a4ccecddf2e1000df3781957a1397a74c2f10189906e1466df4cb767aad0"
},
"downloads": -1,
"filename": "pyimg4-0.8.7-py3-none-any.whl",
"has_sig": false,
"md5_digest": "b2534928afe9162167754b9d8822433d",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 16269,
"upload_time": "2025-02-26T23:04:35",
"upload_time_iso_8601": "2025-02-26T23:04:35.736410Z",
"url": "https://files.pythonhosted.org/packages/b3/12/1bba577d2f7b7a7415e5fd2d1141f73479a5281eed38afe182df68f0fd81/pyimg4-0.8.7-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c81255d6439e5fcfc1552b31f839e72264617ecf8cfc885f1e5688c28714e47f",
"md5": "e2b980dd1aa3b9b02f6ef9fd039a7853",
"sha256": "bdd4f914049467324d8cec9539f6d09cfb623a039f7d89bab89cccab25d1901b"
},
"downloads": -1,
"filename": "pyimg4-0.8.7.tar.gz",
"has_sig": false,
"md5_digest": "e2b980dd1aa3b9b02f6ef9fd039a7853",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 173080,
"upload_time": "2025-02-26T23:04:38",
"upload_time_iso_8601": "2025-02-26T23:04:38.441329Z",
"url": "https://files.pythonhosted.org/packages/c8/12/55d6439e5fcfc1552b31f839e72264617ecf8cfc885f1e5688c28714e47f/pyimg4-0.8.7.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-26 23:04:38",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "m1stadev",
"github_project": "PyIMG4",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "pyimg4"
}