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

Uploaded Source

Built Distributions

psd_tools-1.9.13-cp38-cp38-win_amd64.whl (206.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

psd_tools-1.9.13-cp38-cp38-manylinux2014_x86_64.whl (585.8 kB view details)

Uploaded CPython 3.8

psd_tools-1.9.13-cp38-cp38-manylinux2010_x86_64.whl (542.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

psd_tools-1.9.13-cp38-cp38-manylinux1_x86_64.whl (463.5 kB view details)

Uploaded CPython 3.8

psd_tools-1.9.13-cp38-cp38-macosx_10_14_x86_64.whl (206.9 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

psd_tools-1.9.13-cp37-cp37m-win_amd64.whl (205.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

psd_tools-1.9.13-cp37-cp37m-manylinux2014_x86_64.whl (541.3 kB view details)

Uploaded CPython 3.7m

psd_tools-1.9.13-cp37-cp37m-manylinux2010_x86_64.whl (497.0 kB view details)

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

psd_tools-1.9.13-cp37-cp37m-manylinux1_x86_64.whl (497.0 kB view details)

Uploaded CPython 3.7m

psd_tools-1.9.13-cp37-cp37m-macosx_10_14_x86_64.whl (207.9 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

psd_tools-1.9.13-cp36-cp36m-win_amd64.whl (205.6 kB view details)

Uploaded CPython 3.6m Windows x86-64

psd_tools-1.9.13-cp36-cp36m-manylinux2014_x86_64.whl (542.6 kB view details)

Uploaded CPython 3.6m

psd_tools-1.9.13-cp36-cp36m-manylinux2010_x86_64.whl (497.4 kB view details)

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

psd_tools-1.9.13-cp36-cp36m-manylinux1_x86_64.whl (453.9 kB view details)

Uploaded CPython 3.6m

psd_tools-1.9.13-cp36-cp36m-macosx_10_14_x86_64.whl (209.3 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

psd_tools-1.9.13-cp35-cp35m-win_amd64.whl (196.8 kB view details)

Uploaded CPython 3.5m Windows x86-64

psd_tools-1.9.13-cp35-cp35m-manylinux2014_x86_64.whl (533.1 kB view details)

Uploaded CPython 3.5m

psd_tools-1.9.13-cp35-cp35m-manylinux2010_x86_64.whl (490.3 kB view details)

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

psd_tools-1.9.13-cp35-cp35m-manylinux1_x86_64.whl (448.6 kB view details)

Uploaded CPython 3.5m

psd_tools-1.9.13-cp35-cp35m-macosx_10_14_x86_64.whl (207.1 kB view details)

Uploaded CPython 3.5m macOS 10.14+ x86-64

psd_tools-1.9.13-cp27-cp27mu-manylinux2010_x86_64.whl (457.0 kB view details)

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

psd_tools-1.9.13-cp27-cp27mu-manylinux1_x86_64.whl (427.5 kB view details)

Uploaded CPython 2.7mu

psd_tools-1.9.13-cp27-cp27m-manylinux2010_x86_64.whl (457.0 kB view details)

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

psd_tools-1.9.13-cp27-cp27m-manylinux1_x86_64.whl (457.0 kB view details)

Uploaded CPython 2.7m

psd_tools-1.9.13-cp27-cp27m-macosx_10_14_x86_64.whl (207.4 kB view details)

Uploaded CPython 2.7m macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: psd-tools-1.9.13.tar.gz
  • Upload date:
  • Size: 121.4 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.46.0 CPython/3.8.3

File hashes

Hashes for psd-tools-1.9.13.tar.gz
Algorithm Hash digest
SHA256 9b1ca602b63b7bcb9f53e9f3d4b815839926533112bc6e3ecf1d37cb125259f3
MD5 536b4a6836fcaddef4d97cdb60d6c843
BLAKE2b-256 6974d70b256bdaf85344625d55234c4ed10d7e7a2aed09f7e7abb2afdcdb98c6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.13-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 206.5 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.46.0 CPython/3.8.3

File hashes

Hashes for psd_tools-1.9.13-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 727bdaf20d0ca7a5015ebdb54bd466dbe7d48ec57b7b2947691f827b90bc1b05
MD5 61cb97adfee601ce4364bc328a1bd7b9
BLAKE2b-256 71ede67fb0c9610b5328f22dcbd1003d8d4450ea1e49ba995f01bd17d8b33eca

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.13-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 585.8 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.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.3

File hashes

Hashes for psd_tools-1.9.13-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4589c5ae6a3c08704fe0e92e36ae8efc9a33e6db74e366247fb823d6f8fd937d
MD5 aa6d5cabfd4f6d7db7c200efa951e039
BLAKE2b-256 0a4386783d3bf677bc555c621f21b8b05c811c8b35433f05b3608c5dcf54e7e5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.13-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 542.7 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.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.3

File hashes

Hashes for psd_tools-1.9.13-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4359a8ef3e9b49ab9efff875a9e1532c074d5f0851b79556732f27e02b69f2a0
MD5 e26909a8d2fdc3c00585630555454c26
BLAKE2b-256 e7074d1d84199769a4876365524a4b91f8d2753c48dde0b47fe37ef9b5880429

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.13-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 463.5 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.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.3

File hashes

Hashes for psd_tools-1.9.13-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ec6585e677b1c07f908fdffec009e933bb612a340d17b0b0bd8451c7c3aad853
MD5 9d06a274d0614e7e3e825b56fbf988c1
BLAKE2b-256 bfe073e810b1ce638a1838afc0733601d1267a7ec99633f1b1e738bbfa82e8cb

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.13-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: psd_tools-1.9.13-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 206.9 kB
  • Tags: CPython 3.8, macOS 10.14+ 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.46.0 CPython/3.8.3

File hashes

Hashes for psd_tools-1.9.13-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 99cebb6c51542805b0f0ee3e0c543ac6ef5ad3b55d425215548b74a806fba388
MD5 36fc0619288ef76f437c539a3624eb24
BLAKE2b-256 a4339ff7c57e9d631615f5533cbfb1fed845d0efd0fd3e6e16c82caa4b23548e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.13-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 205.6 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.46.0 CPython/3.7.7

File hashes

Hashes for psd_tools-1.9.13-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 263f176e1b430507e10673513cd387e045486ed1393ec7381fca9626ae4ff59f
MD5 1c0f50f9308ecb64b58b94e7c831799d
BLAKE2b-256 90e7e441dad2fe708d0a50cd6b4cf576bae78e8da58b855373a82b85df5fac57

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.13-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 541.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.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for psd_tools-1.9.13-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3dc632ba69d39c1b382402998c4950caa80043a7ff512526e0dd92711175b266
MD5 2c4f66ff082f1e14d2a0b79451458fae
BLAKE2b-256 4966015213ac7efe2f36399411c1b716469867e74ec368a0df58b504a840a26e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.13-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 497.0 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.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for psd_tools-1.9.13-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ae772f14bb20f56eb5de0cf8c249ae3eb71dd2fac282bc252d065cddb8c59b95
MD5 7c7669f4aaab8b2485024b80f6983e19
BLAKE2b-256 d95980034dabc27d32fb465b8e9e459747b0cdaff4eeafa3996ec3b3eb7c71cc

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.13-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 497.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.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7

File hashes

Hashes for psd_tools-1.9.13-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 359dbf87ba0862f416270fd073cd32419e4b5b14348a00643b0212ca8bfaae78
MD5 9dbcf80a36030f930ccbcd3c37a5d9ea
BLAKE2b-256 af17610382b198c0b461e8ee1cd14fb6a876d18cbd54a27f5046e73cfa0f4cf4

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.13-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: psd_tools-1.9.13-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 207.9 kB
  • Tags: CPython 3.7m, macOS 10.14+ 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.46.0 CPython/3.7.7

File hashes

Hashes for psd_tools-1.9.13-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 aa250347afa04b1f250949c1eebe84e6133faf12322f645f0b8034bc9112f973
MD5 37ac3ef64a72ebfa8ee28d9a6562ba28
BLAKE2b-256 79af66eec6f9697f5631c75d9dd67658e188d29d50c990bfe33f9412e156e983

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.13-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 205.6 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.46.0 CPython/3.6.8

File hashes

Hashes for psd_tools-1.9.13-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 59ad835947adc21e9d8e68ceae64a5a2cc553641fd39aa7a825cca26cfab29f4
MD5 c0161e9dafda8d617fad89da3150f6e7
BLAKE2b-256 43d3cb53e53642c35bf5bbe3b1d94c11d4ef31634d94a509880efe63706782ad

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.13-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 542.6 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.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.10

File hashes

Hashes for psd_tools-1.9.13-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 167de45d310b49fa880c83762cd81a6e8ed74086cb055b83d0049ceff0790661
MD5 b6926916e6cdebb8b912f66da9a4b9cc
BLAKE2b-256 69077cdff9292842c24a2ed5283a3dc2a23cdb8e75b85ae80eb7201fa0fc873e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.13-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 497.4 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.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.10

File hashes

Hashes for psd_tools-1.9.13-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 39cda0da0b4610421228d60d02b320e1fb2e412f3f396da7c863ea47c9f0d1aa
MD5 b22c8c67aedb150c4abe1239b9bc804c
BLAKE2b-256 8d89d1ced3f96c78b99a63fe7db3289008f497ed3abc8b692712261a21bff6ab

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.13-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 453.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.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.10

File hashes

Hashes for psd_tools-1.9.13-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 36e110dc1db4f564024aa4201e09c3a2cc22a78bcea5bb7eccb16fbd9ae7636a
MD5 fe9ec14f7db0104ca7d4d7a9221b7029
BLAKE2b-256 ec784dcba04daeca99169989caad50d8d485a2569f0b3f503c71e6eccf3429e9

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.13-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: psd_tools-1.9.13-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 209.3 kB
  • Tags: CPython 3.6m, macOS 10.14+ 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.46.0 CPython/3.6.10

File hashes

Hashes for psd_tools-1.9.13-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 80bcc2a2401916f80659d792a43ac9e9c8ae34eabb430b1d120ce91bd0496f05
MD5 416887266fbce70a3078159d844baf4b
BLAKE2b-256 020e91ef3fec62d1662f4fa106cca85fba8b342dee773f23356ef123da624dab

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.13-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 196.8 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.46.0 CPython/3.5.4

File hashes

Hashes for psd_tools-1.9.13-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 f9cef798dd4aeaf3d6b2ac963b32450515cf464c62ffade60ffacd282ebfed28
MD5 9d8e724f91dccadca4dd0698ae16bfca
BLAKE2b-256 7cbdf886cfa1d77f402c14ba479b8e460a0b97ae350f275e41dae413fc400ed6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.13-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 533.1 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.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.5.9

File hashes

Hashes for psd_tools-1.9.13-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 284fff95d321ce61b5fb8eb876123864a8bb7435ee98e90438b8b79908eb489f
MD5 58e886fa3751cc1bc622ad93fdb8af16
BLAKE2b-256 222349ae21a2da6d6d88ac1e9212ec8ac5ab29581d94e3631b028f8b4fdf6fea

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.13-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 490.3 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.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.5.9

File hashes

Hashes for psd_tools-1.9.13-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 64ddb23595b7e1cfdd55df8220b50aa6698ae32d3b3c3ae37d474160477044a8
MD5 8cbcee14b3f5eb5ef5bc34bf2088fd73
BLAKE2b-256 fffc746bcd9a6fbedc0a1cd41162dfc8e1d5ede34120bfd6ac17939fd333fd26

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.13-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 448.6 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.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.5.9

File hashes

Hashes for psd_tools-1.9.13-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 06783b1b784e7906c9c5d3bede18234beaa90a500d1702f4f79718d39e6ac7ec
MD5 585f8056191678d51ba4640f6fa420bc
BLAKE2b-256 214c09f9c6631581738db1b4fc5e22d00c11d5a47c528a74e76c4bdfc3252c85

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.13-cp35-cp35m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: psd_tools-1.9.13-cp35-cp35m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 207.1 kB
  • Tags: CPython 3.5m, macOS 10.14+ 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.46.0 CPython/3.5.9

File hashes

Hashes for psd_tools-1.9.13-cp35-cp35m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 57059cf6914cb0f1490979ee77914f46802bd64ff51cc41434d47c1cd109a495
MD5 afbd494e3ba3dc657bc6cde7179732b8
BLAKE2b-256 e688dcd33e4bd1d46de2d917bb104c6747578efffd4cbf7676aef45a8b0c4700

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.13-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 457.0 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.46.0 CPython/2.7.18

File hashes

Hashes for psd_tools-1.9.13-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fa3504f039c28b3a014b8243a2ae8f34fa25f91992506c01bf583a8fdb032cfa
MD5 830f00ff7362bbcf5e6deaa35a7e9185
BLAKE2b-256 ecee81ab9eab7a6fdf0656982bf29ab2e5d130e1f8f238b1770fd2c1df31670a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.13-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 427.5 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.46.0 CPython/2.7.18

File hashes

Hashes for psd_tools-1.9.13-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 15ef5cc78ebb25a875ce0beb84f373dddef65890928b083a2bc41fb610512f19
MD5 17364d87dee73a666ad1689a37c77968
BLAKE2b-256 6d730f36f8d04de0768a37c4dc7d347e254a3d20f218afabbde4f7828ac28b8d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.13-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 457.0 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.46.0 CPython/2.7.18

File hashes

Hashes for psd_tools-1.9.13-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 526c19c8f6f83b64c9b6e2f995671f06ef623a7b79615fa23a8d3316f38bec49
MD5 9d18c3dccd0e5dc41467868dedae901c
BLAKE2b-256 760e4a42cdcb83839ca2f68ce5e67270d6f53c86d47ca848297dba123ae33654

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.13-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 457.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.46.0 CPython/2.7.18

File hashes

Hashes for psd_tools-1.9.13-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f40a9ac86cc2cdbcbd80c20de29414a8d5006364a854ab52f5121941649fe4a5
MD5 216b26d3d6e202f303572ee8fa4c22a8
BLAKE2b-256 c8e54e318e4ff04a4d2391bbc59102124451ff64cc8a009fcc580d682a67e662

See more details on using hashes here.

Provenance

File details

Details for the file psd_tools-1.9.13-cp27-cp27m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: psd_tools-1.9.13-cp27-cp27m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 207.4 kB
  • Tags: CPython 2.7m, macOS 10.14+ 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.46.0 CPython/2.7.18

File hashes

Hashes for psd_tools-1.9.13-cp27-cp27m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 73dc05f898d1551bfed098aee670acf2919fa4a1d0d82d2b49db0bd106df99d9
MD5 7d1c2d6d92aa569b4ae918647d19b578
BLAKE2b-256 e1787af3d77dde17d58199e17aef9db1193f6e24fa3740aa0a53315188fc35aa

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