Terminal UI for exporting RFEM 6 input and result tables to Excel
Project description
rfem-table-export
A terminal UI (TUI) for exporting RFEM 6
tables — both model inputs and analysis results — to a formatted Excel
workbook. It attaches to an already-running RFEM 6 process over the Dlubal gRPC
API, lets you confirm the active model, pick tables from a tree that mirrors the
RFEM GUI navigators, and writes a new timestamped .xlsx with one sheet per
table plus an info sheet capturing export metadata and any warnings.
The table-picker UX is modeled on SAP2000's "Export Tables to Excel" dialog.
Features
- Attach to a live model — connects to the running RFEM 6 process and shows the active model's name and path so you can verify you're exporting the right one before you start.
- Navigator-style table tree — tables are organized exactly like the RFEM GUI (Structure → Basic Objects → Nodes, …; Load Cases and Combinations; Loads; Results → Nodes/Members/Lines/Surfaces).
- Inputs and results — model objects (nodes, members, surfaces, materials, cross-sections, supports, hinges, load cases/combinations, loads) and static result tables (support forces, internal forces, deformations) iterated across every load case and combination.
- Object filtering (
o) — toggle between all objects and only the objects currently selected in the RFEM model (read live via the API'sonly_selectedquery); the status bar shows a live count of what's selected (e.g. "1 member"). To export a saved RFEM object selection or Group of Object Selections, activate it in RFEM (which sets the live selection), then toggle to Currently selected objects. Tables whose rows aren't tied to selectable objects (materials, cross-sections, load cases/combinations) ignore the filter and always export in full; loads, supports and result rows are filtered by the object they act on/report. - Case / combination filtering (
c) — for result tables, pick exactly which load cases and combinations to export from a check-list instead of iterating every one. - Result-row detail (
t) — cycle a result table's rows between all, envelope only (extreme rows whosetagends inmin/max), and itemized only (the per-location rows, with nomin/maxtag). - Analysis-aware — result tables are greyed out and unselectable until the model has been solved, so you never queue a result export that can't run.
- Metric or imperial units — pick a unit system and every value is
converted to it (metric: kN, kN·m, m/mm, MPa; imperial: kip, kip·ft, ft/in,
ksi). Conversion is dimensionality-driven via Pint:
no multipliers are hard-coded, so compound units (kN·m, kN/m, kN/m²) convert
correctly and can't be cross-applied. The info sheet records the system and
the target unit for each magnitude; converted columns carry their unit in the
header (e.g.
n [kip],area_axial [in²]). - One workbook per export — a new file is always written to
results/; nothing is overwritten. - Resilient — a single problematic table produces a warning on the info sheet rather than aborting the whole export.
Requirements
- Windows with RFEM 6.14 installed and running, a model open, and the gRPC web service / API enabled.
- A valid Dlubal API key (see Configuration).
- Python 3.11+.
Version pin: the
dlubal-apiclient version must match the RFEM server version. This project pinsdlubal-api==2.14.3for RFEM 6.14. If you run a different RFEM version, change the pin to match — mismatched versions cause object-type enum drift and silently wrong/empty exports.
Installation
Run without installing (recommended)
With uv you can run the latest published release directly — no clone, no virtualenv:
uvx rfem-table-export
Pin a specific version (handy for matching your RFEM/dlubal-api version):
uvx rfem-table-export@0.2.0
The console command is also available as
rfem-export; withuvxuse the distribution name (rfem-table-export) so version pinning works.
From a clone (for development)
uv sync
Or with pip:
pip install -e .
Usage
-
Start RFEM 6, open and (for result tables) solve your model.
-
Launch the TUI:
uv run rfem-export # or python -m rfem_export.app
-
Confirm the banner shows the correct active model.
-
Navigate the tree and toggle the tables you want:
Key Action spaceToggle table aSelect all nClear selection oObject scope (all / currently selected) cCase & combination filter (results) tResult rows (all / envelope / itemized) uCycle units (metric/imperial) eExport rReconnect to RFEM qQuit -
Press
e. The workbook is written toresults/rfem_export_<model>_<timestamp>.xlsx. The info sheet records the active object and case filters, and each table's row lists how many rows the filter kept.
Units
Choose the unit system with u in the TUI, or --units {metric,imperial} on
the command line (default: imperial). Values are converted by dimensionality,
never by a hard-coded factor:
- Input tables carry a unit per column straight from the RFEM API
(
m,kN,kNm,mm⁴, …). Pint parses that unit, derives its dimensionality and computes the conversion. - Result tables expose no units over the API, so each result table declares
the SI unit of its value columns (in
catalog.py). Only the dimension is asserted — Pint still computes every factor.
A length lands in feet/metres for geometry but inches/millimetres for section dimensions and deflections (RFEM's own unit categories drive this). Quantities with no conversion rule (e.g. dimensionless ratios) are passed through unchanged and noted in the export log. If Pint isn't installed, values are written in their source units and the info sheet says so.
Configuration
The API key is resolved in this order:
--api-keycommand-line argumentRFEM_API_KEYenvironment variable- Dlubal's bundled
config.ini([api_keys] default = …), scanned across installed RFEM versions
uv run rfem-export --api-key YOUR_KEY
Project layout
rfem_export/
__init__.py
connection.py # API-key resolution, attach to RFEM, model info, unit summary
catalog.py # curated navigator tree of exportable tables (TableDef / Group)
units.py # Pint-based, dimensionality-driven metric/imperial conversion
extract.py # object tables + result tables -> pandas DataFrames (+ units)
excel.py # workbook writer: one sheet per table + info sheet
app.py # Textual TUI + console entry point
examples/
export_reactions.py # original single-table proof-of-concept
Extending table coverage
Add a TableDef to the TREE in rfem_export/catalog.py.
Both extraction and the TUI pick up new entries automatically — inputs via
get_object_table for an ObjectType (which also supplies per-column units);
results via get_result_table across every loading. For a result table,
also fill in result_units (the SI unit of each value column) so the values can
be converted — result tables carry no units over the API.
Development
Lint and format with ruff (the same checks CI runs):
uvx ruff check . # lint
uvx ruff format --check . # formatting
uvx ruff format . # auto-format
Versioning & releases
The package version is derived automatically from git tags via
hatch-vcs — there is no hardcoded
version to bump. Tag vX.Y.Z becomes version X.Y.Z.
To cut a release:
git tag v0.2.0
git push origin v0.2.0
Pushing the tag triggers the Release workflow, which lints, builds the sdist/wheel, verifies the built version matches the tag, publishes to PyPI, and creates a GitHub release.
One-time PyPI setup: publishing uses Trusted Publishing (OIDC), so no API token is stored. On PyPI, add a trusted publisher for this project with: owner
Mark-Milkis, repositoryrfem-table-export, workflowrelease.yml, and environmentpypi. (For the very first publish you may need to use the "pending publisher" flow since the project doesn't exist on PyPI yet.)
License
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 rfem_table_export-0.3.0.tar.gz.
File metadata
- Download URL: rfem_table_export-0.3.0.tar.gz
- Upload date:
- Size: 32.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
912e235c1c2598c6c27abf1cd98727a4671f32d170e72bf3120b0e087ee390ce
|
|
| MD5 |
af26c7ed348668c6a9e87b1f31c0a9e1
|
|
| BLAKE2b-256 |
db045d07645445e009b5ab37cc9ce5ac36637ce2521c94af2864c57f011db55c
|
Provenance
The following attestation bundles were made for rfem_table_export-0.3.0.tar.gz:
Publisher:
release.yml on Mark-Milkis/rfem-table-export
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rfem_table_export-0.3.0.tar.gz -
Subject digest:
912e235c1c2598c6c27abf1cd98727a4671f32d170e72bf3120b0e087ee390ce - Sigstore transparency entry: 1704587687
- Sigstore integration time:
-
Permalink:
Mark-Milkis/rfem-table-export@a65a990b21893637d04c7924c4bc7b38dfa9a082 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/Mark-Milkis
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a65a990b21893637d04c7924c4bc7b38dfa9a082 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rfem_table_export-0.3.0-py3-none-any.whl.
File metadata
- Download URL: rfem_table_export-0.3.0-py3-none-any.whl
- Upload date:
- Size: 33.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
168e0e5468c15f2f9b792576467474b6982cbe8e323fe73d8aa79bc9ee1cde01
|
|
| MD5 |
0997f63e14e8de2197058d91f40be2b9
|
|
| BLAKE2b-256 |
f996f1f8027b0b9ede20cb5e0650ea10eee2f41b8e7613ff0787306f2f84d7b4
|
Provenance
The following attestation bundles were made for rfem_table_export-0.3.0-py3-none-any.whl:
Publisher:
release.yml on Mark-Milkis/rfem-table-export
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rfem_table_export-0.3.0-py3-none-any.whl -
Subject digest:
168e0e5468c15f2f9b792576467474b6982cbe8e323fe73d8aa79bc9ee1cde01 - Sigstore transparency entry: 1704587708
- Sigstore integration time:
-
Permalink:
Mark-Milkis/rfem-table-export@a65a990b21893637d04c7924c4bc7b38dfa9a082 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/Mark-Milkis
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a65a990b21893637d04c7924c4bc7b38dfa9a082 -
Trigger Event:
push
-
Statement type: