Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update description #81

Merged
merged 1 commit into from
Jun 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/chomper)
[![GitHub license](https://img.shields.io/github/license/sledgeh4w/chomper)](https://github.com/sledgeh4w/chomper/blob/main/LICENSE)

Chomper is a lightweight emulation framework based on [Unicorn](https://github.com/unicorn-engine/unicorn). It is mainly used to emulate native programs on Android and iOS.
Chomper is a lightweight emulation framework based on [Unicorn](https://github.com/unicorn-engine/unicorn). It is mainly used to emulate iOS executables and libraries. In addition, it also provides limited support for Android native libraries.

## Features

Expand All @@ -25,7 +25,7 @@ $ pip install chomper

## Usage

Emulate iOS executable files.
Emulate iOS executables.

```python
import uuid
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "chomper"
description = "A lightweight emulation framework for performing encryption or decryption of mobile platform (Android, iOS)."
description = "A lightweight emulation framework for emulating iOS executables and libraries."
readme = "README.md"
license = { text = "MIT" }
authors = [
Expand Down
2 changes: 1 addition & 1 deletion src/chomper/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@


class Chomper:
"""Lightweight emulation framework for emulating native programs on Android and iOS.
"""Lightweight emulation framework for emulating iOS executables and libraries.

Args:
arch: The architecture to emulate, support ARM and ARM64.
Expand Down
Loading