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

Uploaded Source

Built Distributions

psd_tools-1.9.26-cp311-cp311-win_amd64.whl (200.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

psd_tools-1.9.26-cp311-cp311-win32.whl (190.3 kB view details)

Uploaded CPython 3.11 Windows x86

psd_tools-1.9.26-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.26-cp311-cp311-musllinux_1_1_i686.whl (552.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

psd_tools-1.9.26-cp311-cp311-musllinux_1_1_aarch64.whl (575.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

psd_tools-1.9.26-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (591.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

psd_tools-1.9.26-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (584.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

psd_tools-1.9.26-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (566.1 kB view details)

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

psd_tools-1.9.26-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.26-cp311-cp311-macosx_10_9_universal2.whl (275.8 kB view details)

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

psd_tools-1.9.26-cp310-cp310-win_amd64.whl (201.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

psd_tools-1.9.26-cp310-cp310-musllinux_1_1_x86_64.whl (563.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

psd_tools-1.9.26-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.26-cp310-cp310-musllinux_1_1_aarch64.whl (557.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

psd_tools-1.9.26-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (565.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

psd_tools-1.9.26-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.26-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (552.9 kB view details)

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

psd_tools-1.9.26-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.26-cp310-cp310-macosx_10_9_universal2.whl (278.4 kB view details)

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

psd_tools-1.9.26-cp39-cp39-win_amd64.whl (202.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

psd_tools-1.9.26-cp39-cp39-win32.whl (193.5 kB view details)

Uploaded CPython 3.9 Windows x86

psd_tools-1.9.26-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.26-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.26-cp39-cp39-musllinux_1_1_aarch64.whl (575.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

psd_tools-1.9.26-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.26-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.26-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (565.5 kB view details)

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

psd_tools-1.9.26-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.26-cp39-cp39-macosx_10_9_universal2.whl (280.9 kB view details)

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

psd_tools-1.9.26-cp38-cp38-win_amd64.whl (203.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

psd_tools-1.9.26-cp38-cp38-musllinux_1_1_x86_64.whl (592.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

psd_tools-1.9.26-cp38-cp38-musllinux_1_1_i686.whl (577.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

psd_tools-1.9.26-cp38-cp38-musllinux_1_1_aarch64.whl (584.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

psd_tools-1.9.26-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.26-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (574.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

psd_tools-1.9.26-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.26-cp38-cp38-macosx_10_9_x86_64.whl (210.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

psd_tools-1.9.26-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.26-cp37-cp37m-win_amd64.whl (202.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

psd_tools-1.9.26-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.26-cp37-cp37m-musllinux_1_1_i686.whl (529.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

psd_tools-1.9.26-cp37-cp37m-musllinux_1_1_aarch64.whl (538.4 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

psd_tools-1.9.26-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (544.7 kB view details)

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

psd_tools-1.9.26-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (540.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

psd_tools-1.9.26-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (532.7 kB view details)

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

psd_tools-1.9.26-cp37-cp37m-macosx_10_9_x86_64.whl (210.3 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: psd-tools-1.9.26.tar.gz
  • Upload date:
  • Size: 131.0 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.26.tar.gz
Algorithm Hash digest
SHA256 4cd669e5b531dd3acaa5bb138a9da8e618d878e6721b227f20e23d83c5e8686b
MD5 16e47fd91a51c76e98e343136abf6628
BLAKE2b-256 bbc224ddbabb566fbb5a7f352590f09115e0159fa4b9385a8ad5aaaa6679c9df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d993ada04ea444dd7f0b16b91f2507e4ebeefb8a2a3b57cd2160bb1b6e996af1
MD5 bc24bb1dd57a88df5b04915f23e180fa
BLAKE2b-256 8217d83e39ef3afac9fa3ba532b6bbf9880afae70be3fb03199fe6a6e2e7ea89

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psd_tools-1.9.26-cp311-cp311-win32.whl
  • Upload date:
  • Size: 190.3 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.26-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 af179bc7437c8a43aa7b86ac674ccd3ccebb1577d19adf72ecb9489b1a4fc6db
MD5 de5a703800305508c3ba6f62075d656f
BLAKE2b-256 7d69a17688ad9e336c546fda828701a995251c28f746261568ec675dc28b27e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a77e3924ac48a578be94c2305c8ac458b23f6ef615b437e626cf010d6df38f86
MD5 6419c3c0f91eb40bde8e358f2aceb626
BLAKE2b-256 63c5d85bab59acaf0445cc8c07d454ee185ae6100a736ee6f5ad3969a8619b0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4c950a4705b2ce70bb58503441db7d91749e26b7cecea5cef5459f4bbf496716
MD5 7a083ca558a48cdfe5a8ff739b6251a9
BLAKE2b-256 c1dd7836bfefeaf35682613ced2711d4ece05303cec215551fcc668d7e274f7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0bd297dbfd66fa19fbbf5602cf956c207c240a5b35a51722b543f6bdc053d1bc
MD5 6dcbac3b849b1636127b051e4c956d05
BLAKE2b-256 21c4c63a6ba688f92c48ae088631e79b736900ec9de96cc0f514c7b4805f24b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7d3e32c6d59b9b65412ec55fd7b1b7c6fe18c875f6ee9f855f2be9280821f1e
MD5 7aad15533bc93883c9f8bab9859221de
BLAKE2b-256 66d98a2d142eb5f808a638692f93a7ad96fe59e0460a25c3f6c3816128fb44dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac13465927aec50b622dd11b0650b1e0091125cd274aa116be2432f9024d4bb6
MD5 ed9a7d023ba11b251d58b3121724de0b
BLAKE2b-256 04acd9e4bd90694b6a4d10e7c11d0448e97187833f4420d834adffe76a59d083

See more details on using hashes here.

File details

Details for the file psd_tools-1.9.26-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.26-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7b66606055177062ce103dd34c68183213d517f8d377198bbda11bc0ec7eb83f
MD5 216ff329401a0e614727569b5f2a85f6
BLAKE2b-256 4faa2981e867ee4fb6c7727bbecbc14fa799b3a8d4eca54e48f6fe609302c9f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 277b5d16779a7144df5b943c397870720e58f930780559b7ff210ab2337aa4e7
MD5 e865ff43571075f1a5c7ef16c5aed435
BLAKE2b-256 f1dcf8bc7bd74daaa3447620ba9c995c5468f167c17cb8b26654165b644151b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d1f60d58b9face9525a1281c5fb792f5b4ebcb8008fe6ad894fcaa3d6bb75239
MD5 66cfbd634ff0df60a3fdde54260310b1
BLAKE2b-256 4e56357de124fa9a50591bd83be6d1e41254105da04a327618ae2ff41522dd5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 00503a1a2a158bda84a441566cdde49cff86071f2a837dbd64176725eafca05f
MD5 9bbe2c13c8b5b276d41e9ba460b46780
BLAKE2b-256 2dde97e5d1695eaa3e9298ce7d1bee3d96e36cb2d8fb206aed40cdd02a3a5f56

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psd_tools-1.9.26-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.26-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e87b948a31b37d5cfcf15ee3af3f8c83ed9b59fae5f3db9c8e43126a21f967bb
MD5 f7d4796caff4c027f35e8359e45bd291
BLAKE2b-256 54247e656cf45295e313fb55512923dff729ae167cd2074926aaf354317c0593

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 939789b613f0647ecc2b40dee9e3fd48631c14b217d491c1b0576e95ea978e64
MD5 f2d8ceaaa865ee724008288f088ea714
BLAKE2b-256 daeb17f2afb99a0db207060e82114b2a806d8d6c1e26c7908a93136feca58e47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fdad5765d2f0ae914d46ad81f022aa8f47622f489c730e84894377c270098c32
MD5 09e04588b8e40f0ec4b676d99ce9ec5b
BLAKE2b-256 588afa6d1e22661587ee219cbde8a03e369aa576ad500d6b37ad68db624bd4ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 424833879411165b86fa46bda7b2a9e06d7c69d3889635b3340d26d8ac5da78e
MD5 28719af169daa30a6b78f4fd7d2a5a86
BLAKE2b-256 8588919447c2bada532af5612be5ea2c273ab77bb0e7d22180e04301a3bdc95a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d6dc98bbf51103a0e94597b6c62ebada3c069de9518a13a2699923ca2edecf8
MD5 74f051398f76e69669cdc388be679b60
BLAKE2b-256 7f4db5b5c8cfd528547d1750a7589caff8547dbd8f402413a78072ca4dea6d30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3600ccd40facb0461913144b6d0279f298dde462ba6c7467d6f05d1ea9bf0bd6
MD5 3af7a800fdedbb0fc1a1ca182e4a635e
BLAKE2b-256 17342eac6fe39f36cbadf62a6c6aff1549b9c5dd8b6363bf73bc119d55851c9d

See more details on using hashes here.

File details

Details for the file psd_tools-1.9.26-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.26-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0b734ab5175429c55846923f6cd0ce99250d007d6ebd6b97f61a870ff8df9ea7
MD5 4903c1c726320a98ae8452a7cdd51bcd
BLAKE2b-256 d547d47f3c9baced52f09cab617ecef02e73c09bc490e4f793838b1c31406f9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 253d008083b1550c35c1d61337e828fee24b17a0d548569e90c20511a8f4af4f
MD5 4c7539d1f8305920c5839c8cf0ed6786
BLAKE2b-256 309a39fb032526d6499dcad8137043e1c50627c6598b7e775f5777c324383eac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 50c264721a03c60c5d9cb083e9e6b77194381a2c6e1a42c39fc49194f72945c4
MD5 c2e81723fc26679f5884c9c392859395
BLAKE2b-256 31d4973dccebc898b388c8e0bddb7eb093c9119d6032e92674438795b4c0d400

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for psd_tools-1.9.26-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8a084ee9b1060ef966da9ad70196d420b0c638b3f59d4105ec6cbd186ae0e4ef
MD5 88a33d39a4037cded8b8570efaea83ce
BLAKE2b-256 aa2d4c6326a3a1a06f7e519c9ad7ad912deb9f8aabfd406775c67315fc64ade0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psd_tools-1.9.26-cp39-cp39-win32.whl
  • Upload date:
  • Size: 193.5 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.26-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 35125c6f61f08581b64533a9d97365fb8b6f4959675d3a8385a0f0eb6718967d
MD5 f4fc24a0ffa1bc493a8d7c2ae9509bfd
BLAKE2b-256 5c49ec7118ee2613723a10e314771bdc357fa6c0665fbfcea741ff1278efcbb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 769f1cbe30a23cb9385d83478cf8da0105af633bc52d058e7b3e111ccca4fcdb
MD5 cf4646b7d2f6590c81634cbcd6516c85
BLAKE2b-256 1494ceb26958b1ca5b27daf2d6dcb93141826871afba0142697667efd838fed9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9918b0edc53ecd47b2faa496dbd2c135e5309e24db206057e6a30c431bff5e55
MD5 5e405e790426960fcc9cf33d7b562af8
BLAKE2b-256 122a9d1ea688da26c9f1e779fb66fed5948c9175fa509e46f28c7b6dc9236cb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 40b7e364e3f68d83dc4ea3f2a06453a0977c8ddaa3722a0d743b0dad7cadece9
MD5 72a4833729c6ef8646a65e46ce418d30
BLAKE2b-256 ac2ed640f1ab4d9e78a2d3a51eab1956237ef804371261300bc5b5340eafb561

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 695c2b5e56c8bcd0c09f0f65f8cb92acccb461938a9a93ab0045ed400bc916f4
MD5 0132f4fbc72b73e9baa71f537672d873
BLAKE2b-256 b21026feb2c9f589fbab868b51f727defb31055b627eead0c620121fd5dbd18b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 63dc73549d9ed92b1249b64490cb139463eb80a5a1c5c068c7693e1fe08d4219
MD5 25da1e9fc9fbd329c1f41c074701e8af
BLAKE2b-256 8799e9af6bc5bce088afa5b2ddfe5bbb95d4ad5f22d2173dab073a5f30095fa4

See more details on using hashes here.

File details

Details for the file psd_tools-1.9.26-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.26-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a78297f4ae01f59082b2121aa0515e9965f8cd9ced45da6476f03da787b2d386
MD5 73684069d27096c18791569add985454
BLAKE2b-256 e9ce2961bf43dae8c64beb0d7016c8a0972a4811b93c8ba517983bed0c3090ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c06eb83eb48bc84935698988660497ff08593b8425c9f4d619727785b9d0f0e8
MD5 4f9f2940c732c133a2527a477a3cfb0a
BLAKE2b-256 a82b1a2935ea902dcb93be45b2900ce248ac7f5b7af9e055bc2841e28da8d765

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a4d5974ca6e99ec355249546ed61b0c867d4096c381b5fecb1c195de341146e8
MD5 7a181a5b4375f13aa45cd8216ed56440
BLAKE2b-256 55d7edf99bdbb20180c03426060b7db30158171e12e812e6e1a44e9f04ca2eb7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for psd_tools-1.9.26-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 85a0d5f103c6e60f2def7e0dab0ee333cdc3d2938e49b9e843482831211ddf08
MD5 41b7ff7d4678294771330b3fc4ba91a3
BLAKE2b-256 fd772a41f7f234efb68d81f4046c27c7ff6be01b5420f867535dda6e634a32c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psd_tools-1.9.26-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.26-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 026ddee309a70da1fe15345c3568908770324dd91a2b6c8cf32f48499e34e7c5
MD5 a311ea19b8a761fd8ec3036aadcd5d14
BLAKE2b-256 77ae84bb60bd110faa00cb6f5d2e97ec50b7a5e449a04943cee1dcd34db31e10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c039e1bd4cdd806be356f0255136a7ee56cd113c04ce498bb3c0cb9c54765972
MD5 8200247809c0c351e51abf9f81ded6ef
BLAKE2b-256 c6907a358142571fd46b6b4253ce56d8a54d81eb646273e0f268cdbce565cf4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d8386977f25345293926aaf15d1db7cb10aa2e97b9e111b2c7d6d9d5f4615868
MD5 57a43cc04b9aeaa9eed7373343894d02
BLAKE2b-256 5dae0e1049f460bf1f0f2f6ce01d66d710837a0359e488d741d97d51e2307b5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ebd3e621a944c355c0e37a1e7221eb0a3150ac305101ff44383d6f13288781a9
MD5 d2e18a7a8119965c77f2369fb5715bc5
BLAKE2b-256 f7cacecd9f10261ca903a405cf189de28929c950c5ab8b0f5ae874e19ae02c2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fdab002feeb19a081a1a4df0d37ca988d4a65f8660d733d8e2425f1f0e17b1d0
MD5 3e152237136176c72b4fdc5f201471d6
BLAKE2b-256 4a33b442d8ac6af0f8b9db474530793c9b36740bb9332dce7f3066114211ca8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 116d86da926496d6da2172af4b322535005cdfe2465bb123526e1735aace1292
MD5 b83fcbaf63d6187e13604e605e3a3953
BLAKE2b-256 c8e710281a6a7838558ffd046a13024b84b5304a8b84a82df602bc112a2b2d88

See more details on using hashes here.

File details

Details for the file psd_tools-1.9.26-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.26-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 41cff691e9f9e1a8e0751cc7e9aa2866290263af6c958540d48ffd8711649a82
MD5 3547475c775d6945a4cf3cc6638573ad
BLAKE2b-256 3223aaec61d2dc72663ce9611e209e5d2424df8724448d33292f2afc40e73a9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a64747848743cf06690e8de2c9fba1f29b5c2f0921564d18477974ad9d89d704
MD5 21142f420a275aaf9994a8a7ebfee906
BLAKE2b-256 440d0816b4428092e65be8c60697949056089c5441fc68bd71b62e6567af3e1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 497fc0f55e5a7d179c275e8bd0527aad1f0c5c12492f1ccf1f31a2a3a0a85c15
MD5 92bf3fd8f46cc72d6cf1fdd29f1c42d7
BLAKE2b-256 3b0a3e3d398a8aec2801e1ca24953519d0c01242a432a3b1f1c2c6287b364f82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9b2220f5df98951f200e0e76ab605e8315b357d6952e9e0f084d90c64c01b0be
MD5 70cc51ea9c72bfa02cd4972d6e48b718
BLAKE2b-256 5f1dad512dcb6fc0249044968110a9dc225629b7c234a95be8a4588612d804ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psd_tools-1.9.26-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.26-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 0d18ff84aa54ec50c41553118cc6a3c75a8338119fb3f7b16901ffda0f2160b8
MD5 c9f4db99aa2f710eedf8c7369a612a25
BLAKE2b-256 d86cb6fc6b0b0a0f78eb5fe81d88127da49efd9566dae2dca4b3bfa87f250cb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d8cb7d4ff23a1789d2e01fa2df675a829330617c6928be9fe0ba842468290c13
MD5 f9b232bdddc8f8d5932736386270bc9c
BLAKE2b-256 caae4079c4212354f9697daea83bd7c5920c372c73486f462d6f6575002f1e0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 49c4c2673fbc76dd2b30a2d0b6a66e0a9cc7aa069928668c73f07b3c0832377d
MD5 6584b186b4238b49a6c026ee4c9ccda6
BLAKE2b-256 1281edabc323b2525512b057efb1e095a5007cca21e400448f85d0751c59ba16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 89d19bd765a624e6ec9be15395f7fe69b884538c202702584c326959bf2bf245
MD5 7ce64b55ae576b2fa07b92385ceb438a
BLAKE2b-256 07e02035fcf49d15f58a14ee6082ad3380f441b3b48b2a068f6916efffa10416

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03832cfd57a6b8123bc020cf8630f9c26d0ad9806f2ab03f7afe57e61f0b845b
MD5 eee24509d8fb75fccc7270d9968467ff
BLAKE2b-256 9c00d18f02b5166ce773340a3f5aeb60c131fc8f7b6fcb7ec1a8c75bb0364484

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9561fd541d5b40027f7b159663bdfb512c55e91cc9e97298a9e9326f0150670f
MD5 6339bf770cb7a91f51f61b25a59c7a20
BLAKE2b-256 d01294af48385f5792f0023e422c94fe8666f247b26232142e7bcddc3a3ae8b5

See more details on using hashes here.

File details

Details for the file psd_tools-1.9.26-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.26-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 69025d580197e2a44aa16f117525e476526c35809346709041051933a12c6d0e
MD5 4db2f5e50fbdc805b38baa3388cc2fce
BLAKE2b-256 1ff405e2084fdf5e793fc71c87840e5d49d6ae821578518d430e81234ef24a37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psd_tools-1.9.26-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 200bc558da352ac7cab46e9e6c6d7c24700e627e17a47645ee42cd630d146bc6
MD5 4c8322deb7ca6935c525328f0fc41948
BLAKE2b-256 e4be8e96bd4d181b05864ee2045ce1088c6208ac722299475bf6414342fcec37

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