Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

OMLE Server

PyPI Tests

Inference server for OMLE models, speaking the Open Inference Protocol over both REST and gRPC.

pip install omle-server
omle-server                        # built-in defaults
omle-server --help                 # every flag
omle-server --model-dir ./models --rest-port 9000
omle-server --config /etc/omle/server.json

This package is a delivery vehicle for a compiled binary, not a Python library. Installing it puts omle-server on PATH; that console script execs the native executable, so no Python remains in the process once the server is running.

Requirements

OpenSSL 3 must be present on the system. Everything else the server needs — gRPC, Abseil, protobuf, Drogon, jsoncpp, simdjson and the OMLE runtime itself — is linked statically into the binary, so there is nothing else to install.

OpenSSL is the deliberate exception. Bundling it would freeze a cryptographic library at build time, cut off from the security updates the operating system provides, and it could then only be patched by releasing a new wheel. It ships with every current Linux distribution and is in the Homebrew baseline on macOS:

# only if it is somehow missing
apt install libssl3          # Debian / Ubuntu
dnf install openssl-libs     # Fedora / RHEL
brew install openssl@3       # macOS

Windows is the exception: there is no system OpenSSL to link, so that wheel carries its own statically. Nothing to install, but a fix there needs a new release rather than an operating-system update.

Wheels are published for linux-x86_64, macos-arm64 and windows-x86_64. Other platforms build from source — see the repository README.

Configuring

Four sources, each overriding the one above it: built-in defaults, then a JSON config file, then the environment, then command-line flags.

omle-server init-config -o server.json    # every setting, at its default
omle-server --config server.json
Variable Flag Default Meaning
OMLE_CONFIG --config configs/server.json config file
OMLE_MODEL_DIR --model-dir /models directory scanned for .omle files
OMLE_REST_PORT --rest-port 8080 REST listen port
OMLE_GRPC_PORT --grpc-port 8081 gRPC listen port
OMLE_REST_THREADS --rest-threads one per core REST workers
OMLE_GRPC_THREADS --grpc-threads one per core gRPC workers
OMLE_MODEL_THREADS --model-threads 1 threads per model
OMLE_LOG_LEVEL --log-level info trace…error
OMLE_MODEL_DIR=./models omle-server --rest-port 9000
omle-server --help                        # the full list

Environment sits below flags so a container image can set a baseline that docker run still overrides.

There is deliberately no Python wrapper translating arguments into these. It could only restate what the binary already does, and would drift from it. To launch the server from Python, run it as a subprocess like any other program:

import os, subprocess
import omle_server

proc = subprocess.Popen(
    [omle_server.binary_path()],
    env={**os.environ, "OMLE_MODEL_DIR": "/models"},
)

omle_server.binary_path() returns the absolute path to the bundled executable, and is the only function this package exposes.

Checking it works

curl localhost:8080/v2/health/ready          # 200 once the registry has loaded
curl localhost:8080/v2/models/<name>         # input/output metadata
  • omle — the model IR, protobuf I/O and validation
  • omle-convert — converters from trained scikit-learn, XGBoost, LightGBM, CatBoost and Spark ML models
  • omle-runtime — the C++ inference runtime, with a scikit-learn-style API
  • omle-spark — Spark ML transformer for scoring DataFrames from PySpark
  • omle-viewer — interactive DAG viewer for Jupyter and the browser

License

Apache-2.0

Release files for omle-server 0.2.0rc2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distributions (wheels)

Table of built distributions (wheels) for omle-server 0.2.0rc2
File Interpreter ABI Platform
omle_server-0.2.0rc2-py3-none-win_amd64.whl Python 3 none Windows x86-64 Details
omle_server-0.2.0rc2-py3-none-manylinux_2_28_x86_64.whl Python 3 none Linux glibc 2.28+ x86-64 Details
omle_server-0.2.0rc2-py3-none-macosx_11_0_arm64.whl Python 3 none macOS 11.0+ ARM64 Details

Total release size: 24.3 MB

Release files / omle_server-0.2.0rc2-py3-none-win_amd64.whl

Download URL omle_server-0.2.0rc2-py3-none-win_amd64.whl
Size 7.2 MB
Tags Python 3 Windows x86-64
SHA-256 checksum
How to use checksums
05268dd9ae1ca6c3af57413cc1aef1b18a9cfc5145380c86d597e3f4aeb1668e
BLAKE2b-256 checksum
How to use checksums
91bdcf573bb31ab3cca6e49451a4e6945dc30c50b1fdba1cddf269bbc1945028
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 25, 2026.

Transparency log

Release files / omle_server-0.2.0rc2-py3-none-manylinux_2_28_x86_64.whl

Download URL omle_server-0.2.0rc2-py3-none-manylinux_2_28_x86_64.whl
Size 10.1 MB
Tags Linux glibc 2.28+ x86-64 Python 3
SHA-256 checksum
How to use checksums
0656c4f6fd9cecb131fc483bb2e242cf0892b95ab9fb947b2a647b3b5c7352fb
BLAKE2b-256 checksum
How to use checksums
fa0211e8c338f12a58252dacf968a3c784cb6f5cdf6b225eb7c2235993e28359
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 25, 2026.

Transparency log

Release files / omle_server-0.2.0rc2-py3-none-macosx_11_0_arm64.whl

Download URL omle_server-0.2.0rc2-py3-none-macosx_11_0_arm64.whl
Size 7.0 MB
Tags Python 3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
b048ec37767f71392fc97531149d6d8dae69ac4cf93bf510ae0e4a1af37cf40c
BLAKE2b-256 checksum
How to use checksums
5d33b7a8d74058051ad145b06f8660abb993b02f4c5f69f98a9b0d2592d978fe
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 25, 2026.

Transparency log
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page