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.28 (2023-07-04)

  • [psd] Add alternate 8ELE signiture for 8BIM tagged block (#367)

1.9.27 (2023-06-27)

  • [composite] Fix regression by #361 (#364)

1.9.26 (2023-06-21)

  • [composite] Read HSB colors in RGB and CMYK color modes (#361)

  • [ci] Update CI configuration (#362)

1.9.25 (2023-06-19)

  • [composite] Fix hue, sat, and vivid light (#359)

1.9.24 (2023-01-17)

  • [psd] Support float RGB values (#350)

  • [psd] Workaround stroke class ID (#346)

  • [ci] Update CI configuration (#347)

  • [composite] Fix group clipping (#336)

1.9.23 (2022-09-26)

  • [api] Add bbox invalidation when toggling layer visibility (#334)

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

Uploaded Source

Built Distributions

psd_tools-1.9.28-cp311-cp311-win_amd64.whl (200.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

psd_tools-1.9.28-cp311-cp311-win32.whl (190.4 kB view details)

Uploaded CPython 3.11 Windows x86

psd_tools-1.9.28-cp311-cp311-musllinux_1_1_x86_64.whl (583.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

psd_tools-1.9.28-cp311-cp311-musllinux_1_1_i686.whl (552.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

psd_tools-1.9.28-cp311-cp311-musllinux_1_1_aarch64.whl (575.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

psd_tools-1.9.28-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (591.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

psd_tools-1.9.28-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (584.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

psd_tools-1.9.28-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (566.2 kB view details)

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

psd_tools-1.9.28-cp311-cp311-macosx_10_9_x86_64.whl (209.4 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

psd_tools-1.9.28-cp311-cp311-macosx_10_9_universal2.whl (275.9 kB view details)

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

psd_tools-1.9.28-cp310-cp310-win_amd64.whl (201.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

psd_tools-1.9.28-cp310-cp310-win32.whl (191.5 kB view details)

Uploaded CPython 3.10 Windows x86

psd_tools-1.9.28-cp310-cp310-musllinux_1_1_x86_64.whl (563.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

psd_tools-1.9.28-cp310-cp310-musllinux_1_1_i686.whl (546.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

psd_tools-1.9.28-cp310-cp310-musllinux_1_1_aarch64.whl (557.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

psd_tools-1.9.28-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (565.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

psd_tools-1.9.28-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (558.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

psd_tools-1.9.28-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (553.0 kB view details)

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

psd_tools-1.9.28-cp310-cp310-macosx_10_9_x86_64.whl (210.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

psd_tools-1.9.28-cp310-cp310-macosx_10_9_universal2.whl (278.5 kB view details)

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

psd_tools-1.9.28-cp39-cp39-win_amd64.whl (203.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

psd_tools-1.9.28-cp39-cp39-win32.whl (193.6 kB view details)

Uploaded CPython 3.9 Windows x86

psd_tools-1.9.28-cp39-cp39-musllinux_1_1_x86_64.whl (580.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

psd_tools-1.9.28-cp39-cp39-musllinux_1_1_i686.whl (561.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

psd_tools-1.9.28-cp39-cp39-musllinux_1_1_aarch64.whl (575.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

psd_tools-1.9.28-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (578.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

psd_tools-1.9.28-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (573.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

psd_tools-1.9.28-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.28-cp39-cp39-macosx_10_9_x86_64.whl (212.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

psd_tools-1.9.28-cp39-cp39-macosx_10_9_universal2.whl (281.0 kB view details)

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

psd_tools-1.9.28-cp38-cp38-win_amd64.whl (203.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

psd_tools-1.9.28-cp38-cp38-win32.whl (193.4 kB view details)

Uploaded CPython 3.8 Windows x86

psd_tools-1.9.28-cp38-cp38-musllinux_1_1_x86_64.whl (593.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

psd_tools-1.9.28-cp38-cp38-musllinux_1_1_i686.whl (577.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

psd_tools-1.9.28-cp38-cp38-musllinux_1_1_aarch64.whl (584.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

psd_tools-1.9.28-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (578.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

psd_tools-1.9.28-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (574.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

psd_tools-1.9.28-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (567.7 kB view details)

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

psd_tools-1.9.28-cp38-cp38-macosx_10_9_x86_64.whl (210.1 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

psd_tools-1.9.28-cp38-cp38-macosx_10_9_universal2.whl (276.8 kB view details)

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

psd_tools-1.9.28-cp37-cp37m-win_amd64.whl (202.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

psd_tools-1.9.28-cp37-cp37m-win32.whl (192.2 kB view details)

Uploaded CPython 3.7m Windows x86

psd_tools-1.9.28-cp37-cp37m-musllinux_1_1_x86_64.whl (546.5 kB view details)

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

psd_tools-1.9.28-cp37-cp37m-musllinux_1_1_i686.whl (529.8 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

psd_tools-1.9.28-cp37-cp37m-musllinux_1_1_aarch64.whl (538.5 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

psd_tools-1.9.28-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (544.8 kB view details)

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

psd_tools-1.9.28-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (540.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

psd_tools-1.9.28-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (532.8 kB view details)

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

psd_tools-1.9.28-cp37-cp37m-macosx_10_9_x86_64.whl (210.4 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for psd-tools-1.9.28.tar.gz
Algorithm Hash digest
SHA256 9fbbc6939d9351529236dc80b605073d27cb92c05dda9b8550db970c8aafe85c
MD5 25c2a8626a31a78b478c35473da90697
BLAKE2b-256 27b4762060bd71f05b1b379c4ccaee6e35ea1d82931fcf711f83d970e5398bd7

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.28-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 636fa2cabce66aa7103f6f33daf3d3ac17c50eaf37066105c04444b697b82b50
MD5 31f6766ea19daef2a37f743cf8d36df2
BLAKE2b-256 839749caeede6b1c08462be264eb9e473cfbfb33779cd5ecb001bf607559fe2f

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.28-cp311-cp311-win32.whl.

File metadata

  • Download URL: psd_tools-1.9.28-cp311-cp311-win32.whl
  • Upload date:
  • Size: 190.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for psd_tools-1.9.28-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 75911bdcf820449238d0ae5b0efa1d9e7972abd1ba4134ee53d7e4c6fbf85c8b
MD5 885a2088a401408e9faa65041ff3b70a
BLAKE2b-256 81fcf6f3c671f26735cb255174b37064da04d055379cc1cc975c4df810437cce

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.28-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 75861107344eaac32b4a692f1360dd73c524dfa1946dbde133dad7acfe2da18a
MD5 d4354052b4da57a48ecadbde6c96360e
BLAKE2b-256 e856c9715fcb0bf1cd18747c6affe88ae382f959501419f7796dd708555adda0

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.28-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1ae8d0163cb0799857c4da948ca63d341f3db60b1d5c21b52574d6a7c4d7e96b
MD5 ce2305f43259e4ac8cb2be0630c4e421
BLAKE2b-256 0052ead01843672088a88284cb82883f6239e28ce3602b057aee4bc48a7f5dfe

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.28-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5cfd939804c5ec2ba7903e9cbb3f6b2bf7e2e811d5be2493126e1284ba67f808
MD5 ab557b3d9fd4d1384e01240e6f38b65f
BLAKE2b-256 1cd82de1f6e18cffddb0a49a97dc4cc1b0a5431711b9906ee8ae45afc5070b7a

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.28-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 56ec83d0b8e7ba1fbac23f8f73b86ba11b8a44bf8a5a6fafdc099d7c0c79ef23
MD5 ce8da78aca9fc3e3b4859f8cdd1006b7
BLAKE2b-256 01c26bcc35abc9468e794454ce2e505f662a0b19c12b7355f3d9a5e023e1d21c

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.28-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a99543e30a028eac28110f0a8e046257748324593b63df0bdf228d61c534ed7
MD5 dbece6cf91dc5cb0674c999cf0f3f144
BLAKE2b-256 0730b6ca1e6ad3e14d917f70eae59eb644eb8715b7803b4963b6b5b09fd340c0

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.28-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c487824ff542f010593ca77da31c32f749826834d7178a717d887223c976ee32
MD5 47e977a93c550fe5ff6556c22349fe77
BLAKE2b-256 ec306f8250504a2b5b7f1ec871b7fef125147d8932109b1cb8b0b9b2efade67a

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.28-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8b61794fa18b7ccdf0183b73adf28eb450105e8398855321eceef31fa75c4b3c
MD5 02a4c3035709f34276aa0e7a98c69383
BLAKE2b-256 e2e6eb835b815f7e200b9fffda2ca87d0228500e02296c012e513b6835038307

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.28-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7eee3e5755ef2e833c01529ef232bc0ed23abf6e176931daae15b5683f8b1b77
MD5 044fa2017a5ca12c964dd64ea00004cf
BLAKE2b-256 37e46356912e4b51e6224230b59ab15f3ac194fd413719bb52e0b0118ab60621

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 048f447ac897abff44c483a9e55d2af71d1e467cbb7cd0c7ed5a222d466a91f1
MD5 e3a2254942e89f2aa5cf228f87fa6da5
BLAKE2b-256 6f8b0c4873fedb4f349d75ed70e4220b6489273c8ec14b66206dea52d9b43b47

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for psd_tools-1.9.28-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 57044cb2956e628fe54eb9f38bae4fc10ef00d8f15c3a9b002601f4f097c5f66
MD5 2263e24cb997a6e1038a6a342d9e65e6
BLAKE2b-256 81944d94f406c9f1befaaf7a22a539059a78eab6bc4715e909cfe250d040842a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bab63fa96f26ac48c26c0d7b8f190c4369e0959492045df826c876367f94e540
MD5 cd1cc0a03971e75f00bdf73dd63fe3f9
BLAKE2b-256 47fb088f6097caa60a8f40908bffa18214145a933b5d7de2fccf0a7cacdb41ef

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a2844911bc382b6bd6822d75390a08dc65871602b3e73318eaf07d99bf7cf4d8
MD5 c2195f3ec4502a0ec41162e79f664029
BLAKE2b-256 c66193538fb3e7063a24bf87921f7e6ce57af83dcf361f028de0688c818c8582

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a38bc0b8bb6147a6ac1a220d5b216006359f457fc0bd84305bd651f41e491b2f
MD5 ea37200d89560125e059b56239d8a67e
BLAKE2b-256 857c0e60a167b1ea48ad6094f1a7884ba8510d5be052a1d07e65b399fd501eba

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e325356639854062bfe4eaab1e1c231e27555c98f169de32a1d62b61028ddcf7
MD5 cd422813b3b723bea8e2ba828b6129f9
BLAKE2b-256 ee948e481fa93d8a2c81ebeeaf3ca6ba32b630a242ee1381683abda5ac08e618

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4733bec162687100d5951e7bf04d0661342713f1ac2a25f568b65fb11bcc7625
MD5 1b3cf4ebee28ec2b4a76f8cf851cb78d
BLAKE2b-256 4d3e967d75c964f837bc52eca0aea9a8e22d7e9f944bbc9347c4e1d9441e95f0

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.28-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.28-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 85b26a6e9dc59a267c2d042b837ecbeb07e2c3fc7362e94297f411b4081cc64b
MD5 274f23a58eed550769a53ae69fdfa4e4
BLAKE2b-256 663b2d3ef197a9fe8a1f1b1c3c977e38d6e57a1118f8edcaae835ca5a4796687

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3d3bb298d851557f3750cbdb327b63f90c691b614e2ddad03b61b1ce5f3d8c00
MD5 a94feae000a14227ef7477edcc2603c1
BLAKE2b-256 762e62b60d568a09e73305a1a22292ad6fa2af2a11d163c15bd51211375edcee

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1f5ee43abf7c034017b86eae64bd1d64e42544aa2106d4377cdbe42d14ead75e
MD5 bb0e371720492c30155ef4f9562c1d70
BLAKE2b-256 2e0a204c35150c54257218de95dd15a37d30556b0c05921ec82e3ba1af95cd7d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fa0383127d78f9732d28a64302d5ec19170376dc0ea7de0058414529027b0184
MD5 e560c1e9a20fc23b6efa8f763e1d79b1
BLAKE2b-256 2440f7249a07f98af5bd195f16991658e89b84a16027f42b513cc34c5cecdfce

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for psd_tools-1.9.28-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 609ef7232c59e42ef1acaf7b0ce2d649a069b6c4eac8ac88362671e819876df8
MD5 22279ee85114f90122e8e121409a2456
BLAKE2b-256 e982d7f0accb9e7d7aebe1951e25176bba2acf8cd10be12bb140186ca1133507

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 369ee2d0baf80c1aafe4064a8eab06f905dbf71a45d5c6f273fb587397fe17b4
MD5 b0754a260c26b10df7ace58fce7be746
BLAKE2b-256 94f2a5fb3d00495d7a4e2f2d8cc1d627ef57d78a5316c0289d7b2dc43c43bf73

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6d7b3cbc86367efcc17ce2da05df74ba5fe44eb96d15d739ba5c5b2262727960
MD5 1f3c1f666872064a7ed30bb48755bbdb
BLAKE2b-256 5925b4aa4386e41726b4d5de6c2b11308363f8bea841bc0e25af3bcf951dba7f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6e221ff4637d2a40da8380f7dd52f60695252bfd3ae24dfffebe65278b6d730b
MD5 0d3041e2db7dea96e92142f65a522d2d
BLAKE2b-256 62c474878aeebeb473d9a28c7a4f68eb6784c272544cc9f793ece14d05c93612

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7f79839f12b714c7bdf172c65853ef263e8225be7c5293552322bfa4c6bf9bd
MD5 afb17ea1735d464cd73d2aa3023c328c
BLAKE2b-256 0fe2b80c5acb93556c0e20f45b3edd59d89c15caeda4c16a58a6b309648edd1f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16b852d285d5d891d645abb85c56db69cf926ca12892d08f4b2afc8617120351
MD5 d9a876824e537877b1be07ca50511420
BLAKE2b-256 daffcd0afa05fdfb2976a9379427e99f708ada4f9dfb50a8eb4e818515481206

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.28-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.28-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 16e5668ee92bf55f4ad7ef5619f7a1d4bd7323a720d230dffb7c7a6bd14e33ad
MD5 3af4fe8b8b69a15a9a0a0664395ff94f
BLAKE2b-256 3e108db11c4d5cecab59d9cea6058ec6ea0ee959c55ac49467fb61af3ef75689

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8a737ee88e6bb3c6b9944d132d3cb1a9f5324100abdfc7ae5643629d202c43fe
MD5 723f1e0f0e3608a61e3429de37c6994b
BLAKE2b-256 7bab3d1c0ee1f8bf66b046b6cc8ec5c38bc02eb0a0a26c1829dbb60ff6e2caab

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0c07adf74b2e2ac35842f8bccb5ab1d5d2c41752e0a79f5bda0d84d1e3187284
MD5 30b312522c654d96ce5afeda13bb4e53
BLAKE2b-256 a2a027e3adbf081bbc978c7af6f6edd7008c389233d3298728cc7126a48e6a3d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 38b3229aeea00b4fc0535b390800f9e841f85bf839c013437ae4608a96a63b9d
MD5 84821ddbcd0eeb17eb983588e69836d5
BLAKE2b-256 85c0c3d38d10f30c6db40136c358fa48a909442c4d304a22552c2a242763e5cb

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for psd_tools-1.9.28-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 27e39804bf6d2f37b47310246b8b6b13b5ecc53ccf5d84326aba046aca3d2e87
MD5 20eed9ed521a8c5981356c345eacb90a
BLAKE2b-256 a8c7eceb524bff6fb105ab3b75738d9a645e79359f4c4d04a1b8c4116ce704f2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 347a9586ec82b89dee1c363232b621c943913e1cc5a6347bee3673e9d7996582
MD5 34ba7c7013ebccd048dbfb080ae8a0b7
BLAKE2b-256 d000b60b518de759a7ca9de72bd04aba1bb5d8e59b0f62a6d3577fd1738fae30

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f1f1e878255c32c38964736bc7de405919ef27aa9da9de7850651bc04f3d53f0
MD5 aad74c463954fad5a676611d9aa36a26
BLAKE2b-256 13491713f8345cd54fe3e285201d7040d523c31a2567f956f0483755a40f3097

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cfceb3127d5362a870d1b7e79c7f68b7193625dee8d2b782ad60c9cf3241a4b7
MD5 1392fc4942b52de564f9b63c55b81159
BLAKE2b-256 17e6c31980edef85df68b83ac333905f3f6969adc0d147c31d58456f276a49c5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40ea24b57d63b50cef3e738febfbcd0bf05075ce5278d3962fc9370bccd31152
MD5 71c69553c2d06f94ba1200f0dc6333d0
BLAKE2b-256 ad83c0723a55a20c9dacd8793907a6b0ac3074e99a388e354892de2752c328c7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33e69ccd56cbdf7be36bf9d5f32752554a1346f523bf93e3fd2c7f2c9520ae6d
MD5 d19019ea14ac8922a996f55a91343c63
BLAKE2b-256 5ec8060de38f9663ada753c4b85ba34a9d7e166b2ecdf90c7c049e47bfdf670e

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.28-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.28-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 19f63859d3c63a73344051561eb6819c6c123355b45e1605e009ab30fc3c9908
MD5 76b62a6b528f812a511065d2ec45bcd3
BLAKE2b-256 607cfa0b0128fcfda66a4c131900643344dde88fc6446433b1b4af4d8a98a092

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2a11657cfddfec3043917e1250ef5db8d61c9eaa90fdd269287ba98681e62444
MD5 0843a88448c2cea6dd55607015a0f78c
BLAKE2b-256 8e86ed7e7981634df78787c9b4df94b5d8abcd03a8e2cddda92f3c0ec6bb2960

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d154ccdea097ac2e37375a2c227519d2455a21540d598c4cb9bfffdf931ec044
MD5 89c6a7c7ddc0a91b72210f9b7ba1aa42
BLAKE2b-256 79851d3f04c97ed9c1b5028a24d94dc2c1123ec31b485fca917e108dd9849e00

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 24ceaa9eaa1fd7c3fa104c9e1a5b2f9e0637451da89314e99597584d179e0686
MD5 1a45e83c0749c9cbc9c422515390911f
BLAKE2b-256 658ab08b4a43df9efdf1939545b019ef5aabdef7e4a323c732a19c9c5ce016da

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for psd_tools-1.9.28-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a440ab563a142aa809773e4a1e4c608844508f9b74b9c08fb3e7d3b9d6eb178f
MD5 44fc41c2a4f9120879dd18da6922be23
BLAKE2b-256 ae0ea4324e7ea5b5787c8c7b0692c9b4851cf9c3ff01ac5017f96518efc228fc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0ffa173342fcad6b2cb0f823d86f3ffb2a851aa4db4bb454e0db7a1754959cfd
MD5 a62ac25886290d70454a6b77d551ab5d
BLAKE2b-256 944d5370e832cf5f71d389ff29b3556b2b9acb7ee38f101f6c2cf80f794d2014

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0eb00ab782c01d9f211bf2720c91c34b287e4343880d9e26953e1adf5b0a4f6b
MD5 2413a0befc94726f6149a823173c451b
BLAKE2b-256 d68d5832ab7a44ef13c596e45aebf90dd592d3fe5b68e5861bcf7413a1ff4c9f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9ae572d440e3eb562cb3a330c3d8999bb8cd21b7c4898d6d7a2a352ebd5617b2
MD5 60ae2a70403965684449e549435d0d7d
BLAKE2b-256 a4af55ebf724cb8084b80b4a8f59b8814ba4c179f360048c10b32caef74011d6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b6b7edae905f3b2b4092818248a04cd392f1647ac27900171a2d9230d47ecbe
MD5 937c897438f3a103c58f2c0be92c6503
BLAKE2b-256 4b3515c123376c36fd916758639104d6227e26969ac9c636e738e48ca63dc267

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f723ad10b811659da1e516ded287e436929469344b3476564afb1e1cedf90a14
MD5 12e475aef8b44080fc289378af9bba3f
BLAKE2b-256 e874bc174b0236185e3cf6f19921837aa04c27784a0cbae0b10cc51c701e8233

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.28-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.28-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 602ccec9faa2316d89aa38cb860ee3b593ae3cdbe178ec294f9876767a6698f6
MD5 a4f075463de4b8f12a7c4af6f346082c
BLAKE2b-256 072bdd78c7afc175b9ee83cf57deb978ac76329439b94e16537fa94ac80f0f14

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.28-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c46c92b66e5cc18bc6a0e3c496e1a3bea15a11543e899679239862474cdf5c32
MD5 f71a2b0f10c2e92311dd6216dc7b3689
BLAKE2b-256 28f3294f3281915b5ad3997b48d067c9a711756c5325de14b48d2e2e20f4adbc

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