Metadata-Version: 2.4
Name: gse-gsatmicro-mgr
Version: 5.1.0
Summary: Tools for interacting with GSatMicro Core products
Project-URL: homepage, https://www.gsat.us
Author-email: Bogdan Marinescu <bogdan@gsat.us>
License-File: LICENSE.md
Requires-Python: >=3.10
Requires-Dist: cbor2>=5.6.5
Requires-Dist: click>=8.1.0
Requires-Dist: crc>=7.0.0
Requires-Dist: flask>=3.1.0
Requires-Dist: gse-gsatmicro-utils>=3.0.0
Requires-Dist: prettytable>=3.11.0
Requires-Dist: pyftpdlib>=2.0.1
Requires-Dist: python-minifier>=2.11.3
Requires-Dist: tqdm>=4.66.6
Description-Content-Type: text/markdown

# gsemgr

`gsemgr` is a tool for interacting with GSatMicro Core series products at https://www.gsat.us:

- Multi-core firmware updates.
- Run Python code on the device and check its output.
- Read/write properties.

Support is available at support@gsat.us

# Installation

It is highly recommended to install this package in a virtual environment.

Use the command below to create a virtual environment:

```
$ python3 -m venv v-gsetools
```

The next step is to activate the newly created virtual environment. The activation command is platform-specific and shell-specific, see [this link](https://docs.python.org/3/library/venv.html#how-venvs-work) for more details. As an example, the activation command for a POSIX environment is given below:

```
$ source ./v-gsetools/bin/activate
```

After the environment is activated, you can install this package:

```
$ pip install gse-gsatmicro-mgr
```

Each time you need to access the tools, remember to activate the virtual environment as per the instructions above.