Skip to main content

RAW image processing for Python, a wrapper for libraw

Project description

rawpy is an easy-to-use Python wrapper for the LibRaw library. It also contains some extra functionality for finding and repairing hot/dead pixels.

API Documentation

Jupyter notebook tutorials

Sample code

Load a RAW file and save the postprocessed image using default parameters:

import rawpy
import imageio.v3 as iio

path = 'image.nef'
with rawpy.imread(path) as raw:
    rgb = raw.postprocess()
iio.imwrite('default.tiff', rgb)

Save as 16-bit linear image:

with rawpy.imread(path) as raw:
    rgb = raw.postprocess(gamma=(1,1), no_auto_bright=True, output_bps=16)
iio.imwrite('linear.tiff', rgb)

Extract embedded thumbnail/preview image and save as JPEG:

with rawpy.imread(path) as raw:
    # raises rawpy.LibRawNoThumbnailError if thumbnail missing
    # raises rawpy.LibRawUnsupportedThumbnailError if unsupported format
    thumb = raw.extract_thumb()
if thumb.format == rawpy.ThumbFormat.JPEG:
    # thumb.data is already in JPEG format, save as-is
    with open('thumb.jpeg', 'wb') as f:
        f.write(thumb.data)
elif thumb.format == rawpy.ThumbFormat.BITMAP:
    # thumb.data is an RGB numpy array, convert with imageio
    iio.imwrite('thumb.jpeg', thumb.data)

Find bad pixels using multiple RAW files and repair them:

import rawpy.enhance

paths = ['image1.nef', 'image2.nef', 'image3.nef']
bad_pixels = rawpy.enhance.find_bad_pixels(paths)

for path in paths:
    with rawpy.imread(path) as raw:
        rawpy.enhance.repair_bad_pixels(raw, bad_pixels, method='median')
        rgb = raw.postprocess()
    iio.imwrite(path + '.tiff', rgb)

Installation

Install rawpy by running:

pip install rawpy

64-bit binary wheels are provided for Linux, macOS, and Windows.

Stable vs. pre-release

All stable rawpy releases are always built against a stable LibRaw library release. You can output the LibRaw version with print(rawpy.libraw_version).

rawpy pre-releases have version numbers like 0.15.0a1 and are built against a recent LibRaw snapshot. To install a pre-release, run:

pip install --pre rawpy

Optional features

The underlying LibRaw library supports several optional features. The following table shows which PyPI binary wheels support which features.

Feature Windows macOS Linux
LCMS color engine yes yes yes
RedCine codec yes yes yes
DNG deflate codec yes yes yes
DNG lossy codec yes yes yes
Demosaic Pack GPL2 no no no
Demosaic Pack GPL3 no no no
OpenMP yes no yes

Tip: You can dynamically query supported features by inspecting the rawpy.flags dictionary.

Note on GPL demosaic packs: The GPL2 and GPL3 demosaic packs are not included as rawpy is licensed under the MIT license which is incompatible with GPL.

Installation from source on Linux/macOS

For macOS, LibRaw is built as part of the rawpy build (see external/). For Linux, you need to install the LibRaw library on your system.

On Ubuntu, you can get (an outdated) version with:

sudo apt-get install libraw-dev

Or install the latest release version from the source repository:

