Skip to main content

Python module for reading and writing Apache ORC file format.

Project description

PyORC

Azure Pipelines Status Codecov code coverage Documentation Status

Python module for reading and writing Apache ORC file format. It uses the Apache ORC’s Core C++ API under the hood, and provides a similar interface as the csv module in the Python standard library.

Supports only Python 3.10 or newer and ORC 1.7.

Features

  • Reading ORC files.

  • Writing ORC files.

  • While using Python’s stream/file-like object IO interface.

That sums up quite well the purpose of this project.

Example

Minimal example for reading an ORC file:

import pyorc

with open("./data.orc", "rb") as data:
    reader = pyorc.Reader(data)
    for row in reader:
        print(row)

And another for writing one:

import pyorc

with open("./new_data.orc", "wb") as data:
    with pyorc.Writer(data, "struct<col0:int,col1:string>") as writer:
        writer.write((1, "ORC from Python"))

Contribution

Any contributions are welcome. If you would like to help in development fork or report issue here on Github. You can also help in improving the documentation.

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

pyorc-0.11.0.tar.gz (57.9 kB view details)

Uploaded Source

Built Distributions

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

pyorc-0.11.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pyorc-0.11.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pyorc-0.11.0-cp314-cp314t-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14tWindows x86-64

pyorc-0.11.0-cp314-cp314t-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyorc-0.11.0-cp314-cp314t-musllinux_1_2_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyorc-0.11.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pyorc-0.11.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pyorc-0.11.0-cp314-cp314t-macosx_10_15_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pyorc-0.11.0-cp314-cp314t-macosx_10_15_universal2.whl (4.2 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ universal2 (ARM64, x86-64)

pyorc-0.11.0-cp314-cp314-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.14Windows x86-64

pyorc-0.11.0-cp314-cp314-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyorc-0.11.0-cp314-cp314-musllinux_1_2_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyorc-0.11.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pyorc-0.11.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pyorc-0.11.0-cp314-cp314-macosx_10_15_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pyorc-0.11.0-cp314-cp314-macosx_10_15_universal2.whl (4.2 MB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

pyorc-0.11.0-cp313-cp313-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.13Windows x86-64

pyorc-0.11.0-cp313-cp313-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyorc-0.11.0-cp313-cp313-musllinux_1_2_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyorc-0.11.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pyorc-0.11.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pyorc-0.11.0-cp313-cp313-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyorc-0.11.0-cp313-cp313-macosx_10_13_universal2.whl (4.2 MB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

pyorc-0.11.0-cp312-cp312-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.12Windows x86-64

pyorc-0.11.0-cp312-cp312-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyorc-0.11.0-cp312-cp312-musllinux_1_2_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyorc-0.11.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pyorc-0.11.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pyorc-0.11.0-cp312-cp312-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pyorc-0.11.0-cp312-cp312-macosx_10_13_universal2.whl (4.2 MB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

pyorc-0.11.0-cp311-cp311-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.11Windows x86-64

pyorc-0.11.0-cp311-cp311-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyorc-0.11.0-cp311-cp311-musllinux_1_2_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyorc-0.11.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pyorc-0.11.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pyorc-0.11.0-cp311-cp311-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

pyorc-0.11.0-cp311-cp311-macosx_10_13_universal2.whl (4.2 MB view details)

Uploaded CPython 3.11macOS 10.13+ universal2 (ARM64, x86-64)

pyorc-0.11.0-cp310-cp310-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.10Windows x86-64

pyorc-0.11.0-cp310-cp310-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyorc-0.11.0-cp310-cp310-musllinux_1_2_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyorc-0.11.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pyorc-0.11.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pyorc-0.11.0-cp310-cp310-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

pyorc-0.11.0-cp310-cp310-macosx_10_13_universal2.whl (4.2 MB view details)

Uploaded CPython 3.10macOS 10.13+ universal2 (ARM64, x86-64)

File details

Details for the file pyorc-0.11.0.tar.gz.

File metadata

  • Download URL: pyorc-0.11.0.tar.gz
  • Upload date:
  • Size: 57.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pyorc-0.11.0.tar.gz
Algorithm Hash digest
SHA256 6f849a837d5ed714268b7f8cdf3d79cfcf37f0ffb9f695c91e002660ca1d0b12
MD5 4430053d5e72fddafb8219c23b9b8f9c
BLAKE2b-256 66457ecba2bc2db56a3fe2abef0dc726fc101860963509e9e2356acc6d529dbc

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1012f7e1ea7d68f77d67b29c55d921fcbf3dedc5f51a871fe5962657d7368d4f
MD5 89a7c38304a4ff7e5e960a513d8ed071
BLAKE2b-256 7bdbad15bf9a36e0e0b9c0bae2e1c42a023e6437a0315cf27aa6fa8c2774d6a0

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6a066a7d53e21a29517239fb3df4b980ecc9ad2321b5e31c9a1bf8ccb61ae9c2
MD5 a6247c483716a03256f3695bcb8f4fe5
BLAKE2b-256 ca54bae340f80823a58e100868a418c1b6303fc7a6ef52497dc37f210778dfac

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pyorc-0.11.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pyorc-0.11.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a3bf770127a7317d246a50b023b26421dc9ee11a7e434eb3c5bdfff2315b2e00
MD5 5c44622427a54fd97d4e5302a0dc5832
BLAKE2b-256 52165983648a660b1e809a4352ebcb1ec053d345e2e6e64e64c71915c8643dd2

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f6a80728c5a6f6b92475c45154d076153121c8f4b0e3efc1c66048751422104
MD5 32a02a201dcbf489b9ca28781f4d9772
BLAKE2b-256 4fb9a2e625fbfc233f559bfade595bd447ecd4de94dd3553f405b07b7ea43da3

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 32e2d6e802e743c2324c88f583ae59d61c209639f1821c0be47f304d4e6ad58f
MD5 3a82b057f2d02fd67e774fd037836812
BLAKE2b-256 24aa4a1e3e00296ccf5a5e3a70cb112d2e8719b2d9a70f1c8ec36a5d74b2957d

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7884a69bee5a35141e8560f6ded87d8c7c2c7723f0d198d08f37009c004fd3ca
MD5 51fe37cb3f415317a8a121b1e47b7775
BLAKE2b-256 eadfdb76143be7726e8ca3f2a257a2a5c77f43b67fb90b24bbe3224f841b7182

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e5bfb5ea94e5a80e2401bf68061ff686fbc2ce6592044fa8afd0e635b5163ff0
MD5 47571fc716daa7b63ea8172566561af7
BLAKE2b-256 66bc94deb61cb95267a8002fca21efc69acd4a4cd1eaf66b96d4232fe4afc025

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b6faf78090437ce21b7abeffc38eb92d04b249acbfa0a58fb0f85684cd5a921d
MD5 8968df51500ec13cd59c84b0121f8d6a
BLAKE2b-256 f9698fd98f4e711795fbe90e52377d2d0242f543f0661da8710368ff6d92009e

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 6b9f6cc851f3cdb7d42db191db70dcb419ac01d485b9a18b0ae9f965377a7aaf
MD5 507f88d27036742914191512bbebdf2c
BLAKE2b-256 4382f3eeb0deaa64f490d0dba0b9f1bb2a5a43b64e118da74e735a24397e19f8

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pyorc-0.11.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.0 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 pyorc-0.11.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b96dd386381759dbff232f3122b66afd1cfa2e3fb4eaa4597e777ec9a1174ed7
MD5 cf685261f2396d3d8478739f2a39fdad
BLAKE2b-256 8fcaab6f3fd805b676af1b89caea3d4a8a2c666a14da5cad581af134b223eabb

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 adade1ef2d9b42b652f8824d77dceea041667068ddce2279c8efde550a7c868d
MD5 f5b19eeabecd5a426bf3d06bf6448e8d
BLAKE2b-256 e450e1c4b6013065c70b6a53ba212082624e358428caac15788566035beba5f3

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 30672d28f925f9d061c74e8361a53f1aab9ea3181ed5370830baab6c89d6396e
MD5 a486e011594123b33651c2f896924caa
BLAKE2b-256 d97c1ad93f690c35c0ae7df17606189cfc5e05bd15d68f57601d99a507920113

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7d37ec15c228d038d4ccc67c27fe4ba5ef78cd28f5a73f476ef1681d0088693a
MD5 a4cbdddc107774946c78ecc8e2a44e9c
BLAKE2b-256 36f5e3e048055eb6f279c1591395cb0247004b4bb30338bf090d9a0cd0a0aa60

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 16f0bf9e532cc0f6833a71b93864ab35da8a130b95c3da98773f1186fb453619
MD5 d2da418252af17e1f8d3963b022e5cda
BLAKE2b-256 97d06a0fffbf344a70c710427a268cd650e70c9217e1605320d2b6fd2711fe2b

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 17fecda2eac4e4429a996b033231132311183a67c798c1f06aab8d032cacfa44
MD5 843a1ddb5dfb648020f9050df593456a
BLAKE2b-256 56c642baf2e1a72cb1f5d1504e4ddd122c90902808394c996766aa67eef743f1

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 817029a2100dc89e261fb0e8c777fdce8033b92d7e443bc1bdac7eb9ad304069
MD5 68c4892ea83961a2065cf3d923183813
BLAKE2b-256 4210a11bccc2b6cc02ebc48ee8a94ee054331caf83556d4e0ea7f7848d4315f0

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyorc-0.11.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.0 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 pyorc-0.11.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6d46aceb88aa8454b0d1134c83548f68e2d3b98563dc5df66afcb4b3c1ade90e
MD5 4d3f48838f9681386a87bf4c666a774c
BLAKE2b-256 aa9aa05701bd2db3857527799dcd226cb226509095d3ffa3cf86ff11798b0664

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c06960138ef03445da7023025c9802d7bd2251c49a9e76a631eaa9e86f0b64fb
MD5 fa093b6a07868bbcbcfc740d7f5e7a6f
BLAKE2b-256 a8c2c9b9f1958c20f31fd2139361dc83713e32b4110f1aa4832ff1150ee82f8a

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bdd670a8ff588188425dc132681610a6657e00d9bbcaaa5ef99387e3ce40df00
MD5 e62594f189d3b3acd5cce816fbb73b32
BLAKE2b-256 b14f4c423ec9a58b838804207a6c2a8f58aefa415f8700365d345332c9e58ab5

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 030899aeb5000fce787959736f7c96119ebeba346d99e0b6dd336f32ec2fb445
MD5 0bc59a0cf742c3092457be8c25f6f207
BLAKE2b-256 b3db5bf44c02288f9bc4bb25ea93ba408041ed98d98739586dd9dcd145d84ccd

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 90dda8881208af0ef7ebe479c017ebc011b68e7f2cb3bd57c6b8cd8520d76a69
MD5 724d83adbd6b93d192ec37367dc9cd72
BLAKE2b-256 c739576a71c71fdc5288cb9275b2ff8ace12553a1cf33b2d842114c17fef62c0

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ed22371cf28fc19962b66acab760aca21b936b5cc204ec16dd4450f7e2e5400f
MD5 642f8a60eb4d66ea7e03b63c6c454096
BLAKE2b-256 f6fef9c3e44c564f2f442fd0dea706dea1af102750b2936ef56f15edab5767f6

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 2f8f5242ceb4093e21ba8bff48a8adad79867bc5342de79f0a673a38e8bf9b7f
MD5 00fcbdbeafb67ee5be2b1b9e3e7ae955
BLAKE2b-256 29096f646108a2c96151b65263b9e98d155ae86a8f56ee83720aa48fa55013de

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyorc-0.11.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.0 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 pyorc-0.11.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e57113be36eacdbaa2cafe5c8b240025f9c144dd48f19ba345810c74febe07a4
MD5 5f80b528789a4b0ebaef828745b8607d
BLAKE2b-256 d70dbc810e210e4cd2c6a9e1606a705dbfae30c5dca07c7b3a21031a1d84f31c

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a15d0c1b3c9397a37d8f61702f7e76d72a291a732ddc54bbcdb54bfcc9cf29e0
MD5 e0cf9533c678dd096a79463c2a65255e
BLAKE2b-256 e3e4566211d62c8901aa63533549fde42650bdec59a718cb9fdb326ef7af1897

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c6cc8e5140ddc40949085bdbff101432651d839047799c0709c8a40993e82461
MD5 5a8439fed56223dc375138fccb4c66b5
BLAKE2b-256 fbc675d5ceb1212f45171b9e1929fcf7c25b257865421c9cab672ca995c668b2

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2ffd42c408ad556aa7082685f06873f34d55df59fa4e7f3f8a7cb54066727c44
MD5 20b5b8793a0ab17030e707d3340baee1
BLAKE2b-256 fed4c4c1909470a38e26e17e18351be6b7bfa140741cc615885205c302ed7a2d

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b67f5ead0aa87cf189b0157f030836a3feb278eab638dd38650518468a7d8325
MD5 72252b57fca47b4d51522e39967d0bc0
BLAKE2b-256 cf2da84011f956bb6922d9bc8d764422459d40d3510b7f3661e9ad9389086458

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ab430cb66f85c7bf06a72376364366c425fb8ef9d690e5271286f4d9de26e4b1
MD5 dfb0230292e14ce4253b38066ff7ddd1
BLAKE2b-256 a3b0a8f7a601b40b2690e76901a1cdce8397d3e9594189f05902be50101fd9e8

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 9691ee17863f0805d3d23a66e9fa433816f98c0a5ae8ddc65064f16084ea7e1a
MD5 de87ec37f73ee6efabfebf2fe1d7457b
BLAKE2b-256 c95a5c2ae2ac7bf6357cf0314798b87de854dc8f8e110f827f88840e91442e95

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyorc-0.11.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.0 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 pyorc-0.11.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 347061473ec6717520763177a6dd903ae6c88e04ddfc9c460d083c56542b5111
MD5 135f06dab0331383b609c9043e2585dd
BLAKE2b-256 1e3b4e460301c8f3131edc21622a4ea41d1071449aae1d804c5b948a86a94169

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68cc69ac205e5790be53ce90b714aa617851a0f4ffd5f471350463750b3c4f3e
MD5 b101fe43ace3e5185b21d30fefde4a72
BLAKE2b-256 7c161e4d0fc714f16c02ba9225d0976291bd72f11e7ccf69b2f9836f5bfd467a

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4edc3c3ddecace393f9f34ba15395ba5f793301fcfd96a77515300925b49be8d
MD5 c0444d39c274b4c8551732672bbe519c
BLAKE2b-256 7ce98cab1f461d94d98b4c986a5bc990a38165412f882ab3fc272e660c9c939a

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ebff645264df447439079f813f89a9bbba799d3fed7e0d6360fbd43d14883ebf
MD5 5bf69a8033d6a974796332804cea4783
BLAKE2b-256 0831b30fc3358774061b25a70951dc295fde366cf499ceb4f9a78db808fd182e

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2f586a7da8431caba47a939c38df6d551d9c3f9c432735cb811574e55366e2b1
MD5 706e672f6c2cce60f5428fd24a318744
BLAKE2b-256 f00bc24ec13f60b461f70f35d20f02488a7ee4889496ed7d8393b28766511792

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp311-cp311-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 72ec1525f23d5948165b4977e0ee119f24cada2fd023db88d4f71c5bf98dda38
MD5 bfc699010b4a2944221637d4eb569469
BLAKE2b-256 4a007384dd78a8ce9e9d03340f7f204a16a384a3ec46b2e7202e04deb1f8af63

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp311-cp311-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp311-cp311-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 81f1a0e41c2c822ae523756b5d723c7dafffc77972dde4453d3fe9009414cf59
MD5 82757eff1ee7895d2c7ef595e3b7a2c0
BLAKE2b-256 4a70099885bd491028576e5e19bcbb87d7535d08fe4ecf3d6397fa4ff489f13e

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyorc-0.11.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.0 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 pyorc-0.11.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5218c5098c916a6baf23426c492cbdef6018cd101fc6a6aa6d345e4348a9720e
MD5 67e7bf1056d523e295a1eb83619f1962
BLAKE2b-256 87528ce6a6ee74b9efe580f7df9b0d9a99ce7e8f5639bf52aac2901819c3775e

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e50b10675d4d19b49c8aa03548eece690bc7f59b5914e5d226e03c220c678ef
MD5 9134052ba46fa11027246c157d0d87f2
BLAKE2b-256 e51a9822811d50392c758f494a39b3931d614089e156812963aacaf9371d9f6e

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 04f73cac37cd4118bcd53daef02e3e8e46f11b2e6d72b935e647409d112ea888
MD5 376c2dc2d500a9f38b9491483f0eb176
BLAKE2b-256 73be16ed936bbc1bb979cf7df27b6b8bf036e5760a2a7248dae6c79c4e8bb6cd

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2ec4d6e3db67f00a5929654a3d61a9f793209c0de64b6a9c360c8a62453ec0dd
MD5 10b7c010aa2b76d29244f9743b7b1898
BLAKE2b-256 01a943aa6b858cf542bb38cd65b92fbfe51f8d838baf88023cbad521dbeacbfe

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6832866f1e962830abd5364c6bf5483fd0c3e57df6676a7935b658b73d7d94b6
MD5 6d105927d522ec1b33adb97906208f6c
BLAKE2b-256 ad75c30babd6e780808c9a56a5f98e39db782c9edc16f9a8347aa7a0cc04bc62

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp310-cp310-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9d8bdd3807ebb950e226aa14647533a526b953ad7fd423dd5df268ece15c97d2
MD5 21164b5bd845b770923e0f487c81ca4c
BLAKE2b-256 e2921a1f1a2ced4aa94ab509cd86d9beef9c3640c0b74e7a8b75c1ac506cfe39

See more details on using hashes here.

File details

Details for the file pyorc-0.11.0-cp310-cp310-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pyorc-0.11.0-cp310-cp310-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 3b41c572227ac25bcde4cbc0e405927f0ee1d152e8387959b0769762b2fb186f
MD5 7bc2177739a3673b6903c8fadc2e3580
BLAKE2b-256 1e158670f0f7c1229d2dac89a1388e5b1aab1caae19b13b4ef197887600bc870

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