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.21 (2022-06-18)

  • [api] Fix incorrect has_effects behavior (#322)

  • [composite] Improve blending numerical stability (#321)

  • [composite] Improve non-RGB modes and transparency (#319, @Etienne-Gautier)

  • [psd] Workaround assertion error in broken file (#320)

1.9.20 (2022-05-16)

  • [ci] Update CI configuration (#313 #314)

  • [composite] Fix composite errors (#312)

  • [psd] Suppress vowv tagged blocks (#306)

1.9.19 (2022-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.21.tar.gz (128.3 kB view details)

Uploaded Source

Built Distributions

psd_tools-1.9.21-cp310-cp310-win_amd64.whl (197.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

psd_tools-1.9.21-cp310-cp310-win32.whl (188.9 kB view details)

Uploaded CPython 3.10 Windows x86

psd_tools-1.9.21-cp310-cp310-musllinux_1_1_x86_64.whl (563.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

psd_tools-1.9.21-cp310-cp310-musllinux_1_1_i686.whl (546.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

psd_tools-1.9.21-cp310-cp310-musllinux_1_1_aarch64.whl (556.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

psd_tools-1.9.21-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (564.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

psd_tools-1.9.21-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (557.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

psd_tools-1.9.21-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (553.1 kB view details)

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

psd_tools-1.9.21-cp310-cp310-macosx_10_9_x86_64.whl (209.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

psd_tools-1.9.21-cp310-cp310-macosx_10_9_universal2.whl (276.3 kB view details)

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

psd_tools-1.9.21-cp39-cp39-win_amd64.whl (199.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

psd_tools-1.9.21-cp39-cp39-win32.whl (191.0 kB view details)

Uploaded CPython 3.9 Windows x86

psd_tools-1.9.21-cp39-cp39-musllinux_1_1_x86_64.whl (579.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

psd_tools-1.9.21-cp39-cp39-musllinux_1_1_i686.whl (560.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

psd_tools-1.9.21-cp39-cp39-musllinux_1_1_aarch64.whl (572.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

psd_tools-1.9.21-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (577.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

psd_tools-1.9.21-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (572.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

psd_tools-1.9.21-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (565.6 kB view details)

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

psd_tools-1.9.21-cp39-cp39-macosx_10_9_x86_64.whl (210.2 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

psd_tools-1.9.21-cp39-cp39-macosx_10_9_universal2.whl (278.5 kB view details)

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

psd_tools-1.9.21-cp38-cp38-win_amd64.whl (199.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

psd_tools-1.9.21-cp38-cp38-win32.whl (190.8 kB view details)

Uploaded CPython 3.8 Windows x86

psd_tools-1.9.21-cp38-cp38-musllinux_1_1_x86_64.whl (591.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

psd_tools-1.9.21-cp38-cp38-musllinux_1_1_i686.whl (576.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

psd_tools-1.9.21-cp38-cp38-musllinux_1_1_aarch64.whl (582.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

psd_tools-1.9.21-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (578.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

psd_tools-1.9.21-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (573.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

psd_tools-1.9.21-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (566.2 kB view details)

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

psd_tools-1.9.21-cp38-cp38-macosx_10_9_x86_64.whl (208.1 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

psd_tools-1.9.21-cp38-cp38-macosx_10_9_universal2.whl (274.4 kB view details)

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

psd_tools-1.9.21-cp37-cp37m-win_amd64.whl (198.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

psd_tools-1.9.21-cp37-cp37m-win32.whl (189.3 kB view details)

Uploaded CPython 3.7m Windows x86

psd_tools-1.9.21-cp37-cp37m-musllinux_1_1_x86_64.whl (545.8 kB view details)

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

psd_tools-1.9.21-cp37-cp37m-musllinux_1_1_i686.whl (528.9 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

psd_tools-1.9.21-cp37-cp37m-musllinux_1_1_aarch64.whl (537.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

psd_tools-1.9.21-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (543.5 kB view details)

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

psd_tools-1.9.21-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (538.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

psd_tools-1.9.21-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (533.1 kB view details)

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

psd_tools-1.9.21-cp37-cp37m-macosx_10_9_x86_64.whl (208.4 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: psd-tools-1.9.21.tar.gz
  • Upload date:
  • Size: 128.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for psd-tools-1.9.21.tar.gz
Algorithm Hash digest
SHA256 0657c99c2d375b40443abd8d6afd138f47f38f00159533e3c8dd0a9b1c503152
MD5 df521518197e3c90cd949a861ae94925
BLAKE2b-256 da13629beeb0509ba9e33c55319dcd2126126a98ab69d1133b788ab0431f8096

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.21-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7e56fc2ff2e38c71b89f5ec177e7ddaeba0072e504da07c0883a069ff05a10b8
MD5 91ad27accc8b84c2379f2e2e2a4e625f
BLAKE2b-256 3592f7df0b99c846f432f72885a1512593f22da6d793247f1eb80a1da0a94f11

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.21-cp310-cp310-win32.whl
  • Upload date:
  • Size: 188.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for psd_tools-1.9.21-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 08fd8fb8822570d80a7f9a67300194cfe4e6a27907113fd046268d0d597f1e73
MD5 993276c646c1f6a8be58cbe7fbd3765d
BLAKE2b-256 377e1d6e5268c84301d6f823d9c9f6145405412cef939b4aa7b44aa9b327bb0b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.21-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9aefe45911ff667c0e5376c89b2938c3762538e83bfaed33c7c178ac590f68d2
MD5 1081815b1548d381492621a0cbf44409
BLAKE2b-256 f77e2c8b4d763cb729eea487b60f679a7d7ec0de572e94a949984602008e42a3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.21-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1a1a1cf2ce34e7b3d11b8e5b12c204bec1b0d36b6355f58b51d02de030b17503
MD5 3eac5737d35a1abbb3466db154f36539
BLAKE2b-256 b0f4de97e20e862d4868c77fc69808851c0042ba2a8065b953a68eacd80aa98f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.21-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ac529702dac32f4628cfab56e19769ccc7d43dcb6efb82ea27b5449d3f9fb9b0
MD5 e42b7f9850da75c5fe7290ac6eefb273
BLAKE2b-256 dc28cd4db7886e82b1f87565e3be91ede095864643046a58c99b8f487f359812

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.21-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03b79485e3bb6179662f681eee81d7c0ddd06fab008cffa57f7122e7cf078419
MD5 253e0e6e7ec3b6d25def3bef5d18d5bb
BLAKE2b-256 34012d7bced329ea2365c6662491bd9549f55e344cd261144a0722f3aa60953d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.21-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 06a2dad71a5e703a048925f0c2f0282b309d61581abd2f60b5d0716abde02699
MD5 e8a016d1919f7c60b1c79d274d92f5f1
BLAKE2b-256 58959c4a947b8a0a695d3eb4c08870f13bc38c4b645740052c2a08438b6dccb6

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.21-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.21-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6a4c63bf68945ac8d7b0a97eb59a0bbd57dc28060f0bb4875b04d8a9605b1950
MD5 1cdd9c8dd11015dbf4051242f49dd66d
BLAKE2b-256 ee67774bec4acd64f09ccd51dcd5d0cee23176713dfe4b2cf62ff9a1dcbf892f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.21-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c85f584da5f5703f2fc605c77982e7603fac1a1c4069fed201bcf8baa8e15e18
MD5 9d53b1a328c7ff9d0c6f5a58ec97e8f9
BLAKE2b-256 437b5cd16ef451672c381fbb86767e94fd331227d6058416fa6bd8c0477cabeb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.21-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 400db627d7053e5b2af653462123f224c94c5d4d6b93c86b915df2d33e1ffa79
MD5 8181428525c1760c85b3ffb23288ab67
BLAKE2b-256 af341fd35e24f8c851c7eca8efbe8a1a9e8c9617971535dfec245d14c8fa509b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.21-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 199.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for psd_tools-1.9.21-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 88137d637e9315e4c08c51d5ed92378e7b5d27deec27c24fc78543139a95d577
MD5 3c2e5b85594fe0edf13e06f2ac75afec
BLAKE2b-256 b5e00b474f6ed75e424ff41e1118007fedc75cd79f52208ef7c672bf9ed949ff

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.21-cp39-cp39-win32.whl
  • Upload date:
  • Size: 191.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for psd_tools-1.9.21-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c8774866638755beca931a0fc987f729813189e1e7b107c6e1df9755a0d498d8
MD5 85bfe0866a2fb74c4a9150a8e7921d17
BLAKE2b-256 2661def619a72b4db3bb3b9dbeac7afc7bd17bd594dc5e528bde164b5605c697

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.21-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 981680850a8f9b478c7901eec4aa4a949e1719704f3b54c2ca18ece5e7b5445d
MD5 bf46526261b0ee08b3ed395c1f1e1a4e
BLAKE2b-256 d8be69944daf6868d94550a98d1f9ac8f5fd0720298a746dcbccec11e4ad1a53

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.21-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 bb7a139a5301920a0c9f999c2cf0f7c0bee918e3a08325ae8e469dae6153ab6a
MD5 ed577d59edbdf94e26fc1bd2ea606ecb
BLAKE2b-256 48ffeee7a9a4e7534c8227bfc83f559a1786037ff773c34b72ed5694fd33d147

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.21-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4e3c3d538a7dc2aa70886d090b7f815ac3c5e9321ddd23c69a3e21b752c6e124
MD5 910639124d623c06e1c0db03ac404db9
BLAKE2b-256 3d3a0ec6a652889bfc80dbd446bd92a06953272e8c06f695867c0ebd54a34e5c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.21-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8469df5321e3eaee575df81e7412eb6ba9caca42bd8845ed85a52ea1e69f5dc9
MD5 62ee9c7f9fbc00473b36498e9a47cd8a
BLAKE2b-256 bf98bf84979e513c3632f4861cbf62ee7a06a189ad0da2080d0ecc02ff35099d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.21-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33418588f2fa05d3a90f2f7f8ab1f9e55338590c4e41bf74a92b9e817c244553
MD5 b239cc35192043bbab95ff4a57ca0b4f
BLAKE2b-256 ec31ff8401661f54828b3a89213727c1819a0f9ad402457a7b0dc8d7d37aa565

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.21-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.21-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1b0129440f2cda030d1ff4e5f2ff8be33502b679ef7ceec1f73a60df583644b4
MD5 3399439012cf283bdc706020332cc634
BLAKE2b-256 e33ae0bf0e249dbfe9fcbbb8932db033ddbe283f1743e2132978a9bf72d6c477

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.21-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 46867cd5539afd34cbe8ab88e680e34cf472150bcc0700f7cbca356daed3493b
MD5 723ecc458fe4ecc8dd477ae57f08446c
BLAKE2b-256 8ed404fdc05f24ff5a3f4f6e5fed4e505b38c54925c9f06790d61cc25d804b40

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.21-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0f5c9b7f80d0dd9664eb18c3367b1b0862f27216377a3f5f82ff2566f26d3c64
MD5 059fe581f2a41ee926f5b4a689c3951d
BLAKE2b-256 aa62f23005d4b9d8f1af7e04728aeb92cbda20f16a61f78ac54c770d8d0f2cbd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.21-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 199.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for psd_tools-1.9.21-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b7e1d5862bfac067064e79e454078378bf1d564a36194421546c50d974b45653
MD5 dc2a0152a34250a54aeac3750ae49a91
BLAKE2b-256 5be20fa5e7848a9698531c05885a111a10d8ce80535d3e425fd02d175c401aab

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.21-cp38-cp38-win32.whl
  • Upload date:
  • Size: 190.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for psd_tools-1.9.21-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 87ac621549c3b5f571f93de2c060ec0dd6321fdb221524b11d806d6896a1e36e
MD5 07c0d9ea8fd0628411ff1bc79116980d
BLAKE2b-256 bf9b42b9a23897f719a38e6311fe2da6f32072756d08b9571f17b44ed9894097

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.21-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bf06b7c51de7a7e3971a535dd383c6b8002953516d52776b624c699e5dcad327
MD5 dba5c0830814d88c5ec9bb706e048382
BLAKE2b-256 4ef61715eee5a6bbb9e81a804a15f424c89b49819d7fcd1e44133581aec42092

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.21-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1c4efbccafb094f25be958b5e69e8cd81def6721e01f96b3cc403c958919fc55
MD5 5a9240533bbfbe11e373e549e7853503
BLAKE2b-256 87c0f493bab5a5a216463c1f4c0f13ae1ad6902658dd978c2f376621b719716e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.21-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 74e2b4730f22441648d28e4ba6fcafd7a442c873d38584298f4b3ffa58823f34
MD5 4b7c82a4a18d7b1477a866b02b55b663
BLAKE2b-256 2ee85625272ae78b6fe7146fd7222049c31753c4688488aaa7397f22e98da07b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.21-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4fd51e42708f4a0b0fc8083875406109b47311af277eb93a82854ec08cf5201
MD5 85c6a8f7322f68845ef45832c254e85d
BLAKE2b-256 fac46c20a42512fef7a696ae6800bad43cb92406ab767f54f7ddba0c0603c202

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.21-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b752ed4892b157051254929b44fb3cb3415ef33d76dfc768fb6f6c83fdcd67ad
MD5 d4f1136a1a2ebc73fcd7cb894f6f91e1
BLAKE2b-256 14662caf9873d58283af80152b6ee88e8cecc5d2bec95e84875dd3be290014ca

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.21-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.21-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8be97079ced8f70f24ef7fa020f6f707c1135ad6f6426f8d8e1a6e491e0b884f
MD5 650a1af8146b2d72de2eb3f02922c170
BLAKE2b-256 a08d314d9953f8a2093c07b900eabcfd66086c486d54aeec0f6620cbaaa626a5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.21-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bb6ed64ab7c1be22d92fabafa9a9b21127401cb56f61974b12e72d84521a0a37
MD5 7e9b39baa1d8572213abebd2e0e46318
BLAKE2b-256 71bd4ac90c544fb32bd38fdfc40a98e5d46363fc7ff69ef98534f5031a9d1909

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.21-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ed7de19e953b4f168fb006e3f88103314aa93f2a1cfa217969661bf4dc73eb9d
MD5 1385b502042d66860eb65f62a2f00797
BLAKE2b-256 8af8911009df509a306aa3e9f4dd52a76c2fe8467a4863bbccceba2e67433385

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.21-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 decb8f06281e536c1a7527bcea6e63966dc12fd5164c203ee05aacd3338c56ae
MD5 3612ec95242f0d5041ecc528c2a36ce5
BLAKE2b-256 64ac5e8ed38e7e932db7b3048634ec56e3b9bda9520fc3e60fb018c8c6cb5635

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.21-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 189.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for psd_tools-1.9.21-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c1e2fac9b835c201a21a104f64fecb9fe7fc9f04c91cb358db0f67e2cfe4c098
MD5 0e53a97b4989cfdcd26faebfa3d83983
BLAKE2b-256 80e8369ed2dab82f2c480cf6440384c4d905098333aee6a7d24863056e0773ae

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.21-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 53471ce426862802037063a2fa977dc739268ed7a1781506a10fe62c7eb86c6d
MD5 c3f3a334a139058579b43e48b7865704
BLAKE2b-256 f08008cc8e02c523b289fbb67364f91eec5306729fcae602c86af6ede87249bf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.21-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 47a864146ea9af84c0566abbd8932016285a33af0699e7f19309dc5929dade02
MD5 64f4bec5264bbcde1f40b8195ca03d59
BLAKE2b-256 05b1a90814d9e5791da322661956cee55eca49e2052c925660deaed4a4afb70c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.21-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 595543dabcfb47f435e25c97ffca6f4099e74bf41b632c7598fff525fc1f417a
MD5 dcceb34abd19bd7c812036c5ec96a97e
BLAKE2b-256 fb89e0613ae4a718940821be4b95ea2d4341e104c3b21c8a7523e42b9b8f9c6a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.21-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4cafb081b315a1b1dea0160f44fb9159bf8c9b4e0a65c5af4146a654bd5b2ef
MD5 f7e0014f1eca1be6598eab9456a0a863
BLAKE2b-256 93d63e97ad7ea09dfcaa34bc875e29fae409258600a632b4e082afd73bb57705

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.21-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c7ed16affa330afb22a8b182322440fc8c571e8d9005c27dd8296625150676d
MD5 9b63970c0378371f7932958ae274858d
BLAKE2b-256 0b6c486d799cedb015f04c4634b0cb1357a11f4f453c5c11bd97c0ca83a59bd9

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.21-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.21-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 de98c0bc24347a4139551415337299fd91b8d19b1467b874dbb898d1a1358599
MD5 f7a9826f576b4beb0b31ffa8c838d431
BLAKE2b-256 1e147c3398621c828670b23cd4e6cac810c4e1f76f15b32fae1b586d0211d85d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.21-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b7d818e106770d4b998122f7490232a40be8e8a58a53b1016d4965a5262b5bc1
MD5 892157ef4d99ccbe2ab8f696b5d165dc
BLAKE2b-256 411efbcb8bc4811f4d3f672f87836c61c56da731295fc003e489c55f7bb0e931

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