git clone https://github.com/LibRaw/LibRaw.git libraw
git clone https://github.com/LibRaw/LibRaw-cmake.git libraw-cmake
cd libraw
git checkout 0.20.0
cp -R ../libraw-cmake/* .
cmake .
sudo make install

After that, install rawpy using:

git clone https://github.com/letmaik/rawpy
cd rawpy
pip install numpy cython
pip install .

On Linux, if you get the error "ImportError: libraw.so: cannot open shared object file: No such file or directory" when trying to use rawpy, then do the following:

echo "/usr/local/lib" | sudo tee /etc/ld.so.conf.d/99local.conf
sudo ldconfig

The LibRaw library is installed in /usr/local/lib (if installed manually) and apparently this folder is not searched for libraries by default in some Linux distributions.

Installation from source on Windows

These instructions are experimental and support is not provided for them. Typically, there should be no need to build manually since wheels are hosted on PyPI.

You need to have Visual Studio installed to build rawpy.

In a PowerShell window:

$env:USE_CONDA = '1'
$env:PYTHON_VERSION = '3.7'
$env:PYTHON_ARCH = '64'
$env:NUMPY_VERSION = '1.14.*'
git clone https://github.com/letmaik/rawpy
cd rawpy
.github/scripts/build-windows.ps1

The above will download all build dependencies (including a Python installation) and is fully configured through the four environment variables. Set USE_CONDA = '0' to build within an existing Python environment.

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

rawpy-0.25.0-cp313-cp313-win_amd64.whl (845.1 kB view details)

Uploaded CPython 3.13Windows x86-64

rawpy-0.25.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rawpy-0.25.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rawpy-0.25.0-cp313-cp313-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rawpy-0.25.0-cp313-cp313-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 10.9+ x86-64

rawpy-0.25.0-cp312-cp312-win_amd64.whl (845.3 kB view details)

Uploaded CPython 3.12Windows x86-64

rawpy-0.25.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rawpy-0.25.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rawpy-0.25.0-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rawpy-0.25.0-cp312-cp312-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

rawpy-0.25.0-cp311-cp311-win_amd64.whl (848.8 kB view details)

Uploaded CPython 3.11Windows x86-64

rawpy-0.25.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rawpy-0.25.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rawpy-0.25.0-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rawpy-0.25.0-cp311-cp311-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

rawpy-0.25.0-cp310-cp310-win_amd64.whl (849.0 kB view details)

Uploaded CPython 3.10Windows x86-64

rawpy-0.25.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rawpy-0.25.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rawpy-0.25.0-cp310-cp310-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rawpy-0.25.0-cp310-cp310-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

rawpy-0.25.0-cp39-cp39-win_amd64.whl (849.4 kB view details)

Uploaded CPython 3.9Windows x86-64

rawpy-0.25.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

rawpy-0.25.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

rawpy-0.25.0-cp39-cp39-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rawpy-0.25.0-cp39-cp39-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file rawpy-0.25.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rawpy-0.25.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 845.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rawpy-0.25.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 68cc8e550982621e692e033060f9505d6fa371eae539e148879d7b8006b11c43
MD5 f7a59d3a1a3014ffb65a383c7984c51a
BLAKE2b-256 cfd35904eff78c5d5abd27e3b1ee525b2951ec207d31e77c9dabf11debe139d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.0-cp313-cp313-win_amd64.whl:

Publisher: ci.yml on letmaik/rawpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rawpy-0.25.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aab8834a03fbd1645d46431b714c09617b257840b632fef59aba4b94010ff8b1
MD5 f98287157110eef215e3db24a010b328
BLAKE2b-256 c310c6131a6f4871c40037d1919d2b2f63878f6c2e9f9ceeb2a66d0d2a059a0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on letmaik/rawpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rawpy-0.25.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e3cd4e5f23ccd60ddf0a2ce807d0a898b5143799829ce68aa33289ac2319c1e
MD5 2c2f43b4c1b438b3952461bc693dcb54
BLAKE2b-256 9ca8f2263e6135a9971e1636223ff231a8595f2d8c3efb9b326911c36d6597cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on letmaik/rawpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rawpy-0.25.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ac7d9ac0a84b8e957bb9df47184f615719aab1dbd9ae46efe6caf7f3eb0cbc2
MD5 edbf8ba2c7ddada47ac80392bb7b3afd
BLAKE2b-256 50a7cf06440823f994c5da963dbe0b3adb2a7f3d28709ad3fe6dac58a124317b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci.yml on letmaik/rawpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rawpy-0.25.0-cp313-cp313-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.0-cp313-cp313-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d95163f5ad28faa5fd176f3fe9154f1bc14097ed7e07f2092dddfab68c3bfd8d
MD5 37faecff2e165395b9d0d897eda6cca2
BLAKE2b-256 2a039191587911b3526b8ae5ed182e641d7a812060a8eae78c984562bdb5d61f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.0-cp313-cp313-macosx_10_9_x86_64.whl:

Publisher: ci.yml on letmaik/rawpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rawpy-0.25.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rawpy-0.25.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 845.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rawpy-0.25.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8598fb49189833004c445a95c2af0bb1ad217457a7d9813565ff521273fc20f6
MD5 8d12fb577ed522cb5e6cca279fc0e45e
BLAKE2b-256 254c42e99be846387689dce652c3d2ec46f20bbcb4501ef19612d51a0868b14d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.0-cp312-cp312-win_amd64.whl:

Publisher: ci.yml on letmaik/rawpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rawpy-0.25.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c4d3fba27657c12ac3c6366d5e3c407d292ec7a00db72415c55723990cc6bf4
MD5 f0e20c3cc5afd764a2247275d36227e3
BLAKE2b-256 88aa47355471917d3037e180fcd2eb8f6c88f1e986f785a87c2d20a40e0d8334

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on letmaik/rawpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rawpy-0.25.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 56ba38a6f5b6d117e4aeaa55dcfaa60ce7d4d2b9f9e9f7f559d3bea39a845d4d
MD5 a4478d83b99356aecce1f6ccd44f41c9
BLAKE2b-256 2b56eb31da1771684428e081c4029af4f30aa0842ecad1fc48bbfc9dbe3fd532

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on letmaik/rawpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rawpy-0.25.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf052984b89da8ade5455ccc5146a40b7cda4b1714f81be81f22dec86adac746
MD5 0a13f46e59345e27d9c94c9744c69021
BLAKE2b-256 dd6d48350ed970fc0091bcf21f26a1468acfe9dba8903ab6f9913b6ec3ee1ac1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci.yml on letmaik/rawpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rawpy-0.25.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dc3856eaf4206d48c46a6596ec4a039c8217df9cb693624033995f330de07644
MD5 217961309e35dbc6fc4c462dc866c5d5
BLAKE2b-256 03af360045702c44d58814b7debc04f9aff0d78593f82b6639d8661b5efc0439

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.0-cp312-cp312-macosx_10_9_x86_64.whl:

Publisher: ci.yml on letmaik/rawpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rawpy-0.25.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rawpy-0.25.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 848.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rawpy-0.25.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 80b32168a8b44e59c5451738da301c6756641a5e9daf5a4f7cef41987dd4aa02
MD5 cd4b049c8b109b4f7292dc3e124241f9
BLAKE2b-256 b91b8e769b0dbb0b45e3a0f173beb01e978b18d6527ec2209c13c480f59d0f85

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.0-cp311-cp311-win_amd64.whl:

Publisher: ci.yml on letmaik/rawpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rawpy-0.25.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4cc383289b6aa9951741d2a8bba5903c8218b5a67ee73ebe0e96e8944d16354b
MD5 448c67a60693e7088f15e0e590569b12
BLAKE2b-256 6f8d2a09b117ae6dfb6d7f3801d931573a5e3dfe350c6907bb34a204e769d484

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on letmaik/rawpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rawpy-0.25.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8672ca8a231ced6906221c4172755c6f87d72798acfc9209dd391ee60d13053a
MD5 1f0e1da2a430bcff2a08c5c386e65e63
BLAKE2b-256 72bdac024fd9dfc2bc9afccfc022fdcee6fe87ea2a39fc3c90a565e4cd27a549

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on letmaik/rawpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rawpy-0.25.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02d9b125cab3e9bbf78f310d3eee754e1c37961f02c2ed8c15d495bcf0a1b188
MD5 8f334e7860f6f968bfff777051603e4c
BLAKE2b-256 f0cd82573af36917775d4210ca8cdaaf7876c98f2f121dc47b0355a08bfa0587

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci.yml on letmaik/rawpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rawpy-0.25.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 752b18c80f352a7a619a57e6605bd1a590719d3dfdf960ff6631d6b6e7969de8
MD5 143ed7d7f4b0301e3097e2ea2507f05c
BLAKE2b-256 588318f52c4765c67e0f072638880cdca29ed2592f9d002e98269f6b389c7c9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: ci.yml on letmaik/rawpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rawpy-0.25.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rawpy-0.25.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 849.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rawpy-0.25.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 57043bce5e187ad1f0a63bac2d26c50c26f3bd501f9fa66a9d948623699cf9b0
MD5 985cad3f15d3cdb1de0d9e12dd92651e
BLAKE2b-256 2fea3c382e57c99c776d3cb3468abad1a290b40db891659c9a5cb50317de202e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.0-cp310-cp310-win_amd64.whl:

Publisher: ci.yml on letmaik/rawpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rawpy-0.25.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3cac853e75488c05f38908a50f285be1701b9c06328f1cb74f5e5bebda0d26ed
MD5 ec5832aabc900a02e5fce66719895a16
BLAKE2b-256 a46610296b5d8b86e63b8c237fe3a7957fd36abb5cd08ad67e2a6bc3b67df8fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on letmaik/rawpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rawpy-0.25.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 64fbd648bcf962902e83738b368d208546ba80cf2d6abac5341982c6d989a766
MD5 4afd4657ee70cef7f6d5bc943fe3983f
BLAKE2b-256 e09ea7a2289e4c3401ca26921e0fe4c3ff80a46ea3bf6080f3f79d34004fd58c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on letmaik/rawpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rawpy-0.25.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a12d3be40758ba13aa274a7d05b0dce84d4690a582fb968c8e94701f2ded9c09
MD5 ad9a25b5b2f13e365246cf2b406c7da1
BLAKE2b-256 40ca1e9b310f449bab7828ba2dfd69ede6a6d6a5ee1ad76f8b0e189e9cda607a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: ci.yml on letmaik/rawpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rawpy-0.25.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 29d38f3695509e44a838b342123c70fc93298f2f5f75cb6433794b7f737c7086
MD5 fdcfce3b55dc4aa0afd8c2b72d658161
BLAKE2b-256 9639ea8b22dd7947a70c428566875ba1c2ae30700a28db924977da053fd9164c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: ci.yml on letmaik/rawpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rawpy-0.25.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: rawpy-0.25.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 849.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rawpy-0.25.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fe906dbc01b9c68f082bd945b0f475d60f26d40f2b7784bf1856f11d853b3a55
MD5 2ccd40dae0b024a576bd82ea97c42378
BLAKE2b-256 4948ddebb49b75745e43f5bb5e4dbf9b2cdb50b178c51a29f663bca0d3d03b75

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.0-cp39-cp39-win_amd64.whl:

Publisher: ci.yml on letmaik/rawpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rawpy-0.25.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac6bc8704e5fbf21b6e8b7a423908f84919fc2e9eb327f14802bc13adf723d4a
MD5 8315930ca127ea4f130c96148befc0f3
BLAKE2b-256 ceefd78acca8e402d93c96ebca2fdb36347f7c32b9389bffd7da172cb1dee2d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on letmaik/rawpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rawpy-0.25.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a3e0f70bfccf7a55c633a65dfee5796c638777bce9e169b29eb11e8abb279292
MD5 a021fc60e0143734764baa1ab5892945
BLAKE2b-256 0971df1dd7c322b173a5db5986ad8ffee0b7543e26131364e7903f09d9111e97

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on letmaik/rawpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rawpy-0.25.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5151efe8a47fde2c5cfa26f7c55fc7b8975bb57fd3481d4b2fa65d81b0d2a053
MD5 5b14f9abe28debea4715af8dfb6ed17a
BLAKE2b-256 0bd890ed3f8498d3e90cb6673f1b6217739ba9fe320379ba4537d03107d87e52

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: ci.yml on letmaik/rawpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rawpy-0.25.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 05292dca9d6ec5067919a0c9bcea124280ce38b06f3a36e3ff9e58e82d8c5ef7
MD5 97de7ff762964368aa89f970c32531b5
BLAKE2b-256 aadde9775f596edf1230831239b2394d40028a8775ffdd311bc29819b1ff64ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: ci.yml on letmaik/rawpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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