Skip to main content

Java-free shared OWL 2 structural parsing and communication kernel

Project description

pyowl-core

PyPI Python License

pyowl-core is a Java-free OWL 2 structural kernel for Python 3.10 and newer. It parses an ontology once and exposes the same immutable view to Exact-OM, pyELK, pyHermiT, pyOwl2Vec-Star-projector, and OAEI evaluation code. Consumers build their own reasoning or projection IR; they do not reparse paths or own a second OWL object model.

Version 0.1.0 was the first production publication of the stabilized 0.1 API. Version 0.1.1 is the current corrective release candidate and keeps the same public API, model, wire, adapter, and encoded-view versions. The portable implementation is the compatibility baseline; native wheels are optional accelerators, but every file for one package version is built atomically from one source revision. Release decisions and retained limitations are recorded in the release checklist.

Installation

python -m pip install pyowl-core

The portable wheel provides the complete Python implementation without Java or a native compiler. Compatible platform wheels may add private Rust acceleration, but public behavior and values remain identical. Use BackendPreference.PYTHON for a quiet, explicit portable path or BackendPreference.NATIVE when acceleration is required and fallback would be an error.

Quick start

from pyowl_core import (
    BackendPreference,
    DocumentFormat,
    ImportPolicy,
    LoadOptions,
    load_snapshot,
)

source = b"Ontology(<urn:example> Declaration(Class(<urn:example#A>)))"
snapshot = load_snapshot(
    source,
    document_iri="urn:example:document",
    options=LoadOptions(
        format=DocumentFormat.FUNCTIONAL,
        imports=ImportPolicy.IGNORE,
        backend=BackendPreference.PYTHON,
    ),
)

assert snapshot.is_complete
assert len(tuple(snapshot.iter_axioms())) == 1

Passing snapshot to another package is an identity-preserving handoff: coerce_snapshot(snapshot) is snapshot. A provider implements owl_snapshot() and returns the same OntologyView. Cross-process handoff uses encode_snapshot, decode_snapshot, or open_snapshot; pickle and ontology path round-trips are not part of the contract.

What the package owns

  • The complete immutable OWL 2 structural model and canonical identity.
  • RDF/XML, Turtle, OWL/XML, and Functional Syntax acquisition and rendering.
  • Explicit import resolution, provenance, limits, and secure offline defaults.
  • Documents, resolved snapshots, persistent overlays, and zero-copy composites.
  • Lazy structural indexes, fingerprints, and validated wire/cache transport.
  • Equivalent complete Python behavior and optional private Rust acceleration.

It deliberately does not classify, realize, check consistency, project graph edges, repair an ontology, or expose consumer-private IDs. See architecture and view lifecycles.

Release status

The distribution name is pyowl-core; the import package is pyowl_core. The source tree carries the production 0.1.1 patch release candidate. Native wheels are optional optimizations and must never remove features from the pure fallback. The 1.0 API remains a future compatibility milestone; it is not implied by the production status of the 0.1 line.

Documentation

Normative requirements begin at the master specification.

Compatibility boundary

  • Distribution: pyowl-core
  • Import: pyowl_core
  • Python: >=3.10
  • Current package line: production 0.1.x
  • API: (0, 1); model schema: 1; wire: (1, 1); adapter protocol: 1
  • Runtime/build: no JDK, JRE, JVM, OWLAPI, JPype, ROBOT, Maven, Gradle, or Java archive
  • Project source license: Apache License 2.0; packaged third-party notices are listed in THIRD_PARTY_LICENSES/

