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.22 (2022-09-09)

  • [psd] Add support for v3 gradient map adjustment layer (#330)

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.22.tar.gz (128.5 kB view details)

Uploaded Source

Built Distributions

psd_tools-1.9.22-cp310-cp310-win_amd64.whl (197.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

psd_tools-1.9.22-cp310-cp310-musllinux_1_1_x86_64.whl (562.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

psd_tools-1.9.22-cp310-cp310-musllinux_1_1_i686.whl (544.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

psd_tools-1.9.22-cp310-cp310-musllinux_1_1_aarch64.whl (556.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

psd_tools-1.9.22-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (564.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

psd_tools-1.9.22-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (556.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

psd_tools-1.9.22-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (551.5 kB view details)

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

psd_tools-1.9.22-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.22-cp310-cp310-macosx_10_9_universal2.whl (276.1 kB view details)

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

psd_tools-1.9.22-cp39-cp39-win_amd64.whl (199.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

psd_tools-1.9.22-cp39-cp39-win32.whl (191.1 kB view details)

Uploaded CPython 3.9 Windows x86

psd_tools-1.9.22-cp39-cp39-musllinux_1_1_x86_64.whl (579.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

psd_tools-1.9.22-cp39-cp39-musllinux_1_1_i686.whl (559.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

psd_tools-1.9.22-cp39-cp39-musllinux_1_1_aarch64.whl (573.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

psd_tools-1.9.22-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (577.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

psd_tools-1.9.22-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (572.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

psd_tools-1.9.22-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (564.1 kB view details)

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

psd_tools-1.9.22-cp39-cp39-macosx_10_9_x86_64.whl (210.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

psd_tools-1.9.22-cp39-cp39-macosx_10_9_universal2.whl (278.2 kB view details)

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

psd_tools-1.9.22-cp38-cp38-win_amd64.whl (199.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

psd_tools-1.9.22-cp38-cp38-win32.whl (190.9 kB view details)

Uploaded CPython 3.8 Windows x86

psd_tools-1.9.22-cp38-cp38-musllinux_1_1_x86_64.whl (591.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

psd_tools-1.9.22-cp38-cp38-musllinux_1_1_i686.whl (576.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

psd_tools-1.9.22-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.22-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (577.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

psd_tools-1.9.22-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (572.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

psd_tools-1.9.22-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (566.3 kB view details)

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

psd_tools-1.9.22-cp38-cp38-macosx_10_9_x86_64.whl (208.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

psd_tools-1.9.22-cp38-cp38-macosx_10_9_universal2.whl (274.0 kB view details)

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

psd_tools-1.9.22-cp37-cp37m-win_amd64.whl (198.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

psd_tools-1.9.22-cp37-cp37m-win32.whl (189.4 kB view details)

Uploaded CPython 3.7m Windows x86

psd_tools-1.9.22-cp37-cp37m-musllinux_1_1_x86_64.whl (545.1 kB view details)

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

psd_tools-1.9.22-cp37-cp37m-musllinux_1_1_i686.whl (528.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

psd_tools-1.9.22-cp37-cp37m-musllinux_1_1_aarch64.whl (537.0 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

psd_tools-1.9.22-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (543.3 kB view details)

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

psd_tools-1.9.22-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (539.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

psd_tools-1.9.22-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (531.3 kB view details)

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

psd_tools-1.9.22-cp37-cp37m-macosx_10_9_x86_64.whl (208.3 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for psd-tools-1.9.22.tar.gz
Algorithm Hash digest
SHA256 0033010d932aa14c1f8322299b5548ba306a3d79ada6bb794485fc533a354bec
MD5 40541316cec97b914583374291f28c40
BLAKE2b-256 ed45e047e0751746cc2a611b5ee3bfd3e4fb7e0b868b8621fcf9bbd5ada3667c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b3233799cb855df52a44c0d6c03f53212466b19597c4de8feb8ced94ce09061a
MD5 7879eafd785e795b6dfb5cab86455e31
BLAKE2b-256 3824cbf49ceff3d4df9e15cd2085f454d0de1558f49ea773126a4570a20f234a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psd_tools-1.9.22-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.14

File hashes

Hashes for psd_tools-1.9.22-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1b6e038ec63294cca03e4990da2a0e1ecb3cca2bb136d52476f3d40cd70b1e7b
MD5 5207a6732827622805ecffc1e32a49d0
BLAKE2b-256 7b1025994945edd875bb080d3aecfc0b6806a43242d730a88a9b10b7018ddaee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c9ff3c57a10b7a15a91c5dce43c99f40ac522208093da80417f50793d72d7e07
MD5 653e76c5fdd0015376f7272187a10ebb
BLAKE2b-256 c44221d0f1c7fa47eca00a10d26a6483eb50f3ada33541b7fce11b580082a3fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 885f886da9dfb16b94e8565e2519575308dbfb39d81379f5548a5caf163c8d10
MD5 9cfa14a7c4521690a6af294ea415ec08
BLAKE2b-256 23683c2929edd5ee34ba108a34b5d440ba255880fe1a74b7d36eca08f1ef13a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 052707158880e65bd13b6a68cb92e2bf8c2185d6e360c64b477ad1b37b3ead30
MD5 c38fafbc9ca9a3336905ec884d60bf5b
BLAKE2b-256 33a6546f00943ed265ebe3322793c4adc72a91f54302daf38c7246416c7eea04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c155be001f465c675f76c5765c8e6109e953c82827e87c8fb3a3d6ad55d93e6b
MD5 6317ec897b5d033c46d67403b34828c0
BLAKE2b-256 9c8421429da7c71d77ad1fd71e0c7897560f0d2c7e552fcd5bf2a0d889d1910f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f658c7eeed1c38b972e4e249b6b1e75ca84fcb9b235ca20d757812ff86317c59
MD5 0be70c7b0adec467ff0bbbfd2209357d
BLAKE2b-256 4f0207abdcc21e8571659974562b87b64bf68269c85473b4acda3286cfdd8cd2

See more details on using hashes here.

File details

Details for the file psd_tools-1.9.22-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.22-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0a796a7733fedb5c2f1d3b6549b5c12de134d97ead01a2aa94fa701406fc43ac
MD5 a15b7b400a776f41f73913f7c50baab8
BLAKE2b-256 e55bd67021865e2b22c828d5a7477561b291b040acaa98b207a49ac9cffdf718

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4860ee19c2d0c67afa186b87ffd2282c9d4e54bbb1e2df9ca9caf3977a6ba126
MD5 585e536a0f98765d9af0648bce85920a
BLAKE2b-256 cc66beef23c33ce52f53d1690955018e3685e8f100bbb73985886807320a5907

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b6fcf4d4b0d07f5caf5fc5fcd87ea7717a9bf8fa2233e1ac9f1d46e693395f9c
MD5 d292bd42ff6601dc037b0d26eed182e8
BLAKE2b-256 8bc58a4767e749cad6ce9f65687ea99971c09937da2f7a9f85627aa1891ff616

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 86b66495ee6e1704599ed3079e1a6a507dc0a53fce54c43ef35a0d4b4f9ea02d
MD5 f13704062c5e901d6b4310244ffd5471
BLAKE2b-256 a60c19e5222275bacc2e192a85204b62e7abbbb9f2590e2cef4e89a66b5a8ed3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for psd_tools-1.9.22-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 31f0e1e81ee185152199d2d2c2f81d6741f761d5514d837ff45ef86e0f6cf7a6
MD5 1a430b87c71fd3042de52619e484be71
BLAKE2b-256 a2a4d075abbddcb49381e825eec5908334704c7dbd5fb6ff6f3bd6a78025aa2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6634484dc5f4535401a957b2ba18a2fd31e1f84aa8506223f61d15b8018d5012
MD5 75e7dc51b6379f226a965fbac241a72d
BLAKE2b-256 ae90b69691091259a5d89c28714ed467561dcd5bf784fc61b9b04756660882c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 7a8d616fc3462deb4410abf4249f8cbd62e97fdc7bafe0d29c709d9951504f8d
MD5 ee98e100a5c4bcad018d3957e15933d7
BLAKE2b-256 b43b7f75d3d104542ffc00be1540984055a6f7c28b388ea881ed25f10ede8aa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6d2a1552c0da77a50bcb6f6aef99c1c7f160ed37fccfed98e57fa614c11ed6ce
MD5 82c513c89c8a74708cd3d94ee0317635
BLAKE2b-256 6522103ecb821f652bd51764bc7329308365599c852af0fc5507f343880c7d1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67c62f4876b1946f761bba9090801f9f0a05ec6443a6f96874861c69ce7512af
MD5 8fbd59ee24ac3061e32fc8ae5092ec47
BLAKE2b-256 923472535261d4606d1ee9c26ed9d7a870f1f4d134c8155681a6267aafea6138

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2f6c06aa03257e10a2643d6658b887530dcc7a0974f0fe5c272bc2e191db511
MD5 8cc88718c4cdb34da2bfdd08337a7d92
BLAKE2b-256 a1fadcd06a44b845e18a09b754b1f8ee080cae84f7cda82dd62833e797ecf16b

See more details on using hashes here.

File details

Details for the file psd_tools-1.9.22-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.22-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 65a065b83031bac53d26bd8bd5e1c25b50fb55c762774a95fd84c5efdfdd005c
MD5 1642d2cf7c63b294017124c1965382b7
BLAKE2b-256 5c20467ac9775c7393fe37d07db999c240e3e8817c7b446e2d7c07721c883400

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 60c27877ba142bd9d3819b41cc4040ae002d1e0c2c8360a91bf53e96e561d23a
MD5 267134627cffbbd455fc33d0e2f992cd
BLAKE2b-256 84f53c870cab1cef9ca7c51cfd21343e34058a5013f3564cb977b43e60de8293

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2bf9b4ab67e2cad654a226fa3f12b7c479e4bd2a1ad84ea1ba5323bc974eb538
MD5 65714560549145c2a677ee81a36d0858
BLAKE2b-256 c877a1ecfebdf0a62bfafd995569a1179f8901d8c34864c02e9cd50bbfc009b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 50c7e8296403a43ec4d9680c22ba41a326804b2f83216977066c5ae5cb059ec6
MD5 a105c06f940887dc3913fad64ef72058
BLAKE2b-256 1fd8e512468258c0dec63b55abd92803d77e6aa1c07719e9a2f0b49dc2fb9649

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for psd_tools-1.9.22-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 63e19cf2c03700089724fd9438f4db11ad792af5a0860c8a46a7d626adcf7b80
MD5 458fcbccf49175234f856cd801c81a22
BLAKE2b-256 f5c42a5ccec9ae0ac03a2ce69995198430f2319cbc9955570de83364b3109151

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a46ba28b05ec81658d425a750d1ebdf5ff0a1d1bfa1bb1f2a911682bf4208b05
MD5 24fffcc5fedc724e87d83cfe4d202c55
BLAKE2b-256 eade34222602496a1b8579303106fb9ae4c983a87a84f5adf370b20456afb60a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 991ec6049de3274f2e657e2d141359a665788ee42c21d658a8709c3799b47773
MD5 d3fc4ccc6b13761caae311c22945aab1
BLAKE2b-256 cb89426ade389f78f6af253bb17adb591e364fb3c60af40be54cd3588b586329

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ce918f915cac6dd72f40aaa4c86ae97b36b5eb75b80a614ccf264648ac92a8a0
MD5 2bf796eecdda2e54bd6f98078dc0835a
BLAKE2b-256 24d410a410990c11ab0afc70744581c16a6ffd7d6566a37ed3265904852b442f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7a0f1b870228234c28a13dafb98c24b0742741a3494f9e9d514bae7cf75ffe0
MD5 d7f3e1bacc0af479fc1c0100c20bac37
BLAKE2b-256 2bba8a824ddc9fb3dc12d3c75d06d1c582fd4b925d2549387cad9f5ccb88d5b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0b1af4a95e987e7650096dff2ee3868fafc33b2752a2de2aaf3382df5c559f3
MD5 d8bbad326146308ac9ef575f01726560
BLAKE2b-256 71f826558a8d5fac3dfbdc85c964516ff30202f76be8ff17444f076242e2dd92

See more details on using hashes here.

File details

Details for the file psd_tools-1.9.22-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.22-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 733acd3e97916602c0153fb689647934a32fe498f1725f5c49bcb4db2cad6a5a
MD5 633a29c4d0d21e95ae32c0d15295afe5
BLAKE2b-256 84f092ef28d01877fd7f24aeceb2782011803051605f23d18309ed0e3e02598d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 34049927c0e654f4a69816f0d3194401374b71b818b780de35287a1d36b30f42
MD5 75ddc7c6a7708a93cae8caefaf704373
BLAKE2b-256 d9309b06fa5f9e2c6a8663016ff11da07311922be1b5a5f032fffbe060b19a22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d7b9381abfdea945c153a6a5e6443f189a7fbbb0a029c2b16e15f716827880c7
MD5 8dea6305be2e5deda39ec6907d437de6
BLAKE2b-256 c7ee4f8518e6be62431dfc6dcff5db09f0056fe7b86c7b765b9f64bf8b9de807

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b18ba2f8dcfdba2754a688e4b4ce9afd6fbff9c03395700e48f78c8371d393cf
MD5 5a06d99b11b93827df19598ba754ab6b
BLAKE2b-256 f8633edd517d10fdb105541b853b589c0270a771257a74e41501ad4efef7e5f3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for psd_tools-1.9.22-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 bbb4be703853f840962513256f62b28bc3cf0b61e6230b4407166b0d496c7c90
MD5 9a5ad06e036d7c554ac4284f408af0de
BLAKE2b-256 8ce1ee73ad35e1a70c68f9ccafb6000b4c45fee8889bc63e0f6763cb49dc6545

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b365ff9d3fcda6af5b7c2f1bd35e5000348b6e46333f7da64a59c2df3c20869f
MD5 f74588063505c82453f1ab99e312942e
BLAKE2b-256 adf407f4db67e0e9d58d2926967df867a5a8968facd91e745d28c8b7366ddb63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ac3d2b3fc31f7e62753591aef5defc4d556c631ca206fb35092c413a1269b7b5
MD5 e3a411f74396b4193f65ef3ae8255291
BLAKE2b-256 0f9ccab45741aec78ab8e582f024e52aba73014cdb8e17cc18443a3d5dbeab3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 04f49c3ffee732b33eff6c671b78e99c03fe524d148937736677eb357e0e621d
MD5 f2d840e3b148f01fbfbc0ae4ea07020f
BLAKE2b-256 183334cab8c4e586ffcd7e2ff100d50391ea0ce9425bc133cd0fc99ee2082760

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a5ff2f63d86a96c18d1cb31f7208d7c428d2b9127c06dca946081f555c6e46f
MD5 9ccdc9b774f3ac2c6fad4d67b3ff9933
BLAKE2b-256 172645a45a4b7a2d6783e113e10985bfb6d0d7f8d2e8564f9e9d3540ba192179

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b66d00ce131da33b12dc577cbed2efb299bf004a9c7e669d6e5258782a9f39a4
MD5 6ddf30ab1acde9ef48c1a1e4a8f7218c
BLAKE2b-256 342e0c38767327b448bfe627744499873bc3b46b46daa9155b3b5923fd00a8c2

See more details on using hashes here.

File details

Details for the file psd_tools-1.9.22-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.22-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2f467b02b8713ac0fe2d218f8decc10a247db81d42db43a428f5e2d03976382a
MD5 d18fc1ef9f817cfd4408561054606cb1
BLAKE2b-256 676ca19ea0dd6ade4a10f9f349165af317354a8aab58959c77613e567f26323f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.22-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f4e87c9d7aa56ddc1cefac43d2257d290b13a3ec63c9f32858c8bf880847625f
MD5 4e1d7c3414a664f389683f89e72b8f40
BLAKE2b-256 6a5d13672ed80ea8414489bf14a4a8af6ed6dd737d730c18a6610ff562005333

See more details on using hashes here.

Supported by

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