Metadata-Version: 2.1
Name: flashlab
Version: 1.0.2
Summary: A simple tool to help creating and editing Motorola APX FLASHcodes
Author-Email: k4yt3x <i@k4yt3x.com>
License: ISC
Requires-Python: >=3.8
Requires-Dist: PyQt6>=6.6.1
Description-Content-Type: text/markdown

# FLASHlab

A simple tool to help creating and editing Motorola APX FLASHcodes.

The reason for the creation of this tool is to allow unlimited editing of FLASHcodes for experimental reasons. Most existing FLASHcode encoders will only allow you to first select a radio model, then edit options supported by that model. This tool allows you to add/remove any option to/from the FLASHcode. It also allows you to remove options from the FLASHcode without affecting any other unrelated bits.

If you're looking to create a normal FLASHcode for your radio, you may want to use one of these FLASHcode encoders instead:

- [FLASHcode Portal](https://flashcode.radiocentral.motorolasolutions.com/) (requires MSI account)
- [CS Flashcode Tool](https://communications.support/flashcode/encoder.php)
- [akardam.net Flashcode Encoder](https://www.akardam.net/r/m/tools/fencode.pl)

![screenshot](https://github.com/k4yt3x/flashlab/assets/21986859/c3b31116-e862-48ed-8604-e5286a196030)

## Usages

Install the program:

```shell
# install from PyPI
pip install flashlab

# install from Git repository
pip install git+https://github.com/k4yt3x/flashlab.git
```

This program can be launched in two modes: CLI and GUI:

```shell
# start in CLI mode
flashlab cli

# start in GUI mode
flashlab gui
```

If the above returns command not found, you can also do:

```shell
# start in CLI mode
python -m flashlab cli

# start in GUI mode
python -m flashlab gui
```
