Skip to main content

Convert STEP files to GLB using OpenCASCADE

Project description

cascadio

A Python library which uses OpenCASCADE to convert STEP files to a GLB file which can quickly be loaded by trimesh and other libraries.

The primary effort here is build and packaging using the wonderful work done recently on scikit-build-core and cibuildwheel. The goal is to produce wheels that don't require users to build OpenCASCADE themselves.

This is not intended to be a full binding of OpenCASCADE like OCP or PythonOCC. Rather it is intended to be an easy minimal way to load boundary representation files into a triangulated scene in Python. There are a few options for loading STEP geometry in the open-source ecosystem: GMSH, FreeCAD, etc. However nearly all of them use OpenCASCADE under the hood as it is pretty much the only open-source BREP kernel.

Install

The primary goal of this project is building wheels so vanilla pip can be used:

pip install cascadio

Currently this is building for non-MUSL flavors of manylinux, Windows x64, and MacOS x64+ARM. You can check PyPi for current platforms.

Motivation

A lot of analysis can be done on triangulated surface meshes that doesn't need the analytical surfaces from a STEP or BREP file.

Contributing

Developed on Linux which should build wheels locally with docker:

# this doesn't cache the OCCT build unfortunately.
# It would be nice if it did! You could do it by building OCCT
# in the manylinux images and then passing the new tag to CIBW
CIBW_BUILD="cp312-manylinux_x86_64" cibuildwheel --platform linux

Or, if you want to develop that will only work in your local environment for development:

# just run the `before-all` from pyproject.toml which is approximatly:
cd upstream/OCCT
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release \
      -DUSE_RAPIDJSON:BOOL="ON" \
      -D3RDPARTY_RAPIDJSON_INCLUDE_DIR="../rapidjson/include" .
ninja
mv lin64/gcc/lib .

Then pip install . will build and install locally. Make sure to point LD_LIBRARY_PATH=upstream/OCCT/lin64/gcc/lib or wherever you put the libraries.

Future Work

Pull requests welcome!

  • Add passable parameters for options included in the RWGLTF writer.
  • use in-memory data for input and output, i.e. stepReader.ReadStream() instead of a file name. Ideally the Python function signature would be:
    • convert_to_glb(data: bytes, file_type: str, **parameters) -> bytes
    • Currently using file names because it's easier.
  • Support IGES
    • Investigate using OpenCASCADE "Advanced Data Exchange" for Parasolid .x_b/.x_t and JT .jt support.

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

cascadio-0.0.13-pp310-pypy310_pp73-win_amd64.whl (13.8 MB view details)

Uploaded PyPy Windows x86-64

cascadio-0.0.13-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

