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 Test Document Status

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.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 syncronization 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.11.tar.gz (121.2 kB view details)

Uploaded Source

Built Distributions

psd_tools-1.9.11-cp38-cp38-win_amd64.whl (212.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

psd_tools-1.9.11-cp38-cp38-manylinux2014_x86_64.whl (515.1 kB view details)

Uploaded CPython 3.8

psd_tools-1.9.11-cp38-cp38-manylinux2010_x86_64.whl (551.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

psd_tools-1.9.11-cp38-cp38-manylinux1_x86_64.whl (551.0 kB view details)

Uploaded CPython 3.8

psd_tools-1.9.11-cp38-cp38-macosx_10_13_x86_64.whl (212.2 kB view details)

Uploaded CPython 3.8 macOS 10.13+ x86-64

psd_tools-1.9.11-cp37-cp37m-win_amd64.whl (210.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

psd_tools-1.9.11-cp37-cp37m-manylinux2014_x86_64.whl (477.3 kB view details)

Uploaded CPython 3.7m

psd_tools-1.9.11-cp37-cp37m-manylinux2010_x86_64.whl (504.2 kB view details)

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

psd_tools-1.9.11-cp37-cp37m-manylinux1_x86_64.whl (455.0 kB view details)

Uploaded CPython 3.7m

psd_tools-1.9.11-cp37-cp37m-macosx_10_13_x86_64.whl (211.4 kB view details)

Uploaded CPython 3.7m macOS 10.13+ x86-64

psd_tools-1.9.11-cp36-cp36m-win_amd64.whl (211.0 kB view details)

Uploaded CPython 3.6m Windows x86-64

psd_tools-1.9.11-cp36-cp36m-manylinux2014_x86_64.whl (477.9 kB view details)

Uploaded CPython 3.6m

psd_tools-1.9.11-cp36-cp36m-manylinux2010_x86_64.whl (505.1 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

psd_tools-1.9.11-cp36-cp36m-manylinux1_x86_64.whl (456.4 kB view details)

Uploaded CPython 3.6m

psd_tools-1.9.11-cp36-cp36m-macosx_10_13_x86_64.whl (212.5 kB view details)

Uploaded CPython 3.6m macOS 10.13+ x86-64

psd_tools-1.9.11-cp35-cp35m-win_amd64.whl (201.4 kB view details)

Uploaded CPython 3.5m Windows x86-64

psd_tools-1.9.11-cp35-cp35m-manylinux2014_x86_64.whl (471.2 kB view details)

Uploaded CPython 3.5m

psd_tools-1.9.11-cp35-cp35m-manylinux2010_x86_64.whl (497.4 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

psd_tools-1.9.11-cp35-cp35m-manylinux1_x86_64.whl (449.3 kB view details)

Uploaded CPython 3.5m

psd_tools-1.9.11-cp35-cp35m-macosx_10_13_x86_64.whl (210.7 kB view details)

Uploaded CPython 3.5m macOS 10.13+ x86-64

psd_tools-1.9.11-cp27-cp27mu-manylinux2010_x86_64.whl (465.8 kB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ x86-64

psd_tools-1.9.11-cp27-cp27mu-manylinux1_x86_64.whl (431.0 kB view details)

Uploaded CPython 2.7mu

psd_tools-1.9.11-cp27-cp27m-manylinux2010_x86_64.whl (465.9 kB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ x86-64

psd_tools-1.9.11-cp27-cp27m-manylinux1_x86_64.whl (431.0 kB view details)

Uploaded CPython 2.7m

psd_tools-1.9.11-cp27-cp27m-macosx_10_13_x86_64.whl (210.8 kB view details)

Uploaded CPython 2.7m macOS 10.13+ x86-64

File details

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

File metadata

  • Download URL: psd-tools-1.9.11.tar.gz
  • Upload date:
  • Size: 121.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for psd-tools-1.9.11.tar.gz
Algorithm Hash digest
SHA256 9ea0979ed4e17574b579932e2beeeb95a7a498ebcaa528b04df6ce73dc2fce4b
MD5 5d08a7dd6b5c881704b587b1b30af7a7
BLAKE2b-256 d9ef5834fd6fcb92c6b1d0de3eb99a41d557d443183cc20eb61ed02fb90d2cfa

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.11-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 212.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for psd_tools-1.9.11-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a08b5cb7accb88810aed6e932239b5a7ae79d63a68698b4a2ce731684901e865
MD5 721cd11447ff228b70efbf0581414c4d
BLAKE2b-256 79e766518885b38967b8cd7c68e87eb1814011183df8ef9f2740247e975f5b93

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.11-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: psd_tools-1.9.11-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 515.1 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for psd_tools-1.9.11-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e0c25328c7781dd380162c321be597fcfab3b9ecca38c1d567853c757c8639a0
MD5 2fb7f3d30b2ed3e6caa091678ec413dd
BLAKE2b-256 922e2793b21cc1de85cad8a39e83a958f8ba4e9142db815f0041d4057aeca91e

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.11-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: psd_tools-1.9.11-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 551.1 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for psd_tools-1.9.11-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 28f4337b4a9c6950a0070e8d62ec01aa492bf3b18972fad3bbb9362bf3e93530
MD5 4a65bec8221758c0ad4d165e6073977e
BLAKE2b-256 3e728703ef15b6f02f87f11243b780c010f2ece4b7f8306f4704e66e24b102a6

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.11-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: psd_tools-1.9.11-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 551.0 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for psd_tools-1.9.11-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2784e9cbac1319aff91a1559fec31d01cca3e9cf074fc9925756342e9c1369cd
MD5 6d1246796da26629a744e918304f538a
BLAKE2b-256 274d0f826582b21618fcc6e2b9545ec80352f4c7796d124e360752890fed61e9

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.11-cp38-cp38-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: psd_tools-1.9.11-cp38-cp38-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 212.2 kB
  • Tags: CPython 3.8, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for psd_tools-1.9.11-cp38-cp38-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8c28134e5311590a0c0737004f1d27a5ae8d254e088b0bc257e7340a96fb267c
MD5 2e028df92f7f7caec45f7bcdc4be11d9
BLAKE2b-256 6a4fee904cbaf197eb1e4e7e5b9b91dce1553287dd84fce03ae780ba4299fa8b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.11-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 210.9 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.6

File hashes

Hashes for psd_tools-1.9.11-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ee489d9246c28bbeda771f0e7ab25ad8c944d3ecd7d5420787fe72c50ff12be4
MD5 cab9b284878c82dfca6382a64a57be31
BLAKE2b-256 d22f84665bc16b5b68ca69b81daed6ed33902b79af62f7c6e43f83bae654883a

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.11-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: psd_tools-1.9.11-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 477.3 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for psd_tools-1.9.11-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2110a963410bb5dc7678600d93a592c6b3759683c1622caa5609b84d2c60c480
MD5 ec61e6bdeeb128a79aa725175ba63f49
BLAKE2b-256 cc0ec2231755772c4f9493989b081004ed998b37c6c9b908f0dedd65348dc189

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.11-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: psd_tools-1.9.11-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 504.2 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for psd_tools-1.9.11-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1ef609ff81d3af7316206a691b91801b356259dcfb80a43717152fb522a3c4aa
MD5 6afe9710ba2f2d744088a716d57f4016
BLAKE2b-256 b5074efa79e43f143611ac2a1cbb04cf378c4e39435fcc14880681dc7148c70b

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.11-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: psd_tools-1.9.11-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 455.0 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for psd_tools-1.9.11-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5dbf75eb05cf3cbe3d90bd56b9f69ede5b591340d6bba79418ae22f70a1975f4
MD5 540b1e700575f304a54668dcfa583ef6
BLAKE2b-256 741e0e1f23503dbb24b8a5330a6d0576193d140d8d7d15e9c7b58327d2aa25b8

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.11-cp37-cp37m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: psd_tools-1.9.11-cp37-cp37m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 211.4 kB
  • Tags: CPython 3.7m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.6

File hashes

Hashes for psd_tools-1.9.11-cp37-cp37m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4a90d57ba7a33668b4ba6e4331af68e9e428f4d8c9712d24ce975f2824d3ee7d
MD5 0249447aba238539fffc4c41c7f1a4cf
BLAKE2b-256 94069743d2744d513678a3ac631ca9734aee8a541281e9f0d306cc5f0bdc4daa

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.11-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: psd_tools-1.9.11-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 211.0 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.8

File hashes

Hashes for psd_tools-1.9.11-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 0cb15dac2046a6da3ff8b6445a270830de2f24c8fd6955e4fe7d8b553e6e451e
MD5 83ef5ca317bf43f0db14d76f9ecdf6a9
BLAKE2b-256 d971dace8596ec9171ae73a692d2e89356361767fc459c896cd6ba67accbffbc

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.11-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: psd_tools-1.9.11-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 477.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.10

File hashes

Hashes for psd_tools-1.9.11-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e83a3888cacf358e28bf75eb8a52d8cdee23f09bf30b5a4945cc3168fba328b
MD5 66f9265b4e5a61ed0738f913f6e47a96
BLAKE2b-256 120f4c6040eb89cb15bb7022bb49daa6ae621ca51e1b2ecce6f45c34477c8f50

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.11-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: psd_tools-1.9.11-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 505.1 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.10

File hashes

Hashes for psd_tools-1.9.11-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 116648f4995c6d985cc5c1fbe056b9f73efa312574cf4ba1d79f942d8acd02c9
MD5 67d8cb04a2c394db352366803b86c94d
BLAKE2b-256 8447c1da0470d49b256b6af6a41621c96003837a2ac2889a80495248d294ca1a

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.11-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: psd_tools-1.9.11-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 456.4 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.10

File hashes

Hashes for psd_tools-1.9.11-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 aa98464bde7076f58cde14bce0402a029f409db2c803cb6fdb700190b313bf60
MD5 bc9d6ecd5733b4e5bee9e9b0a717c63d
BLAKE2b-256 db3eaab208a6e4d9fe761f7a9eef847fce01320f5a904c6ecb89ee0920002c22

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.11-cp36-cp36m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: psd_tools-1.9.11-cp36-cp36m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 212.5 kB
  • Tags: CPython 3.6m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.10

File hashes

Hashes for psd_tools-1.9.11-cp36-cp36m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7e3b90f3a85039c73709dc6135c8b9de361b34839a6f752584c9268e31c24a42
MD5 95e1b62ee9b8a251b11baa6f7d40544a
BLAKE2b-256 02d9a47969103a1af11bcf5a160d7f3e20b21206279e9e35f5fbd75acf9278db

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.11-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: psd_tools-1.9.11-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 201.4 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.5.4

File hashes

Hashes for psd_tools-1.9.11-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 d54157b85c942241211e5eb6e581d0b8bb2907cfea81204e69c1598923082aba
MD5 a12d42129d1179ac90ba7daa5491e056
BLAKE2b-256 faa635380d5c957a5c55f4d7ad6b51466f0e197dfa77a6eedc94ad3a21db4e32

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.11-cp35-cp35m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: psd_tools-1.9.11-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 471.2 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.5.9

File hashes

Hashes for psd_tools-1.9.11-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a368d0578df97e9834ee78906e76f607462678de51d112ebd45d53845994fba
MD5 5314d6e933fb558f518d274b01fd143b
BLAKE2b-256 1d257a34aa777aa3642aac6c9995a847ec1d16f3e0d40ec191fccadbeefa8cc5

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.11-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: psd_tools-1.9.11-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 497.4 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.5.9

File hashes

Hashes for psd_tools-1.9.11-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 21b7c37f3bd2db3a2cd5ae4e75400da01e7df6e18ac8c475af8cd84ff80fcc72
MD5 16e41b379c71581643b81665694285cf
BLAKE2b-256 cf649ff926533247f278c7d7a42a4b03800d39264c1061834657493511bac67b

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.11-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: psd_tools-1.9.11-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 449.3 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.5.9

File hashes

Hashes for psd_tools-1.9.11-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f8dbace8bed17defe6c251369feb35ac168260eea8f4b696985d11d00bc7199e
MD5 e243c4b6ec438bad5bc8cbcf42f21e36
BLAKE2b-256 c5911b5be56a06358ad084a574fdc5d55bde4a6f87fa2e8ce8e34e008c632129

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.11-cp35-cp35m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: psd_tools-1.9.11-cp35-cp35m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 210.7 kB
  • Tags: CPython 3.5m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.5.9

File hashes

Hashes for psd_tools-1.9.11-cp35-cp35m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4973ba0ffe9069bd108422699763cdda9899c6df7b3044d0538f6037cc542b1e
MD5 796e7860063df2b1f648572ed0a1b1f8
BLAKE2b-256 000c369f64305abead84238b118e60f6694b66eb6e184f77d5457b79888832bf

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.11-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: psd_tools-1.9.11-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 465.8 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/2.7.18

File hashes

Hashes for psd_tools-1.9.11-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e11d8f801e5a081d43cb09b8197454c37be82d795264ea783cbcb873b285e4b2
MD5 aec5220ccc1279d9f3ec9dbd0954ab91
BLAKE2b-256 5631df5ac85d6321b0bdd07a1b26264165e5bfb00b4f3a8d0489b90786a4a8f6

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.11-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: psd_tools-1.9.11-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 431.0 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/2.7.18

File hashes

Hashes for psd_tools-1.9.11-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e7ca340a26064efa4395ac6878340734c69a784d3bff62690d3b022dd7ea30b8
MD5 b9e52f6dd9c602d86c05671ab5a2635f
BLAKE2b-256 c5cd64ca45391bbee2e18e3a508f123bb6bcc73139082f8b642551f97ab90dd0

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.11-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: psd_tools-1.9.11-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 465.9 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/2.7.18

File hashes

Hashes for psd_tools-1.9.11-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6b2496602c634f992a361e7990532580ad1a071732d213c98b38cba0b2936696
MD5 7e7564c438b84bbc22368883dad85ede
BLAKE2b-256 c42b67371a9bb9bfbeb0a5950f2042163c03a1808f1a9b078e43f465d527a868

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.11-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: psd_tools-1.9.11-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 431.0 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/2.7.18

File hashes

Hashes for psd_tools-1.9.11-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7c4740004a6a2d8d7a190452fb0f3e6eb4ae8ccf06885dd0bc0cf643de80d245
MD5 7a30ac97a3479606d73f2472d3459001
BLAKE2b-256 1d5ee11349d9dd9187feaed067059ecc2c4babb76c15de8d998502a506c2553f

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.11-cp27-cp27m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: psd_tools-1.9.11-cp27-cp27m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 210.8 kB
  • Tags: CPython 2.7m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/2.7.17

File hashes

Hashes for psd_tools-1.9.11-cp27-cp27m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b509aac7ef33ef3f71918dfd4d2dad1b93d32ab5e15deb45631cad5b6d597614
MD5 3ce9bd1cf4bbcc31924c4ad867da9df8
BLAKE2b-256 effd135a1e794cc8d243288729ddbf4efa26c887335791c4e689fcbfd8a668c8

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