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.6 or newer and ORC 1.6.

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.6.0.tar.gz (54.4 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.6.0-pp38-pypy38_pp73-win_amd64.whl (1.6 MB view details)

Uploaded PyPyWindows x86-64

pyorc-0.6.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyorc-0.6.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyorc-0.6.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (3.9 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

pyorc-0.6.0-pp37-pypy37_pp73-win_amd64.whl (1.6 MB view details)

Uploaded PyPyWindows x86-64

pyorc-0.6.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyorc-0.6.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyorc-0.6.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

pyorc-0.6.0-cp310-cp310-win_amd64.whl (829.5 kB view details)

Uploaded CPython 3.10Windows x86-64

pyorc-0.6.0-cp310-cp310-musllinux_1_1_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pyorc-0.6.0-cp310-cp310-musllinux_1_1_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pyorc-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyorc-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyorc-0.6.0-cp310-cp310-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pyorc-0.6.0-cp39-cp39-win_amd64.whl (828.2 kB view details)

Uploaded CPython 3.9Windows x86-64

pyorc-0.6.0-cp39-cp39-musllinux_1_1_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pyorc-0.6.0-cp39-cp39-musllinux_1_1_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pyorc-0.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyorc-0.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pyorc-0.6.0-cp39-cp39-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pyorc-0.6.0-cp38-cp38-win_amd64.whl (829.6 kB view details)

Uploaded CPython 3.8Windows x86-64

pyorc-0.6.0-cp38-cp38-musllinux_1_1_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

pyorc-0.6.0-cp38-cp38-musllinux_1_1_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

pyorc-0.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pyorc-0.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pyorc-0.6.0-cp38-cp38-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pyorc-0.6.0-cp37-cp37m-win_amd64.whl (832.3 kB view details)

Uploaded CPython 3.7mWindows x86-64

pyorc-0.6.0-cp37-cp37m-musllinux_1_1_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

pyorc-0.6.0-cp37-cp37m-musllinux_1_1_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

pyorc-0.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pyorc-0.6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pyorc-0.6.0-cp37-cp37m-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

pyorc-0.6.0-cp36-cp36m-win_amd64.whl (837.2 kB view details)

Uploaded CPython 3.6mWindows x86-64

pyorc-0.6.0-cp36-cp36m-musllinux_1_1_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

pyorc-0.6.0-cp36-cp36m-musllinux_1_1_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ ARM64

pyorc-0.6.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

pyorc-0.6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

pyorc-0.6.0-cp36-cp36m-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pyorc-0.6.0.tar.gz
  • Upload date:
  • Size: 54.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.9

File hashes

Hashes for pyorc-0.6.0.tar.gz
Algorithm Hash digest
SHA256 8ec75de7461cc4a22f999faaabc19d727da6a3e059f578f0463aabe21565f312
MD5 28febcdc98f3495689782f80044a54af
BLAKE2b-256 a95817d4c5e29a6597f0f09d75c98bb61e512069fcc7c2d29b45d2d88c37db18

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

  • Download URL: pyorc-0.6.0-pp38-pypy38_pp73-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.9

File hashes

Hashes for pyorc-0.6.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bed5116a8f020ebbb11cc533fb150f83a94d99f075dda942db745ace67b15d00
MD5 183d94e566e1cea8ff6f5a356b28cf28
BLAKE2b-256 584fccd1058ed9eed43f1f921365c73c9364fcf8d1b56be55bfd937a2f2336f4

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyorc-0.6.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a38e78947e3b801f6363267452f15ad3b42481be5c386f1877200bc4295fb2b
MD5 92633de217748e5d119a6a38e2270c4b
BLAKE2b-256 016f883554a7114a9d7989054a1a38c820a7abf0d1844384856e00ae8608d851

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyorc-0.6.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 60a2f959504b0b318bf0f57ff702686c1255bdc1e77ff08dca64dd55a0bf0144
MD5 66ad215720ec1a24fb2b41c232d29e17
BLAKE2b-256 65e27c989b38851901454602104a1796d62d74f8bf4b03e1dce01f12924fa411

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyorc-0.6.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.9

File hashes

Hashes for pyorc-0.6.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a2f2c1d0002e5f393d314cb9210135bf1a3041ebccaa5080b8a08e5bffec9606
MD5 61577b136ea744cfc9d385282ee3c807
BLAKE2b-256 f4faa53aa53bb89a7a379a2434e5fe634b04c3763a4d601283f45a57bb284530

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-pp37-pypy37_pp73-win_amd64.whl.

File metadata

  • Download URL: pyorc-0.6.0-pp37-pypy37_pp73-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.9

File hashes

Hashes for pyorc-0.6.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 883de641cd1775467d1afac29339fe85a6481b1097053a0f42f477416ef2f0a2
MD5 d0aa9ce2eefdd021a93e6e6bef544e39
BLAKE2b-256 125d3a833a1fdfa5218bc3d351bad15950f70b36fea238ed9c4fe7f9c0649844

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyorc-0.6.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e1c4b12f3494c292a1bcef54b1c02c68af9071f69614099968dcb7dd17cd2f0
MD5 024c76b77b8aa155835d5a481dac5aff
BLAKE2b-256 f39ec051eb71ba0deb921d53858d5d429e977964d462b2f18e34977f4c7c3f05

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyorc-0.6.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 245648e837deb92546014c95e251861055cc89353f2b0c177a13c886117ed6b4
MD5 dc255cfd5cf2b6a02670ee0ce2aa3b87
BLAKE2b-256 7113aaf229bb7afc4da68b814adce8e3cb207d3a58a0d6b30a4897012c5d8b00

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyorc-0.6.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.9

File hashes

Hashes for pyorc-0.6.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6d71f043462a8cf2a407f9140f651604abff6b4173a82b809af5edfc02827cfe
MD5 c8ed7565d666789e792bb9f2a58c5088
BLAKE2b-256 40a0571e1cf0d0ff1b853298bea3d642f2d9f90df8ccf0fde380801669b94d74

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyorc-0.6.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 829.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.9

File hashes

Hashes for pyorc-0.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a2b942d8a7a6257cd3090f383b50333b82a04b9a68a2035e0e392821faca2b5b
MD5 c84cbb360e8b75de896b2f104dcf4027
BLAKE2b-256 fcc8d16555463ef88458d36d620fbb0ded06d91bf23ce5bceb06c353c171b062

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pyorc-0.6.0-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.9

File hashes

Hashes for pyorc-0.6.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1dd0df7079599a2dc80e59da02acd630504833299cdb59935e4daf97d09809be
MD5 fa3032d128a0ca0ca97a279ed1cc4283
BLAKE2b-256 6860d56e8dd6230aa0e682dd3aa75aa4693ed2f3d4ef980beae5d28e67d50286

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: pyorc-0.6.0-cp310-cp310-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.9

File hashes

Hashes for pyorc-0.6.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5880bce545f0b8cbd39147621f592a0ceef2f17b7c88237421185efb3cae1457
MD5 c1a44008845a5e47ba82e895baf6fe30
BLAKE2b-256 36d7712ef4ee1a171cc87d8efcb31223528c040f3feabc4b3347e99b5160524d

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyorc-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45f32b6e62f322d09ca73122fc4f09c621b4eb0ab8bd7de5f88bf44a15135afe
MD5 51b43149ffec93fb003435a97ff53c06
BLAKE2b-256 20ba8eb91ddf7c4a9c28ec07fd7966885b1bda0755c4f5600e7bc4755a818d67

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyorc-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee29fbec6a69c4864c0d3e79e18bc2cf7e6283110e8ceaddb8e6bf56fa82438b
MD5 f9d31b1992ad9e911ca3eaae3670679f
BLAKE2b-256 7b57c02ae3f7dbd572d217e706cfce8680c51275c57e061153c74491c234227f

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyorc-0.6.0-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.9

File hashes

Hashes for pyorc-0.6.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8bd18ae292cb50332eb5060ebebb98408d03402cb253c05a9a9c95e6dadd9bf2
MD5 e26ed612f88d4b598b6d817a65724878
BLAKE2b-256 187ad0431d4d43cb96ff4ca28fa415c399cd2ceac8410f6f5c6db4c6907554fa

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyorc-0.6.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 828.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.9

File hashes

Hashes for pyorc-0.6.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d6542c877ab51b44202fa609d27c1f20d020f3798b0817825e80546bead4d87f
MD5 50e35da7118640d5176dcae7143959f7
BLAKE2b-256 7769e0c28479adbe5f8a7c9106c26ded9a8a6ed9064f789914bcd5f252f6967a

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pyorc-0.6.0-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.9

File hashes

Hashes for pyorc-0.6.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 886537a4455a2383dd112bbaef9606c1f5171f97eecf30901146e88d035e5bb0
MD5 685aeafaff424962fedff478aa51fd84
BLAKE2b-256 2a6b1dd40058ea22ff5f0b3d64b8fa71764ccd77eeca0ac0a504e7c9dcb0582c

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: pyorc-0.6.0-cp39-cp39-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.9

File hashes

Hashes for pyorc-0.6.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f320bf5c3d449775caf28af61dce4d72e7be9a6ccd9d6347cc3e343395dc1dad
MD5 213a604827c9da61f7591e063aa1b35c
BLAKE2b-256 38349fcf3dcc0ca2379bd672af26ea723fe0958f140ab1de0bf0e53998d7fd6e

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyorc-0.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.9

File hashes

Hashes for pyorc-0.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0064a483ac417ad4c3714a7b7e5f283f3c0c8576e2896c59eba7e55eb8eb1dd
MD5 1ee63d18a0f54e57dc8aba8a6d827d2d
BLAKE2b-256 fb0c28ca36c7f060a7e2515ba38ca559e72e1b062f38c04d22efd2de4154e090

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyorc-0.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7903ad96b3b5942828fe7513bc3f8534fff3386195d6af7f91f7f2a9cdb8ab31
MD5 2200fb17f11452741eb2a30b1d68e63c
BLAKE2b-256 95bdfb3f597286071b6d12ccd661ce5296dc78d604bb67d0e0a673d75e95968e

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyorc-0.6.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.9

File hashes

Hashes for pyorc-0.6.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 29558c253920ae7b92ca1a731e1ad28502d2036f090b653a5167aa5926ca7178
MD5 e1d8c6db441f4863fb7fca6f012deb97
BLAKE2b-256 33b66ba50283e8baf3688a7674878f0c543e2d683f4b8f917c12020ebabf8731

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyorc-0.6.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 829.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.9

File hashes

Hashes for pyorc-0.6.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0727977f0040d6cd41d07dc872bea2ba6ca0950aa9b283ea09862fb5b40a92b5
MD5 d6797b9001c6f9bc0f95c4d26fc597ce
BLAKE2b-256 574e9b06477c80e50e9c01df887241a404448692702efae8b819651effc7cd47

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pyorc-0.6.0-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.9

File hashes

Hashes for pyorc-0.6.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0dc071b66d173ad4655a905d4cf02b6b6f8cbf4be01ebc9b2010a1933d69ce1d
MD5 e9103e41aee3ff293196c84cd6f38f28
BLAKE2b-256 671bad56fbac2fb8747a91141d398c1c3d94df371796a8ce16794b6dbbffcfa6

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: pyorc-0.6.0-cp38-cp38-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.9

File hashes

Hashes for pyorc-0.6.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 49e97decda280682a54a5cb15d6a3fcd55a42e350d07205354058cedfb7d6939
MD5 c58a8da339889ef0e42d336b0d2eec2d
BLAKE2b-256 c42f1fbceb2cf62a046dc940b1fd6545dfd342fa96d051935af7d0ee70b57227

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyorc-0.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.9

File hashes

Hashes for pyorc-0.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33afcd2fb5d25c031d34999f890105ad9e9b6eacf1617bca741a1fb354fbe9e7
MD5 52e8c7d3d1aae5ace4c65d6f9e0788a0
BLAKE2b-256 ffbbddd956eb0905892b2e6da3a7d305d79e39d7318cb7b5c7268921fa680e21

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyorc-0.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 75155d7812088b5f12740ac91882a0d4356e24a5b115ffa105293f41482aa444
MD5 b89d3266939dd8c575958150c4c53f33
BLAKE2b-256 3f5b5b8eec8071ec5078666478cda9bb0ae6c6e8c11d92863b7f8bb61d56afd8

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyorc-0.6.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.9

File hashes

Hashes for pyorc-0.6.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 203f70ddf31b8d83fa886f7edcd67ba5d4968d602563245dcd2de9e88750c745
MD5 f68cace093f5fa88ee46b9b49beaf656
BLAKE2b-256 f2e4f84eeb270553f756eb88c259ca4ff7ff4e326213b36ce43282526a93ae9f

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pyorc-0.6.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 832.3 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.9

File hashes

Hashes for pyorc-0.6.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7b16991de2074683cdaf72c3e00021514e41d6a9d9692221e1aaf9c4db062bac
MD5 23accb39156167b2fe49240a34e064b5
BLAKE2b-256 d1f33c7f430c28deb0afacbdc70ea1ee102a41ce38cf31480868548e5b0b2cd8

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pyorc-0.6.0-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.9

File hashes

Hashes for pyorc-0.6.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 876386b8e8647dca63f2306edf1372c6ef9207aa624680081ec9ca9021a0783d
MD5 2c63168e3b519ce183fc504e4f40cce6
BLAKE2b-256 56efa8f55f3d44893abeeb06ed6379648f20bb2db7843846f9ffda278758880b

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: pyorc-0.6.0-cp37-cp37m-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.9

File hashes

Hashes for pyorc-0.6.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f2730c28381cfbbe058bcedfd5ce2c683a3ec6fe0f208982dbdd73512f048f2e
MD5 61c5c116bf38a37b7893234e3eab1d68
BLAKE2b-256 ff9a3c99fd42cefdd5c5cfd01314df3ec53efd582b532016d61c1ee11526eaee

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyorc-0.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.9

File hashes

Hashes for pyorc-0.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8647d7120fcb11a744344bb479d6e50c0ed0c277b588878e166c12eedffd9ee1
MD5 0cfb6f42d04c8ef22c465f2884c32787
BLAKE2b-256 918c79d310ce70940a223f39ea03fb454e7bff67240002e94155f216bf3bc7a1

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyorc-0.6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f6900c4319642ac43f7703a07dbec02127be32d972ddb537959acee6e479017
MD5 e03bcb26e775b6733f0ee140861eef47
BLAKE2b-256 22194af9da83108fe896247cb48308f67c9d559aa906abcc0ec02d817e6e8812

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyorc-0.6.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.9

File hashes

Hashes for pyorc-0.6.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1e68289820dbf8b0cb3ed0fb420a3679f32e4c18f34051b931641c02d0f79a1e
MD5 53818258df07b0ee09074544a8fec362
BLAKE2b-256 0799a3ee266df5d1977196c690d9dd9aa7bb0bb18d0d1da110b002edb033dde1

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pyorc-0.6.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 837.2 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.9

File hashes

Hashes for pyorc-0.6.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 9875c4b2402a358c1da96be3d4c74f69fd470d9d5117a175c86997a85610200b
MD5 bfbaa99ad57e858a966397d9cd6bc156
BLAKE2b-256 70c641e6b60b8ec3888c23fa68630b48458ebb5eae0b6c88886f312770e74a2c

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pyorc-0.6.0-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.9

File hashes

Hashes for pyorc-0.6.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5ea852727e31792815fb2725b3c9959472773088b8518b3d7658a7b0d12ea294
MD5 1a0d07694a7ba8f5dd1ae5ac2d0b899a
BLAKE2b-256 488f6f3d45455c24543d673780bb5cad962ae97d3a6970081868a6532f803441

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: pyorc-0.6.0-cp36-cp36m-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.9

File hashes

Hashes for pyorc-0.6.0-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f465f2cdd357984c19fa327d1968693f52d1f6dbf9fc4b694d47894765aa7630
MD5 d6dcb73f50afdc208f9cc6caf536b6d5
BLAKE2b-256 ee4f41fdd5ca716ec9afed62febdbd4ed103cb562a1b36450ea9409d476088af

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyorc-0.6.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.9

File hashes

Hashes for pyorc-0.6.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 545c7a38bc606b8b17190ddf5f01b20d7de9be4c410c18af9f29db0777523703
MD5 9fd19d8424d38c5d3980eacc488be1ea
BLAKE2b-256 c49746529ebcfe1b101f5068b48695c4a7dbf900421409ce9a2441279b592581

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyorc-0.6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 97dc6829cee5ff3d22b7cfc9d9069d3382327262c4f63cd72d5769caf5225a2c
MD5 c89bf20b37f2df4e2009338235c40020
BLAKE2b-256 c61f01dd4e02c38797441e033db0d8577860f631788458473a91d509186cf2cb

See more details on using hashes here.

File details

Details for the file pyorc-0.6.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyorc-0.6.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.5.0.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.9

File hashes

Hashes for pyorc-0.6.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 579ff6be64ce8255c59fed7d968b1430315045ee6098677a1d0541d06122c37b
MD5 c31ea6e0bb487852033766896aff6298
BLAKE2b-256 87c6c91e21ede030a2ba2e931ba5743ddb15cf6e5e22d39007b10a9768052858

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