Skip to main content

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.2.0 is the current release candidate. It introduces API (0, 2), model schema 2, wire (1, 2), and encoded structural schema 2; adapter protocol 1 is unchanged. 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. Historical 0.1.x test and performance records are retained as historical evidence and are not relabelled as 0.2.0 results. Current release decisions and remaining evidence gates 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 0.2.0 production release candidate. Native wheels are optional optimizations and must never remove features from the pure fallback. Publication remains fail-closed until the current corpus, native, consumer, and artifact evidence named in the release ledger is attached. The 1.0 API remains a future compatibility milestone; it is not implied by the production status of the 0.2 line.

Documentation

Normative requirements begin at the master specification.

Compatibility boundary

  • Distribution: pyowl-core
  • Import: pyowl_core
  • Python: >=3.10
  • Current package candidate: 0.2.0
  • API: (0, 2); model schema: 2; wire: (1, 2); adapter protocol: 1
  • Encoded structural view: pyowl-core/structural-columns schema 2
  • 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.

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.2.0.tar.gz (2.9 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.2.0-py3-none-any.whl (451.1 kB view details)

Uploaded Python 3

pyowl_core-0.2.0-cp314-cp314-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.14Windows x86-64

pyowl_core-0.2.0-cp314-cp314-manylinux_2_28_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pyowl_core-0.2.0-cp314-cp314-manylinux_2_28_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pyowl_core-0.2.0-cp314-cp314-macosx_13_0_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14macOS 13.0+ x86-64

pyowl_core-0.2.0-cp314-cp314-macosx_13_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

pyowl_core-0.2.0-cp313-cp313-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86-64

pyowl_core-0.2.0-cp313-cp313-manylinux_2_28_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pyowl_core-0.2.0-cp313-cp313-manylinux_2_28_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pyowl_core-0.2.0-cp313-cp313-macosx_13_0_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

pyowl_core-0.2.0-cp313-cp313-macosx_13_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

pyowl_core-0.2.0-cp312-cp312-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86-64

pyowl_core-0.2.0-cp312-cp312-manylinux_2_28_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pyowl_core-0.2.0-cp312-cp312-manylinux_2_28_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pyowl_core-0.2.0-cp312-cp312-macosx_13_0_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

pyowl_core-0.2.0-cp312-cp312-macosx_13_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

pyowl_core-0.2.0-cp311-cp311-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.11Windows x86-64

pyowl_core-0.2.0-cp311-cp311-manylinux_2_28_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pyowl_core-0.2.0-cp311-cp311-manylinux_2_28_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pyowl_core-0.2.0-cp311-cp311-macosx_13_0_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

pyowl_core-0.2.0-cp311-cp311-macosx_13_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

pyowl_core-0.2.0-cp310-cp310-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.10Windows x86-64

pyowl_core-0.2.0-cp310-cp310-manylinux_2_28_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

pyowl_core-0.2.0-cp310-cp310-manylinux_2_28_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

pyowl_core-0.2.0-cp310-cp310-macosx_13_0_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

pyowl_core-0.2.0-cp310-cp310-macosx_13_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.10macOS 13.0+ ARM64

File details

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

File metadata

  • Download URL: pyowl_core-0.2.0.tar.gz
  • Upload date:
  • Size: 2.9 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.2.0.tar.gz
Algorithm Hash digest
SHA256 19d387d32adaa907271a1551e424c8f20d001371ca0041e09c6dc8cc360f3728
MD5 6a650d791d2b807d182860fed0b8b43f
BLAKE2b-256 a2343210dccc664b0262a1bb68b9b219294a3013c0c9b3360714fe540b40893e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyowl_core-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 451.1 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.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2e6f7bf4f853943451626561ffde965b7507ae38aa0a8640ce357f2e5a623272
MD5 ae5514888e273545ab3421cf610b4002
BLAKE2b-256 15ef551a39cec5e393a4c05acfac6d4a0cb7796c783354e1d9ffe7f6ab776f95

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyowl_core-0.2.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.7 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.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3225b23d23d00a27d243616ff6dd6ef6707b634085e420babae8b33604a8fbd2
MD5 f62db625d1efcb213fa92a290aa3c6f0
BLAKE2b-256 246e16f9faeb11460d9dab69ea59e86b8bfe1f0b1820091b597218eb4417367c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyowl_core-0.2.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a4bda35b2335158de97cdc22382ee1ff90508f4ff08b024a97176ddbb7897110
MD5 e16a98a93219d64b8a2f35ea3c4b953a
BLAKE2b-256 1b8c71139491fc15bb2f3ecb26d497b2636bb09fc637e918f274467fb7323f83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyowl_core-0.2.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f233bd2ce7a9aa9415cc3bbd37afa5d3e6cbe28dbd4f1cf776e2dde58d23a702
MD5 edbfa7eb0eabaa30136bf9d33abb2b86
BLAKE2b-256 3969c858b4a30bb1b4ea624ab79f1b54f2ab4e49dc3a104714b1db213b02a238

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyowl_core-0.2.0-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 05bdefce26cdc206410284df1df46491c077658a041b8ca65a974656e8615a6b
MD5 e8e408601b27b6e14e9fb631a967756f
BLAKE2b-256 fb449a03a338499c6504cb0998503baefdf717e8eaa14aa386ae1ed99c62d34e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyowl_core-0.2.0-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 fd6acdce38740a2f3da5b298b7feb179be90c9d38b3d7b8b5919ba4904c52f0f
MD5 9bbdd197f4d278c16e7e500c9155363c
BLAKE2b-256 30fbd2d390e757d3466f923e0fece477cd8a4156d2870e25c5884532469e9f4b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyowl_core-0.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.7 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.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8977d84b69bf0ee6c0437c7bea39f32bf6b6359a4e843e589666621fd513cefe
MD5 4aeb41c4892a014b622c68809f5e34f3
BLAKE2b-256 2d7ee31faa62b7f0b2ce0c875a24d98af93823577004debd79aa12b518c7fd74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyowl_core-0.2.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b3852590b029af720f9a8209b0666f8faf8b83f2324e85389fe18a6b7bea5e7b
MD5 a3506ba371c4e07884654bc21db9e76c
BLAKE2b-256 b57ea7031acb131d2acff15cb1960b321e9ec083d4d6374fcb00d647c352a6b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyowl_core-0.2.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5fd992f97d66847335980487d806a000f6d56aaee34531f901a640fd51f33b6b
MD5 1ed46cf3c53c8f93651ad5bd96b25f99
BLAKE2b-256 f8f5fc4b0893b98571d64bd4cc6c6fed75eb452442f17ef1c4d5f122f98741e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyowl_core-0.2.0-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 f8afc0c05b18251a31a72e8bc3c1b370a2d06f8df72501c79793e66099bf2018
MD5 c4ec2c5a64412542e868c669cae691bf
BLAKE2b-256 be32b0e9b57e79ec1c4fd05f43c95242f99868793e2144e80f0da816d95adf17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyowl_core-0.2.0-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 f5c9879873600caa6a1b807676997575dd8cd4f68a6f4a622af4836428ae19b0
MD5 fb06e3a42f4c6d601db1552378c2346e
BLAKE2b-256 cdb98f33a2cacc440d91523bec5f3baf17e74ef7daefcdb831e6615afa11b73b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyowl_core-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.7 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.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c616fc8ce99c0988ecf43f20e482ffb9350b49ac9017abde4e9bd7790e260165
MD5 e6d67221c7876c322236f1fd404b170a
BLAKE2b-256 527d868f77c0f866d0713816ac00599e20d30987f8ad87b8f69abb4db3827344

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyowl_core-0.2.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c4298d856f89629285871813194bd0fb3abb8a35ec9c9d2ceb0178c42faa86d5
MD5 b8d761837ca1a5f9ae30e53b82b1b2ad
BLAKE2b-256 5e50b903898ff360be0c3adfe4d4f541a2bbc7d325d77f2d963357c93590a0b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyowl_core-0.2.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b74038011d6036ed2d00f46efcff99c8f3622d781c48ff79281839675e1939a1
MD5 6022a00057459a0adf3b864374435d40
BLAKE2b-256 3729fddb4803a76f7e2f5fbecb849b05111edb22312f25bd6dfbf351422eed85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyowl_core-0.2.0-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 9849337d04d972162f4a738550aa18ef163d6700cec202e8d4eed48b615c3177
MD5 196235cc00be9780e3550bbbae045b20
BLAKE2b-256 7e097026cd504c2a036f01d291910fbb2ff94d21a5c2ad35b2389439b964e297

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyowl_core-0.2.0-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 30102af8a8212964172dd326a662cfdee2f5e54edfa4a5a7ea7f581b6e206745
MD5 500da1eee0ab1d9084285e4c28c4c8a9
BLAKE2b-256 a1883180bd25cd90dc8c577bfa12fdb63b341c4044827ab1b4b87bc0c778ee80

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyowl_core-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.7 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.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e3c25506ecbe168a19a718015dcae6220a7100882b094b39e0d8ef5788a4b4f0
MD5 bca5d19e2c3a48316bdba693eb475d74
BLAKE2b-256 5739180b6c5a793c6c8fc6d942d206a8ef6cfc12362cc298b403dffc97345ed6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyowl_core-0.2.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b79de77254457c7d0ec2e69ebc480eade8b1e2f7831f7aa16554b0efb82c1b67
MD5 b6a7481db9e1327da683717ecb25617e
BLAKE2b-256 dccbd2613790933e726b91f2db4506fc317d80e18658c8c8cd4c39f1ec845915

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyowl_core-0.2.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0f2aa524d14f6ff802ffd4a3a9dd36b2bbd1c1f705afaf3848ee7825d70dce4c
MD5 5c324e8b9b71e1cd950e99cee041dc9b
BLAKE2b-256 a4c5af64c57e479b103d77f594ac3206ef6b35a325e0cc3f187cb4d8ecd576bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyowl_core-0.2.0-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 b5ca6ccc7124f56182117ae926f5c9dafdae0ffb631757a8bde982939f2390ba
MD5 d6e564d7daff854c1b7358313b86974a
BLAKE2b-256 29c4a1a77c814d26c89ac600a2825ab687b91d27a565190869c9e0bc0b93e9b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyowl_core-0.2.0-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 7c39768f9d43ece68bca7b8cb55f84b44b273245889f3091c159188f2e6e89a4
MD5 82efc96b0be23734cb52bd41539bbb9a
BLAKE2b-256 68ef6cabddf38fa169097d31605cf2b8fae8540922e8e2ee1bdc10a086f2d896

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyowl_core-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.7 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.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e20147fae4738369cb486704449f1675895090f86c7a866b14ac523801578f36
MD5 ed16639bd5401e1e63ec050d0c4dd2e5
BLAKE2b-256 3db14ccc33f8b8ed73679f35498abc25852001b030a21666b4bacfeaa230cf80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyowl_core-0.2.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0ccdf4ddf0b5a62142c250f30398be97271ee1b629632e6aa83e95140c9d5495
MD5 675bfd4f7e3380207644ebe02dc6297b
BLAKE2b-256 18d19745c5c55d775674fb9f073236e923e687645b3d8e93f76cdddd44f6b15c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyowl_core-0.2.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5b6bfaad1f0dc3316631ba3879ee05dd2603b95329918a78bcad4772781d3b7d
MD5 efc4896f68ae52daff9b1a38e3611dae
BLAKE2b-256 c30caa7e04cc0519c032d1b897ac223860ad5b750317c3bda9a8571d022371d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyowl_core-0.2.0-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 e26d7c848baf72032e5755fbe9fb7dbbbb4f879e5deb83463994cb27eedd9dc7
MD5 a3f78dc60669fc663d0eedc7cae44deb
BLAKE2b-256 9943982e35679b3fe533ad9ffe87f7ec4191fbbee3311f8b6f15fe8169966002

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyowl_core-0.2.0-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 ea961d43ee3a069f4b7a3dc6728593ae2887836047898de3ad0334272047ca42
MD5 b283010a7a881bcc358c24d4178ef856
BLAKE2b-256 65c1661414917f2463a5c25f2cf2bf56b4660c39b338407ab845cb7cd69f1a9e

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.2.0 This release

27 files

0.1.1

27 files

0.1.0

2 files

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