Skip to main content

Python package for working with Adobe Photoshop PSD files

Project description

psd-tools is a Python package for working with Adobe Photoshop PSD files as described in specification.

PyPI Version Build Document Status

Features

Supported:

  • Read and write of the low-level PSD/PSB file structure

  • Raw layer image export in NumPy and PIL format

Limited support:

  • Composition of basic pixel-based layers

  • Composition of fill layer effects

  • Vector masks

  • Editing of some layer attributes such as layer name

  • Blending modes except for dissolve

  • Drawing of bezier curves

Not supported:

  • Editing of layer structure, such as adding or removing a layer

  • Composition of adjustment layers

  • Composition of many layer effects

  • Font rendering

Installation

Use pip to install the package:

pip install psd-tools

Getting started

from psd_tools import PSDImage

psd = PSDImage.open('example.psd')
psd.composite().save('example.png')

for layer in psd:
    print(layer)
    layer_image = layer.composite()
    layer_image.save('%s.png' % layer.name)

Check out the documentation for features and details.

Contributing

See contributing page.

1.9.19 (2021-04-15)

  • [composite] Fix rasterized shape composite (#301 #302)

1.9.18 (2021-08-20)

  • [api] Fix missing effect attributes (#284)

  • [package] Support additional platforms (i686, aarch64, universal2, win32)

  • [package] Drop py36 support

1.9.17 (2021-01-15)

  • [api] Fix incorrect fill layer parse (fix #254)

1.9.16 (2020-09-24)

  • [package] Drop py27 and py35 support

  • [psd] Workaround Enum bug (fix #241)

  • [composite] Fix transparency issue (fix #242)

  • [composite] Fix mask disable flag (fix #243)

  • [api] Add workaround for creating PSB (fix #246)

  • [api] Fix incorrect adjustment parse (fix #247)

1.9.15 (2020-07-17)

  • [composite] Fix ignored clip layers for groups.

  • [composite] Fix out-of-viewport stroke effect.

1.9.14 (2020-07-10)

  • [api] Bugfix for PSDImage composite layer_filter option.

  • [api] Bugfix for transparency and alpha distinction.

  • [psd] Rename COMPOSITOR_INFO.

  • [composite] Fix stroke effect target shape.

1.9.13 (2020-05-25)

  • [api] Bugfix for PSDImage init internal.

1.9.12 (2020-05-20)

  • [psd] Bugfix for CurvesExtraMarker read.

1.9.11 (2020-05-01)

  • [composite] Fix layer check.

1.9.10 (2020-04-21)

  • [psd] Fix engine data parser.

1.9.9 (2020-03-30)

  • [composite] Fix stroke effect argument.

1.9.8 (2020-03-18)

  • [composite] Fix incorrect fill opacity handling in compositing.

  • [composite] Fix incorrect alpha for patterns.

1.9.7 (2020-03-17)

  • [composite] Fix path operation for merged components.

  • [composite] Fix vector mask compositing condition.

1.9.6 (2020-03-16)

  • [composite] Fix incorrect alpha channel handling in composite.

1.9.5 (2020-03-11)

  • [api] Add ignore_preview option to PSDImage.composite.

  • [composite] Improve stroke effect composition for vector masks.

  • [composite] Avoid crash when there is an erroneous subpath.

  • [composite] Workaround possible divide-by-zero warn in stroke composition.

  • [composite] Fix incorrect pattern transparency handling.

  • [composite] Fix ignored effects in direct group composition.

  • [composite] Fix incorrect opacity handling for clip layers.

1.9.4 (2020-03-11)

  • [compression] Security fix, affected versions are 1.8.37 - 1.9.3.

1.9.3 (2020-03-10)

  • [composite] Fix memory corruption crash for pattern data in PSB files.

  • [psd] Add image data pretty printing.

1.9.2 (2020-03-03)

  • [psd] Add missing resource ID.

  • [psd] Fix pretty printing regression.

  • [psd] Fix big tag key for linked layers.

  • [psd] Support frgb tag.

  • [psd] Support sgrp metadata key.

  • [psd] Support patt tag.

  • [psd] Workaround unknown engine data.

1.9.1 (2020-02-28)

  • [psd] Minor bugfix.

1.9.0 (2020-02-26)

  • [composite] Implement NumPy-based compositing functionality.

  • [composite] Support blending modes other than dissolve.

  • [composite] Support blending in RGB, CMYK, Grayscale.

  • [api] Introduce NumPy array export method.

  • [api] Drop deprecated methods from v1.7.x such as as_PIL.

  • [api] Deprecate compose method.

  • [compression] Rename packbits to rle.

  • [compression] Improve RLE decode efficiency.

  • [tests] Additional compositing tests.

1.8.38 (2020-02-12)

  • [composer] fix crash when gradient fill is in stroke.

1.8.37 (2020-02-07)

  • [compression] Remove packbits dependency and introduce cython implementation.

  • [deploy] Move CI provider from Travis-CI to Github Actions.

  • [deploy] Start distributing binary wheels.

1.8.36 (2019-12-26)

  • [psd] add safeguard for malformed global layer mask info parser.

1.8.35 (2019-12-26)

  • [api] remove duplicate has_mask() definition.

  • [composer] fix empty effects check.

1.8.34 (2019-11-28)

  • [api] fix compose() arguments.

  • [psd] fix attrs version dependency.

1.8.33 (2019-11-28)

  • [api] add include_invisible option to Group.extract_bbox.

  • [psd] fix deprecated attrs api.

1.8.32 (2019-11-28)

  • [psd] fix 16/32 bit file parsing bug introduced in 1.8.17.

1.8.31 (2019-11-27)

  • [psd] bugfix reading psb.

  • [psd] bugfix reading slices resource.

  • [security] update dependency to pillow >= 6.2.0.

1.8.30 (2019-09-24)

  • [psd] workaround for reading less-than-4-byte int in malformed psd files.

1.8.29 (2019-09-10)

  • [composer] fix vector mask bbox in composition.

1.8.28 (2019-09-09)

  • [api] fix Effects.__repr__() when data is empty.

1.8.27 (2019-08-29)

  • [api] accept encoding param in PSDImage.open and PSDImage.save.

  • [deploy] bugfix travis deployment condition.

1.8.26 (2019-08-28)

  • [composer] support group mask.

1.8.25 (2019-08-07)

  • [api] change return type of PSDImage.color_mode to enum.

  • [api] support reading of bitmap color mode.

  • [api] support channel option in topil() method.

1.8.24 (2019-07-25)

  • [composer] experimental support of commutative blending modes.

1.8.23 (2019-06-24)

  • [composer] fix clipping on alpha-less image;

  • [composer] fix stroke effect for flat plane;

  • [composer] workaround for insufficient knots;

  • [composer] fix for custom color space.

1.8.22 (2019-06-19)

  • fix pass-through composing bug;

  • fix alpha blending in effect;

  • fix vector mask composition;

  • experimental support for shape stroke;

  • experimental support for stroke effect.

1.8.21 (2019-06-18)

  • change effect property return type from str to enum;

  • improve gradient quality;

  • support fill opacity and layer opacity;

  • add tmln key in metadata setting.

1.8.20 (2019-06-13)

  • support gradient styles.

1.8.19 (2019-06-11)

  • fix broken psd_tools.composer.vector module in 1.8.17;

  • experimental support for color noise gradient;

  • bugfix for clip masks;

  • bugfix for CMYK composing.

1.8.17 (2019-06-05)

  • move psd_tools.api.composer module to psd_tools.composer package;

  • support 19 blending modes in composer;

  • support fill opacity;

  • fix image size when composing with masks;

  • rename TaggedBlockID to Tag;

  • rename ImageResourceID to Resource;

  • add bytes mixin to Enum constants;

  • replace Enum keys with raw values in psd_tools.psd.base.Dict classes.

1.8.16 (2019-05-24)

  • fix broken group compose in 1.8.15;

  • fix missing pattern / gradient composition in vector stroke content.

1.8.15 (2019-05-23)

  • coding style fix;

  • fix compose() bbox option.

1.8.14 (2019-04-12)

  • add dependency to aggdraw;

  • support bezier curves in vector masks;

  • support path operations;

  • fix compose(force=True) behavior;

  • fix default background color in composer;

  • improve pattern overlay parameters support;

  • fix gradient map generation for a single stop.

1.8.13 (2019-04-05)

  • fix engine_data unknown tag format;

  • fix compose for extra alpha channels;

  • workaround for pillow 6.0.0 bug.

1.8.12 (2019-03-25)

  • add apply_icc option in pil io.

1.8.11 (2019-03-14)

  • introduce terminology module;

  • reduce memory use in read;

  • add main testing.

1.8.10 (2019-02-27)

  • fix PSB extn key size bug.

1.8.9 (2019-02-21)

  • documentation updates;

  • introduce Artboard class.

1.8.8 (2019-02-20)

  • revert package name to psd_tools;

  • prepare merging to the main repo.

1.8.7 (2019-02-15)

  • minor bugfix.

1.8.6 (2019-02-14)

  • change _psd pointer in PSDImage;

  • add version property;

  • support fill effects in composer.

1.8.5 (2019-02-05)

  • change tagged block/image resource singleton accessor in user API;

  • add documentation on iterator order;

  • fix export setting 1 big key config;

  • fix computer info big key config.

1.8.3 (2019-02-01)

  • add channel size checking in topil;

  • add mlst metadata decoding;

  • fix key collision issue in descriptor;

  • performance improvement for packbit encoding/decoding;

  • drop cython dependency in travis config;

  • implement thumbnail, is_group, and parent methods in PSDImage.

1.8.0 (2019-01-24)

  • major API changes;

  • package name changed to psd_tools2;

  • completely rewritten decoding subpackage psd_tools2.psd;

  • improved composer functionality;

  • file write support;

  • drop cython compression module and makes the package pure-python;

  • drop pymaging support.

1.7.30 (2019-01-15)

  • composer alpha blending fix;

  • documentation fix.

1.7.28 (2019-01-09)

  • support cinf tagged block.

1.7.27 (2018-12-06)

  • add missing extra image resource block signatures.

1.7.26 (2018-12-03)

  • move psd_tools tests under tests/psd_tools.

1.7.25 (2018-11-27)

  • fix alpha channel visibility of composed image.

1.7.24 (2018-11-21)

  • fix unit rectangle drawing size.

1.7.23 (2018-11-20)

  • fix ignored visibility in bbox calculation.

1.7.22 (2018-10-12)

  • drop py34 support;

  • fix tobytes deprecation warning.

1.7.21 (2018-10-10)

  • fix gradient descriptor bug.

1.7.20 (2018-10-09)

  • fix coloroverlay bug;

  • fix gradient angle bug;

  • fix curves decoder bug.

1.7.19 (2018-10-02)

  • fix descriptor decoder.

1.7.18 (2018-09-26)

  • add shape rendering in compose();

  • add grayscale support.

1.7.17 (2018-09-21)

  • fix has_pixel() condition.

1.7.16 (2018-08-29)

  • fix fill opacity in compose();

  • workaround for broken PrintFlags.

1.7.15 (2018-08-28)

  • fix color overlay issue in compose().

1.7.14 (2018-08-24)

  • fix verbose arg for python 3.7 compatibility.

1.7.13 (2018-08-10)

  • fix has_pixel() for partial channels;

  • support color overlay in compose().

1.7.12 (2018-06-25)

  • fix mask rendering in compose (Thanks @andrey-hider and @nkato).

1.7.11 (2018-06-11)

  • unicode bugfixes.

1.7.10 (2018-06-06)

  • fix descriptor decoding errors;

  • minor bugfixes.

1.7.9 (2018-06-05)

  • fix UnicodeError in exif;

  • workaround for irregular descriptor name;

  • add undocumented extn tagged block decoding;

  • move duplicated icc module to subpackage;

  • support PIL rendering with extra alpha channels.

1.7.8 (2018-05-29)

  • update documentation;

  • fix PEP8 compliance;

  • rename merge_layers to compose.

1.7.7 (2018-05-02)

  • fix white background issue in as_PIL().

1.7.6 (2018-04-27)

  • add quality testing;

  • fix disabled mask.

1.7.5 (2018-04-25)

  • fix has_mask() condition;

  • add mask composition in merge_layers();

  • fix mask display.

1.7.4 (2018-03-06)

  • fix infinity loop in print_tree().

1.7.3 (2018-02-27)

  • add vector origination API;

  • fix shape and vector mask identification;

  • change enum name conversion;

  • update docs.

1.7.2 (2018-02-14)

  • add adjustments API;

  • add mask API;

  • bugfix for tagged_blocks decoders.

1.7.1 (2018-02-08)

  • add mask user API;

  • add layer coordinate user API;

  • add vector mask and vector stroke API;

  • cleanup user API;

  • add automatic descriptor conversion.

1.7.0 (2018-01-25)

  • cleanup user API organization;

  • remove json encoder api;

  • make cli a package main.

1.6.7 (2018-01-17)

  • workaround for anaconda 2.7 pillow;

  • bbox existence checkf.

1.6.6 (2018-01-10)

  • experimental clipping support in merge_layer();

  • revert as_PIL() in AdjustmentLayer.

1.6.5 (2017-12-22)

  • Small fix for erroneous unicode path name

1.6.4 (2017-12-20)

  • Add all_layers() method;

  • Add _image_resource_blocks property;

  • Add thumbnail() method.

1.6.3 (2017-09-27)

  • documentation updates;

  • github repository renamed to psd-tools2;

  • AdjustmentLayer fix.

1.6.2 (2017-09-13)

  • layer class structure reorganization;

  • add Effects API;

  • add TypeLayer API methods.

1.6 (2017-09-08)

  • PSDImage user API update;

  • user API adds distinct layer types;

  • Sphinx documentation.

1.5 (2017-07-13)

  • implemented many decodings of image resources and tagged blocks;

  • implemented EngineData text information;

  • user API for getting mask and patterns;

  • user API to calculate bbox for shape layers;

1.4 (2017-01-02)

  • Fixed reading of layer mask data (thanks Evgeny Kopylov);

  • Python 2.6 support is dropped;

  • Python 3.6 support is added (thanks Leendert Brouwer);

  • extension is rebuilt with Cython 0.25.2.

1.3 (2016-01-25)

  • fixed references decoding (thanks Josh Drake);

  • fixed PIL support for CMYK files (thanks Michael Wu);

  • optional C extension is rebuilt with Cython 0.23.4;

  • Python 3.2 support is dropped; the package still works in Python 3.2, but the compatibility is no longer checked by tests, and so it can break in future.

  • declare Python 3.5 as supported.

1.2 (2015-01-27)

  • implemented extraction of embedded files (embedded smart objects) - thanks Volker Braun;

  • optional C extension is rebuilt with Cython 0.21.2.

  • hg mirror on bitbucket is dropped, sorry!

1.1 (2014-11-17)

  • improved METADATA_SETTING decoding (thanks Evgeny Kopylov);

  • layer comps decoding (thanks Evgeny Kopylov);

  • improved smart objects decoding (thanks Joey Gentry);

  • user API for getting layer transforms and placed layer size (thanks Joey Gentry);

  • IPython import is deferred to speedup psd-tools.py command-line utility;

  • _RootGroup.__repr__ is fixed;

  • warning message building is more robust;

  • optional C extension is rebuilt with Cython 0.21.1.

1.0 (2014-07-24)

  • Fixed reading of images with layer masks (thanks Evgeny Kopylov);

  • improved mask data decoding (thanks Evgeny Kopylov);

  • fixed synchronization in case of 8B64 signatures (thanks Evgeny Kopylov);

  • fixed reading of layers with zero length (thanks Evgeny Kopylov);

  • fixed Descriptor parsing (thanks Evgeny Kopylov);

  • some of the descriptor structures and tagged block constants are renamed (thanks Evgeny Kopylov);

  • PATH_SELECTION_STATE decoding (thanks Evgeny Kopylov);

  • the library is switched to setuptools; docopt is now installed automatically.

0.10 (2014-06-15)

  • Layer effects parsing (thanks Evgeny Kopylov);

  • trailing null bytes are stripped from descriptor strings (thanks Evgeny Kopylov);

  • “Reference” and “List” descriptor parsing is fixed (thanks Evgeny Kopylov);

  • scalar descriptor values (doubles, floats, booleans) are now returned as scalars, not as lists of size 1 (thanks Evgeny Kopylov);

  • fixed reading of EngineData past declared length (thanks Carlton P. Taylor);

  • “background color” Image Resource parsing (thanks Evgeny Kopylov);

  • psd_tools.decoder.actions.Enum.enum field is renamed to psd_tools.decoder.actions.Enum.value (thanks Evgeny Kopylov);

  • code simplification - constants are now bytestrings as they should be (thanks Evgeny Kopylov);

  • Python 3.4 is supported.

0.9.1 (2014-03-26)

  • Improved merging of transparent layers (thanks Vladimir Timofeev);

  • fixed layer merging and bounding box calculations for empty layers (thanks Vladimir Timofeev);

  • C extension is rebuilt with Cython 0.20.1.

0.9 (2013-12-03)

  • psd-tools.py command-line interface is changed, ‘debug’ command is added;

  • pretty-printing of internal structures;

  • pymaging support is fixed;

  • allow ‘MeSa’ to be a signature for image resource blocks (thanks Alexey Buzanov);

  • psd_tools.debug.debug_view utility function is fixed;

  • Photoshop CC constants are added;

  • Photoshop CC vector origination data is decoded;

  • binary data is preserved if descriptor parsing fails;

  • more verbose logging for PSD reader;

  • channel data reader became more robust - now it doesn’t read past declared channel length;

  • psd-tools.py –version command is fixed;

  • lsdk tagged blocks parsing: this fixes some issues with layer grouping (thanks Ivan Maradzhyiski for the bug report and the patch);

  • CMYK images support is added (thanks Alexey Buzanov, Guillermo Rauch and https://github.com/a-e-m for the help);

  • Grayscale images support is added (thanks https://github.com/a-e-m);

  • LittleCMS is now optional (but it is still required to get proper colors).

0.8.4 (2013-06-12)

  • Point and Millimeter types are added to UnitFloatType (thanks Doug Ellwanger).

0.8.3 (2013-06-01)

  • Some issues with descriptor parsing are fixed (thanks Luke Petre).

0.8.2 (2013-04-12)

  • Python 2.x: reading data from file-like objects is fixed (thanks Pavel Zinovkin).

0.8.1 (2013-03-02)

  • Fixed parsing of layer groups without explicit OPEN_FOLDER mark;

  • Cython extension is rebuilt with Cython 0.18.

0.8 (2013-02-26)

  • Descriptor parsing (thanks Oliver Zheng);

  • text (as string) is extracted from text layers (thanks Oliver Zheng);

  • improved support for optional building of Cython extension.

0.7.1 (2012-12-27)

  • Typo is fixed: LayerRecord.cilpping should be LayerRecord.clipping. Thanks Oliver Zheng.

0.7 (2012-11-08)

  • Highly experimental: basic layer merging is implemented (e.g. it is now possible to export layer group to a PIL image);

  • Layer.visible no longer takes group visibility in account;

  • Layer.visible_global is the old Layer.visible;

  • psd_tools.user_api.combined_bbox made public;

  • Layer.width and Layer.height are removed (use layer.bbox.width and layer.bbox.height instead);

  • pil_support.composite_image_to_PIL is renamed to pil_support.extract_composite_image and pil_support.layer_to_PIL is renamed to pil_support.extract_layer_image in order to have the same API for pil_support and pymaging_support.

0.6 (2012-11-06)

  • psd.composite_image() is renamed to psd.as_PIL();

  • Pymaging support: psd.as_pymaging() and layer.as_pymaging() methods.

0.5 (2012-11-05)

  • Support for zip and zip-with-prediction compression methods is added;

  • support for 16/32bit layers is added;

  • optional Cython extension for faster zip-with-prediction decompression;

  • other speed improvements.

0.2 (2012-11-04)

  • Initial support for 16bit and 32bit PSD files: psd-tools v0.2 can read composite (merged) images for such files and extract information (names, dimensions, hierarchy, etc.) about layers and groups of 16/32bit PSD; extracting image data for distinct layers in 16/32bit PSD files is not suported yet;

  • better Layer.__repr__;

  • bbox property for Group.

0.1.4 (2012-11-01)

Packaging is fixed in this release.

0.1.3 (2012-11-01)

  • Better support for 32bit images (still incomplete);

  • reader is able to handle “global” tagged layer info blocks that was previously discarded.

0.1.2 (2012-10-30)

  • warn about 32bit images;

  • transparency support for composite images.

0.1.1 (2012-10-29)

Initial release (v0.1 had packaging issues).

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

psd-tools-1.9.19.tar.gz (126.3 kB view details)

Uploaded Source

Built Distributions

psd_tools-1.9.19-cp310-cp310-win_amd64.whl (207.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

psd_tools-1.9.19-cp310-cp310-win32.whl (195.4 kB view details)

Uploaded CPython 3.10 Windows x86

psd_tools-1.9.19-cp310-cp310-musllinux_1_1_x86_64.whl (577.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

psd_tools-1.9.19-cp310-cp310-musllinux_1_1_i686.whl (559.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

psd_tools-1.9.19-cp310-cp310-musllinux_1_1_aarch64.whl (571.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

psd_tools-1.9.19-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (574.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

psd_tools-1.9.19-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (570.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

psd_tools-1.9.19-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (564.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

psd_tools-1.9.19-cp310-cp310-macosx_10_9_x86_64.whl (208.5 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

psd_tools-1.9.19-cp310-cp310-macosx_10_9_universal2.whl (276.4 kB view details)

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

psd_tools-1.9.19-cp39-cp39-win_amd64.whl (207.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

psd_tools-1.9.19-cp39-cp39-win32.whl (195.3 kB view details)

Uploaded CPython 3.9 Windows x86

psd_tools-1.9.19-cp39-cp39-musllinux_1_1_x86_64.whl (575.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

psd_tools-1.9.19-cp39-cp39-musllinux_1_1_i686.whl (556.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

psd_tools-1.9.19-cp39-cp39-musllinux_1_1_aarch64.whl (568.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

psd_tools-1.9.19-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (573.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

psd_tools-1.9.19-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (568.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

psd_tools-1.9.19-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (562.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

psd_tools-1.9.19-cp39-cp39-macosx_10_9_x86_64.whl (208.4 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

psd_tools-1.9.19-cp39-cp39-macosx_10_9_universal2.whl (276.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

psd_tools-1.9.19-cp38-cp38-win_amd64.whl (207.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

psd_tools-1.9.19-cp38-cp38-win32.whl (195.1 kB view details)

Uploaded CPython 3.8 Windows x86

psd_tools-1.9.19-cp38-cp38-musllinux_1_1_x86_64.whl (587.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

psd_tools-1.9.19-cp38-cp38-musllinux_1_1_i686.whl (573.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

psd_tools-1.9.19-cp38-cp38-musllinux_1_1_aarch64.whl (579.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

psd_tools-1.9.19-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (573.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

psd_tools-1.9.19-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (569.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

psd_tools-1.9.19-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (562.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

psd_tools-1.9.19-cp38-cp38-macosx_10_9_x86_64.whl (206.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

psd_tools-1.9.19-cp38-cp38-macosx_10_9_universal2.whl (272.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

psd_tools-1.9.19-cp37-cp37m-win_amd64.whl (206.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

psd_tools-1.9.19-cp37-cp37m-win32.whl (193.9 kB view details)

Uploaded CPython 3.7m Windows x86

psd_tools-1.9.19-cp37-cp37m-musllinux_1_1_x86_64.whl (541.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

psd_tools-1.9.19-cp37-cp37m-musllinux_1_1_i686.whl (526.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

psd_tools-1.9.19-cp37-cp37m-musllinux_1_1_aarch64.whl (534.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

psd_tools-1.9.19-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (539.6 kB view details)

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

psd_tools-1.9.19-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (535.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

psd_tools-1.9.19-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (529.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

psd_tools-1.9.19-cp37-cp37m-macosx_10_9_x86_64.whl (206.7 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file psd-tools-1.9.19.tar.gz.

File metadata

  • Download URL: psd-tools-1.9.19.tar.gz
  • Upload date:
  • Size: 126.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for psd-tools-1.9.19.tar.gz
Algorithm Hash digest
SHA256 e57f21527357dc4065b9204ef83086067d2eedfbe9220594ee1c27fede48b357
MD5 4b244378233d46248b381d15d2150299
BLAKE2b-256 2a204bea982194b357e6093ca9d64a96562c31420d8b734ea1b13dbaaa6786ee

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e96c965080744cf94c30997d291cd9e2e574ba4dfe57ececb8aad311664e6300
MD5 6ff058a08982163a665cf770ff6d81c1
BLAKE2b-256 55a847574b3a8ddf4df2fb4d50faca597d770a1d5e25fd3bbfc3cc834e9b4bd6

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp310-cp310-win32.whl.

File metadata

  • Download URL: psd_tools-1.9.19-cp310-cp310-win32.whl
  • Upload date:
  • Size: 195.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for psd_tools-1.9.19-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 df32bfb6fcee81b7371dfa89822a8c72aef388aba20a6732f996a8ce22d4fa15
MD5 f2cfb48dc47ac1fd656e4de8cd193d07
BLAKE2b-256 cc9a94aacf0a494664262871066167200f912c72cc4b9cd0f31f8478e2e2bfc2

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 76538872b3d0c4482ec92e8fa97624c9fb6b9539bffb3af77d432f3ef9c3ca45
MD5 125d7d90dd52bc58544db53e4e8b93c6
BLAKE2b-256 3688417bce4becd65f564138eaed24462b77bab947460071dbd6b19bdb52caa3

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 12a967ba759442b50defd4d2b3479aa92196037240b9edb7b5391056609ff64f
MD5 f1cdc5ec68f1c2a95ffefbbcd7208f2f
BLAKE2b-256 d8e7502c20df112b0545e216919b06cefdba242d889e8f3624f5b5ac5ca6622c

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b16bbef7d844a6ff3266460483988b1226f119d28476a0643781631db5510ae4
MD5 37ffcd02448de6e5bd8aec511f04b301
BLAKE2b-256 4422ff37f23d65e03e478f082176e38ebbe41c7a9bf56b84d7ba99a609527501

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82aae55ebc87eb3ab627819b255b84d0d5b4087bb16f189da758b7bd7faa2d43
MD5 3b55414724e0b08f8fd7cad854831911
BLAKE2b-256 220fbe013bf69bfcbb2b1e0236eedab991f4f71b6fb413b3f8f4fe5cecd6a008

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 df88a8d0364895ecee6519b9aab726b878f86bcc07e948db4e3d68cb77a65483
MD5 ca55e00987ce22ffe4be3380a0687700
BLAKE2b-256 7d7bcab8d2fda4f85ecc9a747ec0327a410499491b1cddc3153fb6d5a0bcabaa

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4e1ee18e6eb3bacb522245f45839de2bb1e7c123dc8b81013671a2b37b3cfabc
MD5 e9eef8bc6c95f270bd8ef8ade4ce6523
BLAKE2b-256 1e95973177dc2aa7b59cfa9a10e96fb5e9d7430c8bcc53175ea0c9f6c82d887a

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 67133b6107945df006c5eb168400621fe62d462fbacab761192cce245338fd5a
MD5 46b5aa117656ec7c4aeebc46ad7cf99a
BLAKE2b-256 1714ca3e76c742cd1fc69108f936012d215390f254e5b66af36a2c09eae0445e

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0dd776362ff31b9d6c627ad438ee0e78a7c447bed155d0ddc74541480aa7986d
MD5 4945336efd43abea56e40caa4cdb6dbf
BLAKE2b-256 f1ed909c9bcf476e1a66009de8de576616944ebfc147071b3cc5139bb391f936

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: psd_tools-1.9.19-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 207.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for psd_tools-1.9.19-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 713fea4871e4010bfb15032c7ff601c8081028c7d9980c6c218edab685ec25c8
MD5 5b21193b722db23204b4e8fe2fdf5550
BLAKE2b-256 760a2ce00e85fdb3a7c4912a2f8788920476d490739e90e3ee45638779e9ce0f

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp39-cp39-win32.whl.

File metadata

  • Download URL: psd_tools-1.9.19-cp39-cp39-win32.whl
  • Upload date:
  • Size: 195.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for psd_tools-1.9.19-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cfe9b21b6a2cd0a90bd14a690c6ed785878be2ad03365372c7c125a7b874d33f
MD5 1bc89b848b26b9748de31d21348e71c5
BLAKE2b-256 aeed7ca732e622ea513941f6ec8314b58ba45d855ddc645a946de1ac9c22f32e

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bd87f07fd81032b1e80e71a6cbcfb874e10358b0c7b1d5cc24f1b8e01be63150
MD5 68031864cee982ad42784791e04b40a7
BLAKE2b-256 5dce945bdf4092a5405e4911e4ee9823d40b62fc05acc6c9fe3e7ef1e1c017b1

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 17102c7e316e09804622714c8a4b9f3179b200e109dfc3002c77c78fbb5264cc
MD5 33c6c0c3c8c82b8e796ea3dea31350ca
BLAKE2b-256 028b7ecce26f50e0e8b652ebe45e863f494c5b83527d802657905f63bcc5c71f

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cfe5e8061cd3fbc60207f641cdb7e914816acdbc8f858e145e1bcaedb290652a
MD5 d0ddbcb79fec36b6b52e46ed6e5152c0
BLAKE2b-256 1f2c7f4993c7ecbf7a3316ef6ab58bdb65653886f85bd6350b1f08a71464e6e9

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c38ba10d48a1a470fe5ab9d9d4d8312897308bf7864fe3366ab950e536d77a28
MD5 2fa6a828345a91e9be5bd8933bb0407c
BLAKE2b-256 a1cd15bd60223de33b6095ef26b3ab5bebc2bd1547a121ea6bf7a16b6680ccda

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f2b4a4541b1ce669e938abf5aedbe7f047fd3357ea72ad543f4bd1922a4fb4d
MD5 963c55def5984d115c377c709acad14b
BLAKE2b-256 bf198d8250b2a80d562ea1e7c08ae67d67ce3d351af8eea442844fc00e8497fe

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a76522a408796bdc0e89657d1f01b1295274583d9a99fa34aa943d84a91b33ca
MD5 c6d3ec448319d3af5ac8521ec095923c
BLAKE2b-256 575c48dc629c8c093a8c72de695d161d732fcf1f1c8794fff64581fe222cff77

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9a31939557ad0066e888fd6b5191addde72d081619f2132512196b93f0fabb09
MD5 c68bf73dfdd89ea5f8ac526b1a361d6e
BLAKE2b-256 27ad4dd1d6c0ceae0cef1defcedd522840f4169d28f28a4362cfaa28f20f805f

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 96b3489316a0dd8529cc8a169d9b8d701e543af805e41cb23887e35971d5ef11
MD5 41e873191c9b02024da93824838cc9df
BLAKE2b-256 e57ff57f48e8ea923a94faffc7c889827eca19f44abe8ad1f3b760e5a9547dc5

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: psd_tools-1.9.19-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 207.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for psd_tools-1.9.19-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6cc6eb48fbcf898fea619da0bd73152fa2a08617b12cd5b3560797741f6738c4
MD5 10c704167acf3f57103491d0f90c70a3
BLAKE2b-256 c711f108ee4367beb23fdd2d8cd4d44a43be1e28d80c86d68ee0c25998f175b8

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp38-cp38-win32.whl.

File metadata

  • Download URL: psd_tools-1.9.19-cp38-cp38-win32.whl
  • Upload date:
  • Size: 195.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for psd_tools-1.9.19-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 0b7356eaf18d8bfb4c49f2dec5628b3bb14ffe451dece0b7f783b624497f258c
MD5 12adf1c1a9431d045c124cc306fabc0c
BLAKE2b-256 7232a9d674bd13a65aedc5e7398e08c2c081353ac133c67619af3ba748ab467f

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 eabed58908b6f8a9633f21d9751c2796e3dd33c9920e4da20cb0e44568896b92
MD5 611cf873f90fd7d8628329ff3efc8d9d
BLAKE2b-256 03b9a577ec6bfcb5aa18422b1cf6ca7669eace690a83241e1ed6eadb84a6aea4

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d9e15610cd5f0c144bc33c3ae4d31e7182b8c870147fcc3ab498100eea234981
MD5 2ef572dd4358754b04608d1504ca5c14
BLAKE2b-256 43529eb13a224917990f8e8cff6b02cd402b23f5fbcca8234cf2962dc885989a

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7970cf47e19ad622fcebcc3b7b32756c787b24d4bf9e54b3f4947a9a346294f0
MD5 16dd7f58a6dd47f35116dac0d472d134
BLAKE2b-256 a8bb0fe716fa213bae5e5100dbec0ae4f67f5d9fd14726e304a10e66052c7d6e

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4748c092f73c556a21b2841c710d7f91ea3dbd73a2c48ceb1b5fb3cbcf5ea799
MD5 7a0897c4bc560b8ba518d27a98b6eab3
BLAKE2b-256 16c2ed63ae88fb4a0f32162eaf8ae4e50a6b93478698f77bb0a26a0f301253cc

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c405e278a3be128cfdbb4cf47bd7d5957a9694ddd7a10ace45cb20c11b584b0c
MD5 cc200b6e2d54efe0e3eb6fc9f6282c91
BLAKE2b-256 70d83ce3245c220f1f6b9e129f0e65b304e549f00d466414b349bc0f8f7afe9e

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 042db764d4c6ae54fde080711c91515a680d7b3108b8a318a7bcd614a072836f
MD5 10d8907e4dc7091a4e3bd51c23f7f56f
BLAKE2b-256 a4529dca6d11b0916a09b354482de9f4405f4aa3608b0466b147b03599163b17

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c2dbf8caa0c0c420bf755b077b30455540ecf1213b1049737de05974e7a5bcb6
MD5 4f9bcdcc09abbfee7f89b3e0e6011ad5
BLAKE2b-256 a5b181c0c07b39b313e3e59d69b92270df372198cab2b8c699c3816bdb550d68

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 df944f1520749c3eafe7f755b6e9a9555b080a6956ed9960fe45019a943076f0
MD5 abe0e3fd1c068d62c93756b719bf07ac
BLAKE2b-256 2a4f0bb2fc54d269234678cd7613e1881dbf442763c143e4bed9a9e56e8d0bf5

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2f82bca79a14702dd5fe846448cb01f8dd2c46be700acb142f586ba8104ce028
MD5 418bb3482f2d05fc39ed9c90b0cc37e8
BLAKE2b-256 1a79786906a5d8342b5e3209b74e530a09c3aacfc417e526bc2e88f8cd2125b2

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp37-cp37m-win32.whl.

File metadata

  • Download URL: psd_tools-1.9.19-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 193.9 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for psd_tools-1.9.19-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 675a20236fabaab8c9390d626241768ff736a5075f29873540a4e25cb0f5335a
MD5 de1710a2a3fe03a1601f0f4d2fe6a355
BLAKE2b-256 77f473d0c000a8a213afa87a422cd612140143d3ae35ccc7acbf69d1e505a808

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5dfcd8160f39cd29319fc010e01ed93ba22919883b8a1db672c2d35ad10ec593
MD5 b918b4f9d3558385049ae9590fb69b6b
BLAKE2b-256 f201e1f23809b02354c6b47ec4408e8c58bc9cefc7d4e5a5e8a4f604e58516fd

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e786b82a2f882b3b6a84509027bba65357156c5b001cfad45f1bed40a429334d
MD5 1cecf71453100c888b6750b0c197a78a
BLAKE2b-256 e8a5dcb1015ac9e36894a25d2f1f620f47afeab1b2777a17350959fe5e2e422d

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 96c34f2ff1d32837aca22a91962da10cf7f5556346666b702ef262e8721b692f
MD5 a7059e320b90ac57b65ae7ecaf95d59c
BLAKE2b-256 beb6970f8fcdc7d119855c65e4677b67fe959651ae01f404c42d6e10904db617

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae42a70db5828ab0bd2912b75d3de1bbd4c0ecbe76a8877afaa3b2eaa71ccd97
MD5 001bbbcd521b43294fac8dd0840cb200
BLAKE2b-256 fc95bc5be890a96b2b959e04b3007bee65933d6ac342b9ebf3c708b3d79b3e84

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e94172cb3924f0fca98a6e63d3d16be7435aa0a47da9ea67841def16b4f60e91
MD5 bc127666f65742bd3fa6d2bba5798743
BLAKE2b-256 8c77968c93fb668b1796e8c5a7b7790fba991a018b8eab81c1ccb37840e1c2a0

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eb8bbd9157985e4454ca1127c39d3d9a90e550bb294912e40d68de91f5af4520
MD5 4f57616293bc37ed91185d55bc036cc0
BLAKE2b-256 0e095ad9f94b5edc9b00372167b8953692c4701ef1f3156876a5c2d37b731611

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.19-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.19-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b8059e9739e40bbde7b4fe99115cfaa481a70a01a6bbe732e4f96fd42f659185
MD5 28d22d499b49d3a7d30ce15aaba3db7d
BLAKE2b-256 ae55fbd15007007057b118f7ce1ef6dd45487fe7adca38bb261fa44a7637f6df

See more details on using hashes here.

Provenance

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