Python API and CLI tool to read Mindustry's campaign global stats.
Project description
Mindustry Campaign Stats
Python API and CLI tool to read Mindustry's campaign global stats.
PyPI - Documentation - Source code - Issue tracker - Changelog
Prerequisites
- Python >= 3.10
Installation
From PyPi
pip install mindustry-campaign-stats
Locally
After cloning/downloading the repo:
pip install .
Usage
API
The API consists of:
- A
load()function, which reads data from the given binary file-like object and returns the raw parsed data as a dictionary - A
compute()function, which transforms the above dictionary to aStatsinstance - A
Planetenum (Serpulo,Erekir) to be used withcompute()
import mindustry_campaign_stats
from pprint import pprint
try:
with open('settings.bin', 'rb') as fp: # Note it's opened in binary mode
raw_settings = mindustry_campaign_stats.load(fp)
pprint(raw_settings)
computed = mindustry_campaign_stats.compute(raw_settings, mindustry_campaign_stats.Planet.Erekir)
print(computed.totals.storage.capacity)
pprint(
computed.to_dict()
)
except Exception as e:
print(e)
CLI
In its simplest form, the CLI reads data from the given settings.bin filename, then writes a human-readable ASCII table
of computed stats to stdout. Note you must choose between the serpulo or erekir campaign.
mindustry-campaign-stats settings.bin erekir
Several options are available to customize its output. Please read below.
Common options
These apply to all output formats.
| Name | Effect |
|---|---|
--refresh |
Run the CLI indefinitely, listening for modification in the given settings.binfile until it's terminated (CTRL+C). This option implies different behavior changes in function of output format (documented below). |
ASCII table options
These apply to the default output format.
| Name | Effect |
|---|---|
--compact |
Enable compact mode: useless rows and columns (typically having all values equal to zero) will not be shown. |
--totals |
Display a simplified table with totals only. |
--items |
Display stats for the given (partial) item names only. Matching is done in a case-insensitive fashion, and multiple names may be given separated by commas. |
--sectors |
Display stats for the given (partial) sector names only. Matching is done in a case-insensitive fashion, and multiple names may be given separated by commas. |
When --refresh is set as well, the table will be automatically updated in your terminal (the screen is cleared before any
update happens).
JSON options
These apply to the JSON output format.
| Name | Effect |
|---|---|
--json |
Switches output format to JSON, specifically JSON Lines. |
--pretty |
Pretty-print the outputted JSON (ignored if --refresh is set as well as it would break JSON Lines formatting). |
When --refresh is set as well, a stream of JSON Lines will be sequentially written to stdout.
settings.bin format
This file is designed much like a persistent key-value store. It is used to store both user settings and campaigns-related data. It is formatted as follows (everything is big-endian):
- 4 bytes (int32) - Number of fields to read (
fields_count) - Fields sequence (based on
fields_count):- 2 bytes (uint16) - Length of the field name (
field_name_length) field_name_lengthbytes - MUTF-8-encoded field name- 1 byte (int8) - Field type ID (
field_type_id) field_type_idvalue determines how to read the next bytes:0:- 1 byte (boolean) - A boolean value
1:- 4 bytes (int32) - A 32 bits integer
2:- 8 bytes (int64) - A 64 bits integer
3:- 4 bytes (float) - A single-precision floating-point number
4:- 2 bytes (uint16) - Length of the field value (
field_value_length) field_value_lengthbytes - An MUTF-8-encoded string
- 2 bytes (uint16) - Length of the field value (
5:- 4 bytes (int32) - Length of the field value (
field_value_length) field_value_lengthbytes - A binary value. Most likely UBJSON data
- 4 bytes (int32) - Length of the field value (
- 2 bytes (uint16) - Length of the field name (
References
Development
Getting source code and installing the package with dev dependencies
- Clone the repository
- From the root directory, run:
pip install -e ".[dev]"
Releasing the package
From the root directory, run python setup.py upload. This will build the package, create a git tag and publish on PyPI.
__version__ in mindustry_campaign_stats/__version__.py must be updated beforehand. It should adhere to Semantic Versioning.
An associated GitHub release must be created following the Keep a Changelog format.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mindustry_campaign_stats-2.4.0.tar.gz.
File metadata
- Download URL: mindustry_campaign_stats-2.4.0.tar.gz
- Upload date:
- Size: 14.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e0805145c34186c3cf5cc5f0c4dd602584f0c88ebb48a45aab91b38c346ecd4
|
|
| MD5 |
937daa36f62838044f3d8d30b288d033
|
|
| BLAKE2b-256 |
12f32101471c5b998fc5230f0a5cc49185237d7e73194d5934531cc5189a8030
|
File details
Details for the file mindustry_campaign_stats-2.4.0-py3-none-any.whl.
File metadata
- Download URL: mindustry_campaign_stats-2.4.0-py3-none-any.whl
- Upload date:
- Size: 12.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f87a04969a593ffc65a724e19dd4a0ceb8ed715150d562ebae2891bf94818ad
|
|
| MD5 |
82f01ec9d15d19e8858e20bcfe72a7b2
|
|
| BLAKE2b-256 |
2547f97937499375dba198b88b6755271f5fc3dd4fa368fe621b384bfb65fb2b
|