Metadata-Version: 2.1
Name: rpycdec
Version: 0.1.1
Summary: A tool to decrypt .rpyc files
Project-URL: Homepage, https://github.com/cnfatal/rpycdec
Project-URL: Bug Tracker, https://github.com/cnfatal/rpycdec/issues
Author-email: cnfatl <cnfatal@gmail.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Utilities
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# rpycdec

A tools for decompiling and translating Ren'py compiled script files (.rpyc and .rpymc).

## Features

- Decompile for Ren'py compiled script files .rpyc to .rpy files.
- Automatic scan translations in scripts and translate to target language (default using Google Translate).

## Usage

Install with pip:

```sh
pip install rpypcdec
```

Decompile a file or directory:

```sh
rpycdec [--force] <path to rpyc file or dir>
```

Decompile and translate a file or directory:

```sh
rpycdec --translate <path to rpyc file or dir>
```

### Library usage

```python
import rpycdec

rpycdec.decompile(filename)
```

## Development  

Use pipenv to manage dependencies:

```sh
pipenv install --dev
```
