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

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

rawpy-0.25.1-cp313-cp313-win_amd64.whl (864.1 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.9+ x86-64

rawpy-0.25.1-cp312-cp312-win_amd64.whl (863.9 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

rawpy-0.25.1-cp311-cp311-win_amd64.whl (869.8 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

rawpy-0.25.1-cp310-cp310-win_amd64.whl (869.9 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

rawpy-0.25.1-cp39-cp39-win_amd64.whl (870.3 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

rawpy-0.25.1-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.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rawpy-0.25.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 864.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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 71a24f688f80df829baa0b639d2ebf04a2e6934cbf62a95651b6541cfa21610f
MD5 2108a982eb68a0defb614abd793c9cc7
BLAKE2b-256 e4f06c770f8161decd878c7bf8be01359d856f20f88731686d2fa9ba0ff5d07c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.1-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.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 7428891221f01e5de00c214bb8b4d90ed7ce2cc05d988dbe727cd31bae27be16
MD5 45e718a88e668ce9988c50e99e052183
BLAKE2b-256 c5b418eaeb24178267ff2f0293ffaca063ba8ca3df454135af8203c8dcc1b392

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_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.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 35dc70dc1b5bdeeb6373a16642e03e830866b9cb9913700d5a4553e0632614f2
MD5 05f3eb92eebbb8c21b258633b1a12d27
BLAKE2b-256 be506bc0b6244b375632b1606efa1eee52a8065d71201b61f24e5316b8532e34

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_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.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e9bfce34be5af4716b9187fa8f59a1731320ffcb15ea3263d749dffb22963fd2
MD5 0614327fa26d305c3a68362e2a0a2350
BLAKE2b-256 44a6d44c2841e41da22a06a0f2d83cffca3e7b2431e5e6208e045062d78df85b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.1-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.1-cp313-cp313-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.1-cp313-cp313-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1ab6f626c9a89b4b4f8c4e3c61a03636b551bbea9f2c23425310b49d463232d8
MD5 a52869f102eb9a6121d2aad4616f5db3
BLAKE2b-256 4909b326d7ef050c763e25f285f7c7647720836fca536a288c8d47d01b044d20

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.1-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.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rawpy-0.25.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 863.9 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fb91f8fb21b56037ecc3c062ce2de4d97fdc7d4ecb1d2738280461d74c593562
MD5 c9ec7dd9c8dd88d17fe75b0d6f06af9d
BLAKE2b-256 a7903f665e62a3ef8c6059faec665878acfcf4078bc0669d99d153394645fcb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.1-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.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 1ea3c7617e0de2483155c3dfc3c475df7ec393bc1901307c53c5346590e34f1b
MD5 2238cf17d8871e08937303dedd215870
BLAKE2b-256 823780eb8b019e424fa0e1dd7fcfd274b9491b85990d95b0a477029b8e89e924

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_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.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 b72705da4a23beba6aa85dbe3bb4f68e7d32e7f123847160a4c1e5db8adecb69
MD5 a6b1bb1d84290adae62f7e038a5d4d2d
BLAKE2b-256 6c6a0384603b6bd9a7e524480ea9e4bcc8166bed3a0b361e0cb07f4a74f86aec

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_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.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4cd188819bf2e99b399e56f84adc22551f8db6bf645e95c36e86b6fed910246
MD5 bb1cf762d844eb8df45d8d97f5206850
BLAKE2b-256 805a89bc5605f080d077d7325d48834ecc2bd8f34c7eb288d7a74e0ce519eb2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.1-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.1-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 de1eb5dc43b8d8f64815458a6e3cbd54b2d0a661963f8d545c8b8028ed4dbdd8
MD5 36a0b28c7e28fa6f28cd562931221b2e
BLAKE2b-256 79dc3f1523233a1c9e4f9ed5cd3da25098a38045ec8915c5e84c57afa4dee9fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.1-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.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rawpy-0.25.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 869.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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 de1d4e3084529d5db85a5adae0837263a4b6eb2808a9c243c6eb41b5088795c3
MD5 df3d95661ea94f3b267e55089b88b0af
BLAKE2b-256 cc11ab7e675be2ff617ff1e4bf8c1d1c91a89520ce78031dd721be6e4a981d7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.1-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.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 265278d9bb4aa0a5eb21fe39eaf7949b3d4d7595259dc91343dda3a7cfa1ac14
MD5 a93422ccb6367adddbe34b165c933307
BLAKE2b-256 adad9bef727b8d12c2901524c5c0077008af7d5ee99a9244898a1cd67022d056

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_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.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 feb385d51f90ef72c317ef49a897ea2aa4971a6d94fc977d2f790c50e835220d
MD5 f6cd5abb2ddeb85f71812fd3c7d1ff92
BLAKE2b-256 5d3ecaaa5894f2df07d7dac29e18fc3c1bccc5ca455771aec2f3c0840c102e84

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_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.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4da2a0d554d201b764556146fa960de805b3ba7f799c7222f2cbc80960769285
MD5 017b2428b722756d1cacd958e4a58461
BLAKE2b-256 5285003d44328ba2b688ad59d8c1296817ec377fae5663798f714b44d65eefeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.1-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.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cd7327d3c26bc74fdad33ce5bde86f18d99637da3bbb61159e2b231ecc22fe1e
MD5 6c27f141441ab09699ef5d7e6e8d33b6
BLAKE2b-256 e95f608fcc3f50c876c551ace47628a99887bb54fce9184627797465f63fa227

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.1-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.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rawpy-0.25.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 869.9 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e869139702603ce86e6aa4c023aca4cc676dc2cd2db79d5d2397696bdb38953a
MD5 d2907e60e6b23feb0363709a13bbbc22
BLAKE2b-256 349691aa5f225f007166b27eef0f4be1b7d0a750680f29ee077309a99d055893

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.1-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.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 0b7b00ee90ac130185245f9ee563ccb3901f03900237e8ae7063c5cc7b3d29af
MD5 c7e2186024890e320566a6c920b17864
BLAKE2b-256 427309cd12eaac22f7a78d450db1833e57ca0e1e5c299c6119f341896f4aab21

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_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.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 8bd9330a8b8f33cf3be584d9e895d9417b568039ed8954d652c83835f3ffabab
MD5 f4b75eb7189ddd3002688955cc6fde58
BLAKE2b-256 e6421783fee4a1516528500d23b595a43d7260f76b23873f49b02b106bf4d7e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_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.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e29d651dd25b3e06bb3a740d9b8d7d4690a10cddb4a9ee29ea8f6bad9c9c2548
MD5 afaee4fbe1abc70a6bf1e5d96e58f98e
BLAKE2b-256 1db973506bda8457cd5939f0971cc080340c75a1924b7c25fb77e1a5dc9cbb4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.1-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.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4d1010693862f03fb1e4ba699afa45804f81f4b5d380169052feac09fe47bd42
MD5 76949c163aa37c422cd6d6c7dee5aad0
BLAKE2b-256 3cf8bd7e8964bbab748f5feb00251ede49b725efa1e91cf0118cd10d48ab35f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.1-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.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: rawpy-0.25.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 870.3 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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 02e1436c213caf638adbafaece949524a1ef3a60a206eeec266e996e3797c1aa
MD5 1a0b43684928edfac4502a1aa57a83d1
BLAKE2b-256 70e0f21af1c344ebf62884aac05692a23912b17141d5feb5235eba4a62f5f35f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.1-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.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 307fdf9ea6065300d5d9bded67d8e26f5c0835ad071e4949f8416596b4e3dc9e
MD5 ab06e3e969af70eeb37456a2d9038807
BLAKE2b-256 cfc0950f0c59977a215d1e26edfa5bc87f0d3749330225f095f52e8c8e725f20

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_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.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 eee40dea2b5ad87cfd605fed4ab9326ad795e9458e66cf74979ea1d32c082029
MD5 2996692e73303ce2cf27800d06c57d22
BLAKE2b-256 8faa9f72ae834530472559e6577d9c19c7faba06e77dbccd550b9323e574af79

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_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.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d6c49b2a6389e996293ef9fcb29a436ca6bc7aadc0b8a9b9aa4f4d864a40318
MD5 f1f0c9a60cba0d596a0ea64211ec4633
BLAKE2b-256 3e9729191bd4b7dff3f01316e5e5e90bad4feaa87f049c87250f18edb3764e12

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.1-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.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rawpy-0.25.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 98b3bf285f3b40b3de81bd12d2465590472d470da4b06fc1f2c894dce8a6f89b
MD5 72d69f923537ff5b0be00022417fc66c
BLAKE2b-256 e55f37584a554421a199038a9ac7387f4532e686efa56a7bbd6a4a46993f59c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rawpy-0.25.1-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 Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page