cascadio-0.0.13-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (26.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

cascadio-0.0.13-pp310-pypy310_pp73-macosx_11_0_arm64.whl (20.1 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

cascadio-0.0.13-pp39-pypy39_pp73-win_amd64.whl (13.8 MB view details)

Uploaded PyPy Windows x86-64

cascadio-0.0.13-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

cascadio-0.0.13-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (26.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

cascadio-0.0.13-pp39-pypy39_pp73-macosx_11_0_arm64.whl (20.1 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

cascadio-0.0.13-pp38-pypy38_pp73-win_amd64.whl (13.8 MB view details)

Uploaded PyPy Windows x86-64

cascadio-0.0.13-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

cascadio-0.0.13-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (26.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

cascadio-0.0.13-pp38-pypy38_pp73-macosx_11_0_arm64.whl (20.1 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

cascadio-0.0.13-pp37-pypy37_pp73-win_amd64.whl (13.8 MB view details)

Uploaded PyPy Windows x86-64

cascadio-0.0.13-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

cascadio-0.0.13-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (26.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

cascadio-0.0.13-cp312-cp312-win_amd64.whl (13.8 MB view details)

Uploaded CPython 3.12 Windows x86-64

cascadio-0.0.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

cascadio-0.0.13-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (26.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

cascadio-0.0.13-cp312-cp312-macosx_11_0_arm64.whl (20.1 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

cascadio-0.0.13-cp311-cp311-win_amd64.whl (13.8 MB view details)

Uploaded CPython 3.11 Windows x86-64

cascadio-0.0.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

cascadio-0.0.13-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (26.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

cascadio-0.0.13-cp311-cp311-macosx_11_0_arm64.whl (20.1 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

cascadio-0.0.13-cp310-cp310-win_amd64.whl (13.8 MB view details)

Uploaded CPython 3.10 Windows x86-64

cascadio-0.0.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

cascadio-0.0.13-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (26.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

cascadio-0.0.13-cp310-cp310-macosx_11_0_arm64.whl (20.1 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

cascadio-0.0.13-cp39-cp39-win_amd64.whl (13.8 MB view details)

Uploaded CPython 3.9 Windows x86-64

cascadio-0.0.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

cascadio-0.0.13-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (26.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

cascadio-0.0.13-cp39-cp39-macosx_11_0_arm64.whl (20.1 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

cascadio-0.0.13-cp38-cp38-win_amd64.whl (13.8 MB view details)

Uploaded CPython 3.8 Windows x86-64

cascadio-0.0.13-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

cascadio-0.0.13-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (26.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

cascadio-0.0.13-cp38-cp38-macosx_11_0_arm64.whl (20.1 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

cascadio-0.0.13-cp37-cp37m-win_amd64.whl (13.8 MB view details)

Uploaded CPython 3.7m Windows x86-64

cascadio-0.0.13-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

cascadio-0.0.13-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (26.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

File details

Details for the file cascadio-0.0.13-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1c21d268f5c2e084c7f3f9d9cbca0212abdcf48d92b25ac7211c430f23f819d3
MD5 1a8913fcf8299ad342cc5273823393c0
BLAKE2b-256 17d3d5b8cb76709344ad4d83b1af8124261c9d8ad7f67946ad5c23bb9b499fd9

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2fe3dd2ce156a06b19163f5407dbd0e777648619ebc1cfbf581d5f0d201a71bf
MD5 6e89f817d9ce3d71cfa5ee0a0ff34644
BLAKE2b-256 c78fa7f95dec9b10bd521f52d4dec3b775fd535b5573b85a3403089c89ab22ce

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dc713cf66130303cb391d8d2cdc1ce61c373b633541a6114201bdf6241817bdd
MD5 dd4f0256ed24c1e16d0b6b7db39c3a44
BLAKE2b-256 4f39ab8b5cd9ef12bad39049549ea6bbc376fb9efbfcc9f58a3db3381bf4386c

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca60489f0d120229dc6952f9671362844a26b1795393182a1984994c7c034265
MD5 acf3df7f5be2c8c273ac533a209758db
BLAKE2b-256 daeeb5fc6904271a2720c8c1b6dc1da28f5cbd81da93928f5da96a895585da52

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a3bdb462a40750c29b606f0005506641d2fded8619d41e13d1a9861a0b22e5a1
MD5 5cbc7aa32291d365a51bde6cca0b4f14
BLAKE2b-256 1483d9e81c37d3dbbe399e9540d63fa0b563e1513a008d75a4c89568d5b8bbfd

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d882c5dfd12437f39ad6c8d3bd591d42a98606ac5c89c9dda9752baf13b09127
MD5 1f027a67683a954719dbf86b5e505677
BLAKE2b-256 2ba1b619025c46de4849e542a1420fbbca323bc98dafe2954b78dc9f24be1b50

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b259f0c7ed4150c21ae56c849453657cf7b4b952c7a9e22f5670b2252d4f0470
MD5 3b75b5e3764a4ce835a5a277917359d7
BLAKE2b-256 886c2d3ee8e2bf08c7f6ba80c874cebf9a44a35ff3db418d6398066a13ab18c0

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a15bc86136640085b48004e8bb84f42525dd891133933d2d762f47ee2e75ff15
MD5 e3150cf55cb855fde1e321826bdde018
BLAKE2b-256 97e3bfde9bd53e35287e5cab0d7c7f1c4bb9271442c524fb2f5770afa04ddd51

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3e0cd7b9de879f8d510a80886891f4101b3cdd3a3ef4e2fb9a32081c68f65ac0
MD5 9aea594bee06969e8eb8207f2f8b7c4c
BLAKE2b-256 741fd91ea6df4e764e5d7781511ef01a37feef7cfeb5ff7e476d59ed60c21679

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d4d9916a289ca3ca01856994b3ac98b8718c4be341fe5b783dc1cd979c42898
MD5 7c7bc10acf5a7dcb8891eeda9f5ee36b
BLAKE2b-256 1dc76e5fb827c9ff1023406d1da5095a4fab5052d5f4bec64d63345d2a508375

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 369cc187a1de408b7bb76923e92725d1d708585aec47fde89fe5000bbac2abbf
MD5 18bdf255532eee97d2de63b0b1ae7e4b
BLAKE2b-256 6dc8769ea9f93c5d7964d9980ea96a0be5cf3681132e15ba0e74d54e27861432

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71ff49049a693baf061d517a0de9768503fa33a0c94237fcf418fd9105b861b2
MD5 83cc8ba747baa12c482eb9b9b8d62b0a
BLAKE2b-256 cea0ad790cc250c99ff6453615e89f7c634c8d730a5ce4486d6c69f6a3a651c8

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3a049fa662cbabc460975360316b74e195f5c7cd513739438a1736f84e5b3a86
MD5 f76f61082fe92d1a8117a3f815d70222
BLAKE2b-256 180884087cec02b1221be55916cbd2aeb4e548cce612212d47f3175e8844cf80

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 380eafe36cb43e4934d481b63596aeb6b411cac1cfe3ab5a3c7a6fa07c8a9373
MD5 62178dc9174295d87b30d98bbb35fe6b
BLAKE2b-256 30e9524a41319e630be507b1612f8e828b51a9e6f1b9d37570eea83730276c6d

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8db92836c6e99c75b28e3bbc49a87d886b18ec114142c5deac8e2d46e1abdf68
MD5 53a822f390633487f9d77f37f82f9a2d
BLAKE2b-256 42404a4f107b78865c29909237f81a74903bf166640b9da161c76ba89fb61642

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e5523eb82d5a022812cfcf0f73f77a408687dd0419b199f84157e5a8a656a3eb
MD5 c8fa122bc027572ddb21515ca6f58ccb
BLAKE2b-256 15ef06957f6fe9e7957006b311cc058e3568e0d5bc402786fa41e85bcf0f6216

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aab15ba5a1e7846e8253e1c6cd9ea35e4d27c4c5c7eb07c8040d46fa81ea86f5
MD5 dbe5a7ca9944445474a0dbbfa34bc215
BLAKE2b-256 84175fb01edace7a680a73abdfc89a4ca5f8dc64968949c8f88f46c0be1e9fc1

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 89ce2a020dd4d3198a47619504be031920283f7300aa794457cad688abe8d124
MD5 5db19dc0477a5abe31971ccac6b463da
BLAKE2b-256 b7082aa514081c596d942f40e820c0f348c61e3207d7aab7631e3dd1767e6e5c

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85a253ad7f1c012854aeb9f1f4dd8535b2948ec494c040e7367ec3881e995f43
MD5 5a4681c94ade236a5e48ed421a497da0
BLAKE2b-256 1138457fc12b05c53aa8626de10c679655df429be0c9892774a149f39b97e5cd

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a31c8e79f60d731220d6707c1f15bdbdfca20afb5a1d20807934f63b1e02bcdc
MD5 98ddc2c7d7bce880be291613fabc6eb1
BLAKE2b-256 6d94950be9a8b03bb14c0faed5069b29397b7817699d1ec340f0a81acad54ea5

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a5f7c1d3a55884e2b07dc652a0560ea9e084120b84b4ec02b09dcc0e7ea5d23
MD5 430419221464cfda6d070d01fcd9a4e3
BLAKE2b-256 e032cb68837199e59c718cdfb113b143dee097eade429f5c242156f1392569de

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f25f1060a56975f43e46e361951fa1afe61446dda8de86db4fd6b30601f21aa2
MD5 48984ac89df39e56872f3f836685f427
BLAKE2b-256 1e38a9bad8be5211331eb2d8a4160c8e9cf8f0bbb574adc422c7f8296e1a7011

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9bde0c55af6c054013e35a24593c21f85e147aeebe077becb87021cb032c6a21
MD5 bdeb7a605be6be41e98022814ede30e6
BLAKE2b-256 aea1959b2dc38ada845c7090e1836fd6cd4fb9a7d0ef9fde8b5564b96ffc4569

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9f41dab4a3ef69845c40478f060863f266664588c3f3fda1809e2cd47a2c46ed
MD5 33763c847603f5d45924d0c183e71a77
BLAKE2b-256 3da28adcf19f9e559ddea8674ce60a9efdd680f71e9451af2e8d5ca27c186b7e

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7c316a9de826dc5494de6ae3a32742c8865dc799c42df60ced5d9bdd577d68e
MD5 7a12452b033290f23ca5b19cd3b72589
BLAKE2b-256 9025cb4f5d409aad8052b309ab297b4e1a0a218b1e4a16877446d282c74429a8

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bcce407d5f5608558b40e33d5d9d67166114f956e9887a484d9524dfb6f00811
MD5 189366ab03f3e83d9721fa9b140d6ea1
BLAKE2b-256 a6b9d62f163018bec4c16a125f4c24b5249467f73cb48239304447f4080cbdf0

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d31785c0495d18d5cd204542cb5ae76a64c1d66c6f6c170872dabf07184f928
MD5 02447569c1639f40e9cd56083154715d
BLAKE2b-256 b105781eb52398e0096a873589bc852cd3aaa44e4b728bb39cf066b69cf00dc4

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: cascadio-0.0.13-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 13.8 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.9

File hashes

Hashes for cascadio-0.0.13-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d3598031014e448b9c912cd10343c8ce0ce545d1be3c20dc79e120747dbcf9a9
MD5 5f4da446646007dde33fc15f7ad97a53
BLAKE2b-256 97bd96bbed85e62ad13a152c12c31995f483d344db30c7f2ad5227c9ac92a0c7

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 254d32a2914b6c98cde87d3f7ca6f3c2eb7ef5cd7d267176bc7f6e667dad7976
MD5 ee0f0598d38f11cd66cad4986604e16e
BLAKE2b-256 f820e464c73ac92585eea976000c4deb76ad5d2acafd5f18bee969b4257a8006

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8055cfc90c703103afa2f06cee04a3c30cd8779b34f295e462e43cac6dcc61a6
MD5 033f24ccbb74271a3671a8a1c8dc18b1
BLAKE2b-256 d2803410cd4f4f80305c14cab71eb8424ec665fb0fe3a2cb5d61731658f8be8b

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8214440f8904be69e57a1727ca28a8008744020d5ad1a8654048921593ab10ad
MD5 3fb2a21694d57e460bc18f5d80aa6a01
BLAKE2b-256 37cd655a6ec31bab8d3ccabe1d635ba001b91b88950b93951d33f0a66715c302

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: cascadio-0.0.13-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 13.8 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.9

File hashes

Hashes for cascadio-0.0.13-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 371d45e8533c01da92ae82dd57a4810b96f80a5f01e41e298ac9a6b39c75519e
MD5 9fe413bb1ed4ec1f7ac97278aa72f776
BLAKE2b-256 8a61b8e8f635e5d2efd303159c15e26d5fccdd46dfbc608dd739c1ff9cccad49

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6a3464dee456756ea7d7abbe5baebb34e2cfa407badd966933a4c5d8dc8b841
MD5 c691e61ee4af6db00c96db9c13fdaf66
BLAKE2b-256 7e797aadcc80b5017b4ca0129065242e3deb28002477dd2124519141f0826f13

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7660ab91a9a8658a5bf5426ab2e242fd12b26ecaf546cfdfb00981895f66e31e
MD5 93c29d57bef064a83fa7ca11c2efabe2
BLAKE2b-256 8429f48fda568f2a2bbfab01c5f2a4ced9a7cbbc470af5306368d671046fda07

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d246994382e037d693dfcbc8f2b518a1ba1577e1cc768eb2c8e332fd15cf307a
MD5 3ded0ce7442066bd9c05065e528f441e
BLAKE2b-256 a8819b1ae0b299c4a1295b6b81a006d51005734d68b7edd7910473921c1a73a1

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: cascadio-0.0.13-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 13.8 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.9

File hashes

Hashes for cascadio-0.0.13-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 0c9c2ae18da83bb5760946b9cf749de08b7de7ca99d03d71d48370863af6e264
MD5 fb30b17aaad854a7975159e5504ccf61
BLAKE2b-256 4eb9168704181158e04f7f20f5897d6355727ce977dc85a80e4efdf1481f0e4b

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3036f98761d79b0cdb31b81c37d5d03b4ca07b1746ae5c5af39c814ce960ecb
MD5 10a24b26b790d81e54777862cd4d3741
BLAKE2b-256 49422ccdbef3ca8673e9b31e047c26814e5c73f1ba22d9c2ac311923a20d3881

See more details on using hashes here.

File details

Details for the file cascadio-0.0.13-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cascadio-0.0.13-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b44d2d54024b43f73f26eb6c3970f95763cf366beea54e77ff282e2a378497ef
MD5 12aa1cb4c113d8c390ea58cd65f10cec
BLAKE2b-256 3440099e612c87dbcdc1a907f6158efad94792a8c1482117468ee280da0d075a

See more details on using hashes here.

Supported by

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