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

Uploaded Source

Built Distributions

psd_tools-1.9.10-cp38-cp38-win_amd64.whl (211.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

psd_tools-1.9.10-cp38-cp38-manylinux2014_x86_64.whl (515.2 kB view details)

Uploaded CPython 3.8

psd_tools-1.9.10-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.10-cp38-cp38-manylinux1_x86_64.whl (468.4 kB view details)

Uploaded CPython 3.8

psd_tools-1.9.10-cp38-cp38-macosx_10_13_x86_64.whl (212.5 kB view details)

Uploaded CPython 3.8 macOS 10.13+ x86-64

psd_tools-1.9.10-cp37-cp37m-win_amd64.whl (210.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

psd_tools-1.9.10-cp37-cp37m-manylinux2014_x86_64.whl (477.0 kB view details)

Uploaded CPython 3.7m

psd_tools-1.9.10-cp37-cp37m-manylinux2010_x86_64.whl (503.9 kB view details)

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

psd_tools-1.9.10-cp37-cp37m-manylinux1_x86_64.whl (454.6 kB view details)

Uploaded CPython 3.7m

psd_tools-1.9.10-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.10-cp36-cp36m-win_amd64.whl (210.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m

psd_tools-1.9.10-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.10-cp36-cp36m-manylinux1_x86_64.whl (456.0 kB view details)

Uploaded CPython 3.6m

psd_tools-1.9.10-cp36-cp36m-macosx_10_13_x86_64.whl (212.9 kB view details)

Uploaded CPython 3.6m macOS 10.13+ x86-64

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

Uploaded CPython 3.5m Windows x86-64

psd_tools-1.9.10-cp35-cp35m-manylinux2014_x86_64.whl (470.9 kB view details)

Uploaded CPython 3.5m

psd_tools-1.9.10-cp35-cp35m-manylinux2010_x86_64.whl (497.0 kB view details)

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

psd_tools-1.9.10-cp35-cp35m-manylinux1_x86_64.whl (448.8 kB view details)

Uploaded CPython 3.5m

psd_tools-1.9.10-cp35-cp35m-macosx_10_13_x86_64.whl (211.0 kB view details)

Uploaded CPython 3.5m macOS 10.13+ x86-64

psd_tools-1.9.10-cp27-cp27mu-manylinux2010_x86_64.whl (464.2 kB view details)

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

psd_tools-1.9.10-cp27-cp27mu-manylinux1_x86_64.whl (428.9 kB view details)

Uploaded CPython 2.7mu

psd_tools-1.9.10-cp27-cp27m-manylinux2010_x86_64.whl (464.2 kB view details)

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

psd_tools-1.9.10-cp27-cp27m-manylinux1_x86_64.whl (428.9 kB view details)

Uploaded CPython 2.7m

psd_tools-1.9.10-cp27-cp27m-macosx_10_13_x86_64.whl (210.7 kB view details)

Uploaded CPython 2.7m macOS 10.13+ x86-64

File details

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

File metadata

  • Download URL: psd-tools-1.9.10.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.10.tar.gz
Algorithm Hash digest
SHA256 8aa90422d083c0c3c0bba34b636b62bbceedf575dbe9ddbc90825dfbe040eebf
MD5 622a13c98908ff5008bc9ee98beac81c
BLAKE2b-256 9546e7c5964910e5a0b1900bc3b1e653c45555f10288dc73ade2c14bec6631f7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.10-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 211.8 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.10-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 75f18f067a89c270321b730717e05c19c29e250a0b2aee2b5fbcfdcbfc92758b
MD5 c39d95abac512952cb9080972b546bc2
BLAKE2b-256 8e1e6cc3e3b41732eed5e2d31f8982be71ef23f87a99ea72a61dd085a47936c3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.10-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 515.2 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.10-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d870373b0b131f8462b87adea3d641eefc4aa492b36f49035471e6296876909
MD5 672fd8d315c0b6194687cd183dc46ae5
BLAKE2b-256 e35193e031173a4d2dcff8ec7707d869d75c502022577729f81e2764b5839539

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.10-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.10-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5b21b1c2ae416e09facd9c3f9f166e1e466495e0c92bc6338a278e2afd8ce133
MD5 c14939a9334ebff907bb947a9d6a98a0
BLAKE2b-256 47ab759abba0f02a4826b2060f74fc9ad21ed9729b334809f6a8591aa3edd7ab

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.10-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 468.4 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.10-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b44486cd9a1fe10773d97333e3967a032402338c916925f59267233b20f9a39a
MD5 ac4c548de6faaf64b31f84156853bca9
BLAKE2b-256 c247289b8f0c473ea071a7f6cb2f50098d8b4958cb39450ad265d2462410d7cd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.10-cp38-cp38-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 212.5 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.10-cp38-cp38-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6ddb254b2dad72b4418e3797a770533b1fa84bbd62e531fd9734538c84a37e36
MD5 ef70ee203681396c15acd201a394b290
BLAKE2b-256 a888548ab1bc322eb678143ed1428c4a7dbfbd24cf41a224ff46a245da1c1be0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.10-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 210.7 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.10-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1d5d9d7d6c629a687db28874943e27ab78f631f0c40ba8bb0136d065a590589f
MD5 46d8748e8a50a9b48abbfbbc02974898
BLAKE2b-256 cbf127906fcf0373ebea8c1a84178b7652796397517b24944c1a2e0c772eb1d4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.10-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 477.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.10-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4185c7a8f5c28295b5e911c3275fe2fca3bce08ea53768c486aca9695997b2f
MD5 2f87444aef2442b1a600dd169cae5480
BLAKE2b-256 38f3832b051a2432a7f9b73674db3f637462d6861ba0509308d9a1ed7413ce56

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.10-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 503.9 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.10-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1608980b0002122e15ff37ed169f362fae11284f06cdc5dad9f88a3b95f50667
MD5 2cd2a20eb1895a908774cbffd5748e9d
BLAKE2b-256 111f118410ebb206fec39589e7e2b0118c6c454a96c87b9535f2e45ef83d590c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.10-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 454.6 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.10-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 026771f1d25e5ed8b9f7d60600e0a862dbf4950fe661488b3195552d40b6da2c
MD5 a58b6d0c62325a8ef7ccc0f319a9e7ce
BLAKE2b-256 e292c7ffeae96b1c5db3aed4e77b2ac77d538c8899f0fd4ad3c28c3895e516e6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.10-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.10-cp37-cp37m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c0454d4649fea60dd3ceea3bd89fd84e90c032ee3232109ee837f79868960813
MD5 6f57369d3139e494d8af4afa34070c0b
BLAKE2b-256 4415e8c753e9d1317dd4eb6fd95fc59a864e33ac1b8a0b257c36b9dd0d69bcc4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.10-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 210.8 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.10-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 cae5a711f704dc54c6c5b204029b0bbd8645e8b540539007ff2b39c1a5a9bb66
MD5 6095e38e0c67357315f0f3a5abcc71fb
BLAKE2b-256 77c3f9e1c6710dceb588b31e817d84a49d443b73337157dfb429d819ce57250b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.10-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.10-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 acfe535f6f19948e9cb4f975c46ed613cb65c5d4fa1ab60c33510eb849b78e91
MD5 f0040842b8052351e9991336d547f735
BLAKE2b-256 d2ebc45f1c9405ea4d898558908b5bed730a402110f4e9b5093c1d3c6f6c2b1a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.10-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.10-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 dcb171a3068b5b3b01b23678226218c78ed48f9f34237273fe2fdf72aed920d7
MD5 8e659e11aeb74943280eff928ec440ef
BLAKE2b-256 46a5c0e1a1df5c2e2ea5f21f1b248e69c2252b71e35784a3946bb37715540a2c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.10-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 456.0 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.10-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a50506f013ddd96b6605fbacb4497472fd1a2c4736bef9bf85403c84678964df
MD5 4311983fcd84111c7fa5bf5b99e0c8c3
BLAKE2b-256 ee04994180347b56ef1e64a8b120b806313541e3bd02707b5221a6dec0b03deb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.10-cp36-cp36m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 212.9 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.10-cp36-cp36m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a83d271e363ae1d2995879c820eeb721e1e2d13fa4e4ac4b353c1a3eb20ea1b8
MD5 cdbf76838763ef6bf92b507e80e694b6
BLAKE2b-256 1cb35fba9ee96d93dff228c15104ef549f27148b39788109e8da6eb36471e79c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.10-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.10-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 69413a4c71a0f2466669621c61bdf15fa5d0924697872f10499b6dca2c65b09d
MD5 76e11efa6560931a4c0eb6483e63a10e
BLAKE2b-256 63ea2196337bce8368720ee483b068f70331e9ef76baf244086121cd691e04ce

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.10-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 470.9 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.10-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 422cbf62594b4c781d158bd564f2b8bd4cda42682de29c99a6fec86df3c862cd
MD5 e9490b2776cc2814ef4ff9c7afea9322
BLAKE2b-256 19608b4d6be506c63655eed83c806ed4224e998c555a0468d2c48a6a6406d6de

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.10-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 497.0 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.10-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 dc32f6464063f451a8f07747b9ea8e0d4f75b0571dbb9abe5ae4f7c59b457b7f
MD5 903dccd569d933d2396e54698a8a850b
BLAKE2b-256 c6abcfda69e87a0ed50d8c15946f0f66cc84e012f75b962d58d02ce8256a1ca9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.10-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 448.8 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.10-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f784e468ce3e4749d0a79c7263cb64555f1bed371e82fdb680354f87bb0b33cf
MD5 748f52e97c37ed990dbebc25fb4fb444
BLAKE2b-256 18bd7bbe6741bada2b749027cc2ba91bcb4e59947ae8805d91012aa28040099d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.10-cp35-cp35m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 211.0 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.10-cp35-cp35m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1ec0a56c3b01bd00738e9ef00871cb997e261b39a5f491f4b8cac50313bca6a7
MD5 579c5632af40e3c7b4a68180aa7b672f
BLAKE2b-256 b28f0a3b7398966fa77a6e8d5bb845f290e9cc149d7a66744d907e7d1905961a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.10-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 464.2 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.17

File hashes

Hashes for psd_tools-1.9.10-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2fd7e03c6a355101cfd732dbeccddebb5292249353f5254e96e9e703dcbf32f8
MD5 17e3285e1ab76debfa09c6735a7f14f5
BLAKE2b-256 f477492e1b7d579b02351555627cb18907a9f31e09f380f47378cbaf50376ee1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.10-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 428.9 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.17

File hashes

Hashes for psd_tools-1.9.10-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2c0a486104376aba96d5ff81b9f12b80694b18a4849ad30f1c42d69836e043b4
MD5 d9f30eb68fcfe4fbe7c879ece665cbb0
BLAKE2b-256 e480daa3962b0c83f81940ce4512608ee3ce632f12bb9b0712c72691cc53e615

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.10-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 464.2 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.17

File hashes

Hashes for psd_tools-1.9.10-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f942f58ff1ca70f4b772419bc0f1b3928066d711c7e360af14cd971f27fd93c1
MD5 f39190f4bec9f939e3cab803c8b7f044
BLAKE2b-256 ce5037af56632c8c6e4274908cf38e707c9c4bfb228b46867fb8d98b735b2204

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.10-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 428.9 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.17

File hashes

Hashes for psd_tools-1.9.10-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5e4425519c2ee3570d674e90676c83833a027641615ab9b7d49e8f2ca0245149
MD5 9fbcd7b372d83dfd7875103fdeb10762
BLAKE2b-256 5c867ea6d7a7b04daaf00b6803d7aa612c36005727ca200d46529fd80c028a92

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.10-cp27-cp27m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 210.7 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.10-cp27-cp27m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 140a8998a0d96ff61b4eb336df5f66ed929dac11adfacd6979c117d2e3b21dbd
MD5 c391a0b031216b3987478d35a92188e4
BLAKE2b-256 1d0fb21e1c8b0e97a8b9d8eb5274e0a13ba1a89aa8ff6c7e24f97f7259077303

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