The exact tested consumer commits and ranges are recorded in reports/integration/consumer-compatibility.json.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyowl_core-0.1.1.tar.gz (2.7 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pyowl_core-0.1.1-py3-none-any.whl (436.8 kB view details)

Uploaded Python 3

pyowl_core-0.1.1-cp314-cp314-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.14Windows x86-64

pyowl_core-0.1.1-cp314-cp314-manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pyowl_core-0.1.1-cp314-cp314-manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pyowl_core-0.1.1-cp314-cp314-macosx_13_0_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14macOS 13.0+ x86-64

pyowl_core-0.1.1-cp314-cp314-macosx_13_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

pyowl_core-0.1.1-cp313-cp313-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86-64

pyowl_core-0.1.1-cp313-cp313-manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pyowl_core-0.1.1-cp313-cp313-manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pyowl_core-0.1.1-cp313-cp313-macosx_13_0_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

pyowl_core-0.1.1-cp313-cp313-macosx_13_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

pyowl_core-0.1.1-cp312-cp312-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86-64

pyowl_core-0.1.1-cp312-cp312-manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pyowl_core-0.1.1-cp312-cp312-manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pyowl_core-0.1.1-cp312-cp312-macosx_13_0_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

pyowl_core-0.1.1-cp312-cp312-macosx_13_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

pyowl_core-0.1.1-cp311-cp311-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86-64

pyowl_core-0.1.1-cp311-cp311-manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pyowl_core-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pyowl_core-0.1.1-cp311-cp311-macosx_13_0_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

pyowl_core-0.1.1-cp311-cp311-macosx_13_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

pyowl_core-0.1.1-cp310-cp310-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86-64

pyowl_core-0.1.1-cp310-cp310-manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

pyowl_core-0.1.1-cp310-cp310-manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

pyowl_core-0.1.1-cp310-cp310-macosx_13_0_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

pyowl_core-0.1.1-cp310-cp310-macosx_13_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 13.0+ ARM64

File details

Details for the file pyowl_core-0.1.1.tar.gz.

File metadata

  • Download URL: pyowl_core-0.1.1.tar.gz
  • Upload date:
  • Size: 2.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pyowl_core-0.1.1.tar.gz
Algorithm Hash digest
SHA256 e3e73cf21dd34e44f8d7bd9c6d610fa1e5529fe4ce84dfc234872e2b204ea888
MD5 48da17b4910e0328b30a52dbc8457ef8
BLAKE2b-256 df058fd3959005e50899aac607c487eee5548f4cd646c15255712d9382d12213

See more details on using hashes here.

File details

Details for the file pyowl_core-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: pyowl_core-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 436.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pyowl_core-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 e26cd7ade38bf42218acdcc8722a678f02c8a2920e45a571e6145911b63e763c
MD5 fd775fef1ffd67f1bb92392e7ab48b2a
BLAKE2b-256 3e8a9189e4537f85604fbf402d5741951231c9d99d758324555ff63eb0f64ab5

See more details on using hashes here.

File details

Details for the file pyowl_core-0.1.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pyowl_core-0.1.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pyowl_core-0.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 54a88ceefebfee3e8d5d92850ec7a464aa5961a7d086fd226fa1fc73412aa15e
MD5 d77bbebde3dfaa84cf1a9d4bef778f3c
BLAKE2b-256 8ee5a8b17f037ba254718bd9ccf6455074552f3c5c9c6e9702a46dd94ff4e6f0

See more details on using hashes here.

File details

Details for the file pyowl_core-0.1.1-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyowl_core-0.1.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ca065cbc3f381eb526e63c7e189a1533d2c3b17aede94e23f13bb99ff4352d1f
MD5 91ba6d1deeefe2c37e03739cd61fe840
BLAKE2b-256 aea59255710d051cf79c5130fa01374dde619bb0d755d9b88f693230cabc390f

See more details on using hashes here.

File details

Details for the file pyowl_core-0.1.1-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyowl_core-0.1.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f8c1fc60f6d7cd92cc34d3fe459ac8dc8f433a14f1217fd7441ebaf944afe857
MD5 16274222ddb86efcc2834eaed944643c
BLAKE2b-256 cb91ea64d57b59cee1901825f1d6d5724b5337e4387b5040b18a9ca574df5a6c

See more details on using hashes here.

File details

Details for the file pyowl_core-0.1.1-cp314-cp314-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pyowl_core-0.1.1-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 175ecdde40bbe7d4d65336e0f92c1e9b5d6580b406b1ec88098fbaa852e26be3
MD5 790bbbfc24f864b0cd07357558c20ded
BLAKE2b-256 e62bb67d2526ae2ed6cf4a60eb0e12ddb718df293adc75fdc1ed500f28ccef9c

See more details on using hashes here.

File details

Details for the file pyowl_core-0.1.1-cp314-cp314-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pyowl_core-0.1.1-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 e1a5a15e16efc94ad5bda1b550c08557855afed48c38b482a02f5a31395e43ab
MD5 a342d83ad30bdcad0636f1d5ff4a5ade
BLAKE2b-256 4b11e406680c068593ec29091c69ed83dec72e74315804a51e18c32c7f9fad6d

See more details on using hashes here.

File details

Details for the file pyowl_core-0.1.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyowl_core-0.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pyowl_core-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 043ed5a2145e403724a893d3e12f40d12fc9caa237f9d54fdcb216890edbd359
MD5 6dbd202c38b94d6680c5dcd3fba0da43
BLAKE2b-256 84c96a8baff1e5bd5c1401ec89ae12e6f1e638b9b9518ffc9b4911073f88529a

See more details on using hashes here.

File details

Details for the file pyowl_core-0.1.1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyowl_core-0.1.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4dfaeb8cf943e26d0eef59bf409205b0d89d9209cd51cbeeca507dfa715c798e
MD5 01ece05c0e785993acf902be4ac70854
BLAKE2b-256 f7b672b96a54ccdda76f424679b2089b2f16aeb316debf6eea1c8bf0f21a43a3

See more details on using hashes here.

File details

Details for the file pyowl_core-0.1.1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyowl_core-0.1.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 469c09460811e4700c440f870bb0a9372fcc3f3afa8b6c9801e330e878cc53b5
MD5 8eab992dd1f880df887cbcd6d0bd22f4
BLAKE2b-256 cc2d141fccabf3a874c3b3d909b11c4de218b6cbf6997e314cdb2f0727c0251b

See more details on using hashes here.

File details

Details for the file pyowl_core-0.1.1-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pyowl_core-0.1.1-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 004a6ff6d2a45a9a77e4bf5d15a478e705a34f91dba43d779add919821fcea1c
MD5 78818e22768e29c36b2bfa429d016b40
BLAKE2b-256 82a4ccba20af4a3dd45ee1eebfaa67f5a4fa8f48d946119750af6d0e60ebdff2

See more details on using hashes here.

File details

Details for the file pyowl_core-0.1.1-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pyowl_core-0.1.1-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 cda248f2225b5ea8aa610d80a288f3881573fe236131e90ea0a510cb25d57d04
MD5 ba3d9fdd9e39b9fccfc7556fd10faad1
BLAKE2b-256 f320dea19ecfe09dae6903a09f1ed22613f8985459de829b03c12d9729387b01

See more details on using hashes here.

File details

Details for the file pyowl_core-0.1.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyowl_core-0.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pyowl_core-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c4f16b80b557eafa87624ffdd1821e7e97714a74fdb939ef1dbe21baf69530c8
MD5 c5255de15a97ab0a9a9798abf6cf33c3
BLAKE2b-256 3c04ba705eea835bf307b9032e70cf0010d7216baa240c40eebebc1b2ee5ba9f

See more details on using hashes here.

File details

Details for the file pyowl_core-0.1.1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyowl_core-0.1.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7890c2bad86a66ce9be752a9fc88d9b99c8a51eb5a3218fe8622497993f20fa4
MD5 1cd56bf67497dd4622b083aca9f4b805
BLAKE2b-256 7645a81afb01318d84976bcefeb710234eae5164a5ba4ef899d319e57c53bb82

See more details on using hashes here.

File details

Details for the file pyowl_core-0.1.1-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyowl_core-0.1.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 39db5e9ba02a8272f96628eed33cb498e053c4a1efe6c2244b9e73a0a79c6565
MD5 e448049a90cdddf24c41ae40737b4eea
BLAKE2b-256 fb63f9becb71f4a854eddbccac99c6a7e45d36c1f17c05fb3d2ca67d697573d2

See more details on using hashes here.

File details

Details for the file pyowl_core-0.1.1-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pyowl_core-0.1.1-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 99bfe5a6fc184ddc0f5552b58e642b4f1d22d1e993fedf1367834c4e743c58ad
MD5 6438d6157688d0a4f25c481af2f49774
BLAKE2b-256 73bda24e1cb055746f419db96184cda0ed3d67b0996db73dad56b7e37216ffc9

See more details on using hashes here.

File details

Details for the file pyowl_core-0.1.1-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pyowl_core-0.1.1-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 67ddb93e69550651ce6cc52afe70abc48d2f87448623cc1cb8f0a66f337e287f
MD5 a10c13ea4139cd10a30368c04e11619e
BLAKE2b-256 0c2276137cb6497d9a9ba3e99401064066bcc308b28c66eddd4a682be380e741

See more details on using hashes here.

File details

Details for the file pyowl_core-0.1.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyowl_core-0.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pyowl_core-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0f9d8f359fa59f3fb4fbff9e1e201479d402f2eb34b7314b4b74183f9aaa909b
MD5 ddae685d99691a5da47f238ab92c0900
BLAKE2b-256 378fc8370d094b70569368b72388f23c41bc9f743845174f481345c272ce7ecb

See more details on using hashes here.

File details

Details for the file pyowl_core-0.1.1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyowl_core-0.1.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 460011e05122af9247a9a79884c8ae6e4b7516d4ed84e39b6a1a99fd7f413cbf
MD5 6ea2150b7a8a14f99dd4036b1d261c5d
BLAKE2b-256 9042d7e5bcc0a27f58662defad0d7369fe3360dee616ce5cd89b486861bf9a5b

See more details on using hashes here.

File details

Details for the file pyowl_core-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyowl_core-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2ec35e0370347e8aed687b27f812a552656ec120241610877aac01f2a3f37fe1
MD5 e112227cb3f96b37cd72c185aec5caa9
BLAKE2b-256 08982c7dc5174fe13317346331036746e29b2dc47ddf0650a939e7f8a82bfbf4

See more details on using hashes here.

File details

Details for the file pyowl_core-0.1.1-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pyowl_core-0.1.1-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 f0bd4c1a681214ecf538480a10e407aaf669225d2712be5baea2348d78f22afa
MD5 705157d2dd4f52dd6043068de8553989
BLAKE2b-256 f4d2892ca2dcd43dc45f7a342c0e0627c07f33e00c93ff2507a2536cc623e44f

See more details on using hashes here.

File details

Details for the file pyowl_core-0.1.1-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pyowl_core-0.1.1-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 8e0776545a35af1cc4d898c36ea61982f1b006d677eaadfd402fe1af360f4a1c
MD5 423b90525ddf1ec8b540df0963442ea2
BLAKE2b-256 1f16fabd82c2677d0531286234d34662210bebda9c5b57824dbcbd3938d814bd

See more details on using hashes here.

File details

Details for the file pyowl_core-0.1.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyowl_core-0.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pyowl_core-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f8a7066165db2394182feecd64ba0846cce16ddfad78fdbadda8bc88b4f6011e
MD5 dd65ae4cde31a2b919b48b543815477b
BLAKE2b-256 66a8496304c06d487c78402d52d6a79635fdcb4327d3c33b1c04e5ab48127f16

See more details on using hashes here.

File details

Details for the file pyowl_core-0.1.1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyowl_core-0.1.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d4052a8d22c7901839df39ec446d7153ea0b400958a7e564bb14d65e866d1881
MD5 b5ee167e0420387b693288a39797dfd4
BLAKE2b-256 2498789084346b37aa4b17641a137b4acc4524ada0c3ab9ed9c410ab0ef93e9f

See more details on using hashes here.

File details

Details for the file pyowl_core-0.1.1-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyowl_core-0.1.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 26b2c25bc605d97df17098936835a565b0942341507a1df831af36a08af2451d
MD5 578e83f1a32030447cf740913e44b9e1
BLAKE2b-256 1ef05da8373ad5d76ae0a8bd384a79a9e5918e42dbba0c4e12a6f64b3596316b

See more details on using hashes here.

File details

Details for the file pyowl_core-0.1.1-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pyowl_core-0.1.1-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 98c5c0a2f8e4c4415fdc0ffd52378c1b1f5c27eb502abb8fe6500a2f00d96712
MD5 24ee87d96f2ba84fdb26fe1b9fadbd4d
BLAKE2b-256 3af8f946e841f991ada229c9e50534303e82f9a66edf6eb568e1d28486e0301e

See more details on using hashes here.

File details

Details for the file pyowl_core-0.1.1-cp310-cp310-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pyowl_core-0.1.1-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 f1b07362f33d91d0977071abb633d58c63297658504598d277483752a0de2e08
MD5 4b221538ee4bdc27fb3aa0253c1635a3
BLAKE2b-256 ee5b8ead05a920ebce0e64451a0f1539675226dc071fbc9ae73a0aff82bbb5aa

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page