fitsolver-client
A minimal, dependency-free ctypes client for the FitSolver C ABI
(fitsolver_lib). JSON in, JSON out -- the same contract as
fitsolver.solve(), but without needing a compiled CPython extension.
Install
As a normal dependency (portal team, deployments)
Released wheels vendor the native fitsolver_lib inside the package,
so there is nothing else to build or configure:
pip install fitsolver-client
# requirements.txt / pyproject.toml
fitsolver-client>=0.6.0
One wheel is published per OS (Linux manylinux_2_28, macOS x86_64 +
arm64, Windows x64); each is valid for every Python >= 3.9. See
.github/workflows/wheels.yml for how they are built and published.
From a local checkout (multi-repo development)
pip install -e path/to/FantasticSolver/python/fitsolver_client \
--config-settings editable_mode=compat
editable_mode=compat writes a plain-path .pth instead of an import
hook, so editors / Pylance resolve import fitsolver_client statically.
An editable install has no vendored library; it uses your local build/
(see below), so a cmake --build is picked up with no reinstall.
The shared library
Resolution order at the first solve() call:
FITSOLVER_LIB_PATH-- exact path to the.dll/.so/.dylib.FITSOLVER_REPO_ROOT-- looked up under<root>/build/.- A
build/directory found by walking up from this package's location (coverspip install -efrom inside a FitSolver checkout). fitsolver_client/_libs/-- the copy vendored into a release wheel.
Importing the package never fails on its own; only solve() does, with
SolverUnavailableError, if none of the above resolve.
To build the library for a local checkout:
cmake -B build
cmake --build build --config Release --target fitsolver_lib
Building a wheel by hand
cmake --build build --config Release --target fitsolver_lib
python python/fitsolver_client/tools/vendor_lib.py --build-dir build
python -m build --wheel python/fitsolver_client
# optional: normalise the tag to py3-none-<platform>
python -m wheel tags --python-tag py3 --abi-tag none \
--platform-tag win_amd64 --remove python/fitsolver_client/dist/*.whl
Releasing a new version to PyPI
PyPI versions are immutable, so a release is always a deliberate version
bump + tag. Publishing is automated (.github/workflows/wheels.yml) and
uses Trusted Publishing (OIDC) -- no API token. Do it whenever the
native fitsolver_lib behaviour changes (the wheels vendor the compiled
library) or the client code itself changes.
-
Bump the version. Edit
versioninpython/fitsolver_client/pyproject.toml(semver: patch for a bug-fix-only lib rebuild, minor for new/changed packing behaviour, major for a breaking request/response change). Note the same version in this README's install snippet. -
Commit it on
main.git add python/fitsolver_client/pyproject.toml python/fitsolver_client/README.md git commit -m "fitsolver-client: release vX.Y.Z" git push origin main
The push runs the wheels workflow in build-and-smoke-test-only mode (no upload) -- check it is green before tagging.
-
Tag and push the tag -- this is what publishes to PyPI.
git tag vX.Y.Z # tag name must match the pyproject version, with a leading v git push origin vX.Y.Z
The tag push triggers the full matrix: per-OS wheels (Linux
manylinux_2_28, macOSuniversal2, Windows x64) + an sdist, each smoke-tested in a clean venv, thenpublish-pypiuploads them. -
Verify.
pip install fitsolver-client==X.Y.Zin a fresh venv; check https://pypi.org/project/fitsolver-client/ shows the new files. -
Bump consumers. Update
fitsolver-client>=X.Y.Zinfantastic-portal/backend/pyproject.toml(and anywhere else it is pinned).
First-time setup (already done for this project)
On PyPI: Account -> Publishing -> add a pending publisher -- project
fitsolver-client, owner FantasticDivision, repo Solver, workflow
wheels.yml, environment pypi. Create a matching pypi environment
under the GitHub repo's Settings -> Environments. No secrets are stored.
Usage
import fitsolver_client
response = fitsolver_client.solve({
"items": [
{"ItemCode": "ITM-001", "ItemReference": "Widget A",
"Width": 100, "Length": 200, "Depth": 50, "Weight": 1.0},
],
"boxes": [
{"Reference": "SML", "Width": 150, "Length": 150, "Depth": 150,
"MaxWeight": 8.5},
],
})
See the FitSolver README's "Request / response JSON schema" section for the exact shape of the request and response dicts.
Release files for fitsolver-client 0.6.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| fitsolver_client-0.6.0.tar.gz | 5.7 kB | Details |
Built distributions (wheels)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| fitsolver_client-0.6.0-py3-none-win_amd64.whl | Python 3 | none | Windows x86-64 | Details |
| fitsolver_client-0.6.0-py3-none-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl | Python 3 | none | Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 | Details |
| fitsolver_client-0.6.0-py3-none-macosx_11_0_universal2.whl | Python 3 | none | macOS 11.0+ universal2 (ARM64, x86-64) | Details |
Total release size: 702.4 kB
Release files / fitsolver_client-0.6.0.tar.gz
| Download URL | fitsolver_client-0.6.0.tar.gz |
|---|---|
| Size | 5.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
741ef017241cb7f1c074b9c29863b6dd25ee55632bec5caa8147ccff2bb158f6
|
|
BLAKE2b-256 checksum How to use checksums |
3f4dcf1f24d63df5a9c1bf0c43b9db0d7e830baaeffde1d07933370a03377781
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.
Transparency logRelease files / fitsolver_client-0.6.0-py3-none-win_amd64.whl
| Download URL | fitsolver_client-0.6.0-py3-none-win_amd64.whl |
|---|---|
| Size | 143.7 kB |
| Tags | Python 3 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
77ba02b397a0aa421f2306d02836872d76df3b5475f75d4cccbd75d2a09ad283
|
|
BLAKE2b-256 checksum How to use checksums |
f5b5887eaef1ce60a81f83593b8b8d0603af0c71f03ad48b3837e1968a020408
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.
Transparency logRelease files / fitsolver_client-0.6.0-py3-none-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
| Download URL | fitsolver_client-0.6.0-py3-none-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 246.3 kB |
| Tags | Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64 Python 3 |
|
SHA-256 checksum How to use checksums |
d9df61f2111f118899bd518fc6d7ae6ad61df665290318035f4422cd9e767bb8
|
|
BLAKE2b-256 checksum How to use checksums |
7bb2116685a732a27fbdf9a5a5d6e33802e4cf1ad737346078c71270d6bcfb4d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.
Transparency logRelease files / fitsolver_client-0.6.0-py3-none-macosx_11_0_universal2.whl
| Download URL | fitsolver_client-0.6.0-py3-none-macosx_11_0_universal2.whl |
|---|---|
| Size | 306.7 kB |
| Tags | Python 3 macOS 11.0+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
b3ba3298c72ee3d54b65fd9807f2c4d0f983dfe204663a33d5ab68917a46851c
|
|
BLAKE2b-256 checksum How to use checksums |
d141cb95d5a039b2e019cb5747843a23141629da3c21382abd997c53b459ad5a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.
Transparency log