Metadata-Version: 2.4
Name: ontologos
Version: 0.3.1
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Rust
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Summary: Python bindings for the OntoLogos OWL reasoner (pre-release)
Keywords: owl,ontology,reasoner,semantic-web,description-logic
Home-Page: https://github.com/eddiethedean/ontologos
Author-email: Odo Matthews <odosmatthews@gmail.com>
License: MIT OR Apache-2.0
Requires-Python: >=3.10
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Bug Tracker, https://github.com/eddiethedean/ontologos/issues
Project-URL: Documentation, https://github.com/eddiethedean/ontologos#readme
Project-URL: Homepage, https://github.com/eddiethedean/ontologos
Project-URL: Repository, https://github.com/eddiethedean/ontologos

# ontologos (PyPI)

Python bindings for [OntoLogos](https://github.com/eddiethedean/ontologos) — a modular Rust ontology reasoner for OWL EL, RL, and RDFS.

**This is an alpha placeholder (v0.3.1).** The package installs and reports its version. `Reasoner(path)` loads OWL files via the Rust parser. Pass `profile="rdfs"` to run RDFS materialization via `classify()`; the default profile returns not-implemented until OWL EL/RL classification ships in v0.5.

| Capability | Rust v0.3 | Python |
|------------|-----------|--------|
| In-memory ontology model | Yes (`ontologos-core`) | No |
| OWL file loading | Yes (`ontologos-parser`) | Partial (`Reasoner(path)` loads only) |
| Profile detection | Yes (`ontologos-profile`) | No |
| RDFS materialization | Yes (`ontologos-rdfs`) | Partial (`Reasoner(path, profile="rdfs")`) |
| OWL classification | No (v0.5) | No |
| Full Python API | — | v0.9 / 1.0 |

For working Rust APIs today, use [crates.io](https://crates.io/crates/ontologos-core) crates (`ontologos-core`, `ontologos-parser`, `ontologos-profile`, `ontologos-rdfs`).

```bash
pip install ontologos
```

```python
import ontologos

print(ontologos.__version__)

reasoner = ontologos.Reasoner("ontology.owl", profile="rdfs")
reasoner.classify()
```

See the [project README](https://github.com/eddiethedean/ontologos) and [ROADMAP](https://github.com/eddiethedean/ontologos/blob/main/ROADMAP.md) for milestones.

