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.15 (2020-07-17)

  • [composite] Fix ignored clip layers for groups.

  • [composite] Fix out-of-viewport stroke effect.

1.9.14 (2020-07-10)

  • [api] Bugfix for PSDImage composite layer_filter option.

  • [api] Bugfix for transparency and alpha distinction.

  • [psd] Rename COMPOSITOR_INFO.

  • [composite] Fix stroke effect target shape.

1.9.13 (2020-05-25)

  • [api] Bugfix for PSDImage init internal.

1.9.12 (2020-05-20)

  • [psd] Bugfix for CurvesExtraMarker read.

1.9.11 (2020-05-01)

  • [composite] Fix layer check.

1.9.10 (2020-04-21)

  • [psd] Fix engine data parser.

1.9.9 (2020-03-30)

  • [composite] Fix stroke effect argument.

1.9.8 (2020-03-18)

  • [composite] Fix incorrect fill opacity handling in compositing.

  • [composite] Fix incorrect alpha for patterns.

1.9.7 (2020-03-17)

  • [composite] Fix path operation for merged components.

  • [composite] Fix vector mask compositing condition.

1.9.6 (2020-03-16)

  • [composite] Fix incorrect alpha channel handling in composite.

1.9.5 (2020-03-11)

  • [api] Add ignore_preview option to PSDImage.composite.

  • [composite] Improve stroke effect composition for vector masks.

  • [composite] Avoid crash when there is an erroneous subpath.

  • [composite] Workaround possible divide-by-zero warn in stroke composition.

  • [composite] Fix incorrect pattern transparency handling.

  • [composite] Fix ignored effects in direct group composition.

  • [composite] Fix incorrect opacity handling for clip layers.

1.9.4 (2020-03-11)

  • [compression] Security fix, affected versions are 1.8.37 - 1.9.3.

1.9.3 (2020-03-10)

  • [composite] Fix memory corruption crash for pattern data in PSB files.

  • [psd] Add image data pretty printing.

1.9.2 (2020-03-03)

  • [psd] Add missing resource ID.

  • [psd] Fix pretty printing regression.

  • [psd] Fix big tag key for linked layers.

  • [psd] Support frgb tag.

  • [psd] Support sgrp metadata key.

  • [psd] Support patt tag.

  • [psd] Workaround unknown engine data.

1.9.1 (2020-02-28)

  • [psd] Minor bugfix.

1.9.0 (2020-02-26)

  • [composite] Implement NumPy-based compositing functionality.

  • [composite] Support blending modes other than dissolve.

  • [composite] Support blending in RGB, CMYK, Grayscale.

  • [api] Introduce NumPy array export method.

  • [api] Drop deprecated methods from v1.7.x such as as_PIL.

  • [api] Deprecate compose method.

  • [compression] Rename packbits to rle.

  • [compression] Improve RLE decode efficiency.

  • [tests] Additional compositing tests.

1.8.38 (2020-02-12)

  • [composer] fix crash when gradient fill is in stroke.

1.8.37 (2020-02-07)

  • [compression] Remove packbits dependency and introduce cython implementation.

  • [deploy] Move CI provider from Travis-CI to Github Actions.

  • [deploy] Start distributing binary wheels.

1.8.36 (2019-12-26)

  • [psd] add safeguard for malformed global layer mask info parser.

1.8.35 (2019-12-26)

  • [api] remove duplicate has_mask() definition.

  • [composer] fix empty effects check.

1.8.34 (2019-11-28)

  • [api] fix compose() arguments.

  • [psd] fix attrs version dependency.

1.8.33 (2019-11-28)

  • [api] add include_invisible option to Group.extract_bbox.

  • [psd] fix deprecated attrs api.

1.8.32 (2019-11-28)

  • [psd] fix 16/32 bit file parsing bug introduced in 1.8.17.

1.8.31 (2019-11-27)

  • [psd] bugfix reading psb.

  • [psd] bugfix reading slices resource.

  • [security] update dependency to pillow >= 6.2.0.

1.8.30 (2019-09-24)

  • [psd] workaround for reading less-than-4-byte int in malformed psd files.

1.8.29 (2019-09-10)

  • [composer] fix vector mask bbox in composition.

1.8.28 (2019-09-09)

  • [api] fix Effects.__repr__() when data is empty.

1.8.27 (2019-08-29)

  • [api] accept encoding param in PSDImage.open and PSDImage.save.

  • [deploy] bugfix travis deployment condition.

1.8.26 (2019-08-28)

  • [composer] support group mask.

1.8.25 (2019-08-07)

  • [api] change return type of PSDImage.color_mode to enum.

  • [api] support reading of bitmap color mode.

  • [api] support channel option in topil() method.

1.8.24 (2019-07-25)

  • [composer] experimental support of commutative blending modes.

1.8.23 (2019-06-24)

  • [composer] fix clipping on alpha-less image;

  • [composer] fix stroke effect for flat plane;

  • [composer] workaround for insufficient knots;

  • [composer] fix for custom color space.

1.8.22 (2019-06-19)

  • fix pass-through composing bug;

  • fix alpha blending in effect;

  • fix vector mask composition;

  • experimental support for shape stroke;

  • experimental support for stroke effect.

1.8.21 (2019-06-18)

  • change effect property return type from str to enum;

  • improve gradient quality;

  • support fill opacity and layer opacity;

  • add tmln key in metadata setting.

1.8.20 (2019-06-13)

  • support gradient styles.

1.8.19 (2019-06-11)

  • fix broken psd_tools.composer.vector module in 1.8.17;

  • experimental support for color noise gradient;

  • bugfix for clip masks;

  • bugfix for CMYK composing.

1.8.17 (2019-06-05)

  • move psd_tools.api.composer module to psd_tools.composer package;

  • support 19 blending modes in composer;

  • support fill opacity;

  • fix image size when composing with masks;

  • rename TaggedBlockID to Tag;

  • rename ImageResourceID to Resource;

  • add bytes mixin to Enum constants;

  • replace Enum keys with raw values in psd_tools.psd.base.Dict classes.

1.8.16 (2019-05-24)

  • fix broken group compose in 1.8.15;

  • fix missing pattern / gradient composition in vector stroke content.

1.8.15 (2019-05-23)

  • coding style fix;

  • fix compose() bbox option.

1.8.14 (2019-04-12)

  • add dependency to aggdraw;

  • support bezier curves in vector masks;

  • support path operations;

  • fix compose(force=True) behavior;

  • fix default background color in composer;

  • improve pattern overlay parameters support;

  • fix gradient map generation for a single stop.

1.8.13 (2019-04-05)

  • fix engine_data unknown tag format;

  • fix compose for extra alpha channels;

  • workaround for pillow 6.0.0 bug.

1.8.12 (2019-03-25)

  • add apply_icc option in pil io.

1.8.11 (2019-03-14)

  • introduce terminology module;

  • reduce memory use in read;

  • add main testing.

1.8.10 (2019-02-27)

  • fix PSB extn key size bug.

1.8.9 (2019-02-21)

  • documentation updates;

  • introduce Artboard class.

1.8.8 (2019-02-20)

  • revert package name to psd_tools;

  • prepare merging to the main repo.

1.8.7 (2019-02-15)

  • minor bugfix.

1.8.6 (2019-02-14)

  • change _psd pointer in PSDImage;

  • add version property;

  • support fill effects in composer.

1.8.5 (2019-02-05)

  • change tagged block/image resource singleton accessor in user API;

  • add documentation on iterator order;

  • fix export setting 1 big key config;

  • fix computer info big key config.

1.8.3 (2019-02-01)

  • add channel size checking in topil;

  • add mlst metadata decoding;

  • fix key collision issue in descriptor;

  • performance improvement for packbit encoding/decoding;

  • drop cython dependency in travis config;

  • implement thumbnail, is_group, and parent methods in PSDImage.

1.8.0 (2019-01-24)

  • major API changes;

  • package name changed to psd_tools2;

  • completely rewritten decoding subpackage psd_tools2.psd;

  • improved composer functionality;

  • file write support;

  • drop cython compression module and makes the package pure-python;

  • drop pymaging support.

1.7.30 (2019-01-15)

  • composer alpha blending fix;

  • documentation fix.

1.7.28 (2019-01-09)

  • support cinf tagged block.

1.7.27 (2018-12-06)

  • add missing extra image resource block signatures.

1.7.26 (2018-12-03)

  • move psd_tools tests under tests/psd_tools.

1.7.25 (2018-11-27)

  • fix alpha channel visibility of composed image.

1.7.24 (2018-11-21)

  • fix unit rectangle drawing size.

1.7.23 (2018-11-20)

  • fix ignored visibility in bbox calculation.

1.7.22 (2018-10-12)

  • drop py34 support;

  • fix tobytes deprecation warning.

1.7.21 (2018-10-10)

  • fix gradient descriptor bug.

1.7.20 (2018-10-09)

  • fix coloroverlay bug;

  • fix gradient angle bug;

  • fix curves decoder bug.

1.7.19 (2018-10-02)

  • fix descriptor decoder.

1.7.18 (2018-09-26)

  • add shape rendering in compose();

  • add grayscale support.

1.7.17 (2018-09-21)

  • fix has_pixel() condition.

1.7.16 (2018-08-29)

  • fix fill opacity in compose();

  • workaround for broken PrintFlags.

1.7.15 (2018-08-28)

  • fix color overlay issue in compose().

1.7.14 (2018-08-24)

  • fix verbose arg for python 3.7 compatibility.

1.7.13 (2018-08-10)

  • fix has_pixel() for partial channels;

  • support color overlay in compose().

1.7.12 (2018-06-25)

  • fix mask rendering in compose (Thanks @andrey-hider and @nkato).

1.7.11 (2018-06-11)

  • unicode bugfixes.

1.7.10 (2018-06-06)

  • fix descriptor decoding errors;

  • minor bugfixes.

1.7.9 (2018-06-05)

  • fix UnicodeError in exif;

  • workaround for irregular descriptor name;

  • add undocumented extn tagged block decoding;

  • move duplicated icc module to subpackage;

  • support PIL rendering with extra alpha channels.

1.7.8 (2018-05-29)

  • update documentation;

  • fix PEP8 compliance;

  • rename merge_layers to compose.

1.7.7 (2018-05-02)

  • fix white background issue in as_PIL().

1.7.6 (2018-04-27)

  • add quality testing;

  • fix disabled mask.

1.7.5 (2018-04-25)

  • fix has_mask() condition;

  • add mask composition in merge_layers();

  • fix mask display.

1.7.4 (2018-03-06)

  • fix infinity loop in print_tree().

1.7.3 (2018-02-27)

  • add vector origination API;

  • fix shape and vector mask identification;

  • change enum name conversion;

  • update docs.

1.7.2 (2018-02-14)

  • add adjustments API;

  • add mask API;

  • bugfix for tagged_blocks decoders.

1.7.1 (2018-02-08)

  • add mask user API;

  • add layer coordinate user API;

  • add vector mask and vector stroke API;

  • cleanup user API;

  • add automatic descriptor conversion.

1.7.0 (2018-01-25)

  • cleanup user API organization;

  • remove json encoder api;

  • make cli a package main.

1.6.7 (2018-01-17)

  • workaround for anaconda 2.7 pillow;

  • bbox existence checkf.

1.6.6 (2018-01-10)

  • experimental clipping support in merge_layer();

  • revert as_PIL() in AdjustmentLayer.

1.6.5 (2017-12-22)

  • Small fix for erroneous unicode path name

1.6.4 (2017-12-20)

  • Add all_layers() method;

  • Add _image_resource_blocks property;

  • Add thumbnail() method.

1.6.3 (2017-09-27)

  • documentation updates;

  • github repository renamed to psd-tools2;

  • AdjustmentLayer fix.

1.6.2 (2017-09-13)

  • layer class structure reorganization;

  • add Effects API;

  • add TypeLayer API methods.

1.6 (2017-09-08)

  • PSDImage user API update;

  • user API adds distinct layer types;

  • Sphinx documentation.

1.5 (2017-07-13)

  • implemented many decodings of image resources and tagged blocks;

  • implemented EngineData text information;

  • user API for getting mask and patterns;

  • user API to calculate bbox for shape layers;

1.4 (2017-01-02)

  • Fixed reading of layer mask data (thanks Evgeny Kopylov);

  • Python 2.6 support is dropped;

  • Python 3.6 support is added (thanks Leendert Brouwer);

  • extension is rebuilt with Cython 0.25.2.

1.3 (2016-01-25)

  • fixed references decoding (thanks Josh Drake);

  • fixed PIL support for CMYK files (thanks Michael Wu);

  • optional C extension is rebuilt with Cython 0.23.4;

  • Python 3.2 support is dropped; the package still works in Python 3.2, but the compatibility is no longer checked by tests, and so it can break in future.

  • declare Python 3.5 as supported.

1.2 (2015-01-27)

  • implemented extraction of embedded files (embedded smart objects) - thanks Volker Braun;

  • optional C extension is rebuilt with Cython 0.21.2.

  • hg mirror on bitbucket is dropped, sorry!

1.1 (2014-11-17)

  • improved METADATA_SETTING decoding (thanks Evgeny Kopylov);

  • layer comps decoding (thanks Evgeny Kopylov);

  • improved smart objects decoding (thanks Joey Gentry);

  • user API for getting layer transforms and placed layer size (thanks Joey Gentry);

  • IPython import is deferred to speedup psd-tools.py command-line utility;

  • _RootGroup.__repr__ is fixed;

  • warning message building is more robust;

  • optional C extension is rebuilt with Cython 0.21.1.

1.0 (2014-07-24)

  • Fixed reading of images with layer masks (thanks Evgeny Kopylov);

  • improved mask data decoding (thanks Evgeny Kopylov);

  • fixed 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.15.tar.gz (121.9 kB view details)

Uploaded Source

Built Distributions

psd_tools-1.9.15-cp38-cp38-win_amd64.whl (207.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

psd_tools-1.9.15-cp38-cp38-manylinux2014_x86_64.whl (584.3 kB view details)

Uploaded CPython 3.8

psd_tools-1.9.15-cp38-cp38-manylinux2010_x86_64.whl (543.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8

psd_tools-1.9.15-cp38-cp38-macosx_10_14_x86_64.whl (207.2 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

psd_tools-1.9.15-cp37-cp37m-win_amd64.whl (206.0 kB view details)

Uploaded CPython 3.7m Windows x86-64

psd_tools-1.9.15-cp37-cp37m-manylinux2014_x86_64.whl (538.8 kB view details)

Uploaded CPython 3.7m

psd_tools-1.9.15-cp37-cp37m-manylinux2010_x86_64.whl (497.2 kB view details)

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

psd_tools-1.9.15-cp37-cp37m-manylinux1_x86_64.whl (455.1 kB view details)

Uploaded CPython 3.7m

psd_tools-1.9.15-cp37-cp37m-macosx_10_14_x86_64.whl (208.1 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

psd_tools-1.9.15-cp36-cp36m-win_amd64.whl (206.0 kB view details)

Uploaded CPython 3.6m Windows x86-64

psd_tools-1.9.15-cp36-cp36m-manylinux2014_x86_64.whl (539.9 kB view details)

Uploaded CPython 3.6m

psd_tools-1.9.15-cp36-cp36m-manylinux2010_x86_64.whl (497.5 kB view details)

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

psd_tools-1.9.15-cp36-cp36m-manylinux1_x86_64.whl (454.7 kB view details)

Uploaded CPython 3.6m

psd_tools-1.9.15-cp36-cp36m-macosx_10_14_x86_64.whl (209.6 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

psd_tools-1.9.15-cp35-cp35m-win_amd64.whl (197.1 kB view details)

Uploaded CPython 3.5m Windows x86-64

psd_tools-1.9.15-cp35-cp35m-manylinux2014_x86_64.whl (532.2 kB view details)

Uploaded CPython 3.5m

psd_tools-1.9.15-cp35-cp35m-manylinux2010_x86_64.whl (490.7 kB view details)

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

psd_tools-1.9.15-cp35-cp35m-manylinux1_x86_64.whl (448.7 kB view details)

Uploaded CPython 3.5m

psd_tools-1.9.15-cp35-cp35m-macosx_10_14_x86_64.whl (207.4 kB view details)

Uploaded CPython 3.5m macOS 10.14+ x86-64

psd_tools-1.9.15-cp27-cp27mu-manylinux2010_x86_64.whl (457.5 kB view details)

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

psd_tools-1.9.15-cp27-cp27mu-manylinux1_x86_64.whl (428.2 kB view details)

Uploaded CPython 2.7mu

psd_tools-1.9.15-cp27-cp27m-manylinux2010_x86_64.whl (457.5 kB view details)

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

psd_tools-1.9.15-cp27-cp27m-manylinux1_x86_64.whl (428.2 kB view details)

Uploaded CPython 2.7m

psd_tools-1.9.15-cp27-cp27m-macosx_10_14_x86_64.whl (207.7 kB view details)

Uploaded CPython 2.7m macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: psd-tools-1.9.15.tar.gz
  • Upload date:
  • Size: 121.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.3

File hashes

Hashes for psd-tools-1.9.15.tar.gz
Algorithm Hash digest
SHA256 23b545d91c784fcaf27fbf4c69abe21ac1ea10d25b5b8c61dcd8f0e03ccff786
MD5 f4c3a2ce0baae7616f94255c198274a4
BLAKE2b-256 b9b22855bb23ca48a4a36259476c9cac9d04ae54247311094d931c759c9dee27

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.15-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 207.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.3

File hashes

Hashes for psd_tools-1.9.15-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1432c98e7ebf6330a9dd7de6b31607c3a3caa3b244121ba9002960061e66549d
MD5 552d1592f2e794e1431ecb7c8c4e20d4
BLAKE2b-256 fc8e0ab6edadca4aaab496ae1b9cf74c77c9b9d7318c543307f78fdbb7543cd0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.15-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 584.3 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.3

File hashes

Hashes for psd_tools-1.9.15-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35f7f99e6ea1ea6aa707b40f0e4d1b1b5f1c90147d73c19d1d7d72db0f8c952b
MD5 75f12635cd7600c9b68d50cb7386094b
BLAKE2b-256 716ca8cd75887730a0f34db7b103375017215f638a968ed9e4d94d888ca621ce

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.15-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 543.2 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.3

File hashes

Hashes for psd_tools-1.9.15-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a5d7361abc9b176ebd951bbe67654b769f1851b2afb33bed18132e9ae7a8e5f2
MD5 b7c6a913b7ca2318f440fe01e26c1875
BLAKE2b-256 18731e1d3d99a712623de312fc4fee34a2a269d1874587e8b0da7a9e37b2d139

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.15-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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.3

File hashes

Hashes for psd_tools-1.9.15-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 becb61592246dad93f296ccf06357ffb09942ff08884d9aaab189fbff138c88a
MD5 876b845582e55d3e220bbc0d24c4fe7a
BLAKE2b-256 97ca0fd4612ecc84d7973b1f5d9bf86c6fdaa86b8e780cd17b2b417c482c56e6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.15-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 207.2 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.3

File hashes

Hashes for psd_tools-1.9.15-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 c3b81038d4b7dacb2af05aa0104575e07ea1b8577a8002329cbbe90fe991992c
MD5 6ef72cc63895c9303d04dd8a40aca443
BLAKE2b-256 16071195ebca5b5fd8199bc973f71666b25ecf0501e62042c97c07576e9ef747

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.15-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 206.0 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.8

File hashes

Hashes for psd_tools-1.9.15-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 411de6a3b00c40db0a3d1aa4a957ba81ba99b51e075d6fc3930d28fd3cc2bb19
MD5 feef691b5b6d70ebbbf062ffa456c7eb
BLAKE2b-256 43c0d2247f8bb1d35b1f00c3f8bb0a546b985ef4e31c54a02a5c920152f75ae7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.15-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 538.8 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.8

File hashes

Hashes for psd_tools-1.9.15-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 671204b64054ef172d252cafa1ebcdf5cc8fc10bb5982d5e0c1623385183b247
MD5 7c6740841c809b4b39c6f39b1d36375c
BLAKE2b-256 e2aee12fd072149e22a44e690041f7804d560d1e9e454137663b09319f5915d1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.15-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 497.2 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.8

File hashes

Hashes for psd_tools-1.9.15-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1b06fa35ffe5a35d714fee7c8f5301b20a66c7af3953cb43f2d291036f9a4fa4
MD5 00a6f35f320c96e46cf23bfb17f1c41e
BLAKE2b-256 8bf9a4b39b45b5d3956ed9c8b9ec3a394d6cf6e2e79fb37a31495c2416ff9d6b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.15-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 455.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.8

File hashes

Hashes for psd_tools-1.9.15-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 623953cfcbd7de98978af4e93218dd08f9c55e35e6a084020205347a97088c60
MD5 45c6c4c6247379d3725fdea29dc61b21
BLAKE2b-256 86b4c0cc30cda66e38388baba64918d6707bdf0f15e1a83532ac4c7cb47e79ae

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.15-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 208.1 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.8

File hashes

Hashes for psd_tools-1.9.15-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 126255bc2c90bb70bc8f31290f59b1536e524dc243d75b80f39477071b5ce837
MD5 9e878b853d4e3549bed438f9a6e32e04
BLAKE2b-256 04db32bcdb759229faa11c72235fed802ddb1c0e9c278e49e066f716af71be2d

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for psd_tools-1.9.15-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b59cd51715b03102560199120565b74b12e708e01f6bb0cb8c8142ab8d2da866
MD5 ba34d88c2476da1dfa32691944b72639
BLAKE2b-256 0361279c64e6da2de30479dfca22001bf5f11cec50468d98914842d25e11002e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.15-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 539.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.11

File hashes

Hashes for psd_tools-1.9.15-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4183b5ba4498a207c5c4fbcdefa63e43dad57130f55242b364f5e2f8c5f63984
MD5 08b13f45b124aeb570b431146d153985
BLAKE2b-256 869cd803f7aab3f164cd947eb153240088f835b17c814a5b7a15524ee386952c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.15-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 497.5 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.11

File hashes

Hashes for psd_tools-1.9.15-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 82c5edc105e274ea32ee787719dbda1251d908ff0187208ce85b6b5df6b7fd55
MD5 7b24821556ccdd07d131618adcda73b6
BLAKE2b-256 e1aa2b1fe51ad4dc3d46b8b15c22b7f63de2d8638687f7c00d1c1fd5620a16f6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.15-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 454.7 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.11

File hashes

Hashes for psd_tools-1.9.15-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 538bf7936e08456fd6050553af00d79e20ec7f7e898a10e94577e6e367ccb91e
MD5 5229603e5798810878d3e68782743648
BLAKE2b-256 2e310b22cb250f1a2e1ff99085c6091fab8c7ed1409739b0e6a912149d069e5e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.15-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 209.6 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.11

File hashes

Hashes for psd_tools-1.9.15-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 d29c8ba7bf49d5a6de3166e0842776d5796459f8ccb298ca22a5ccd33da73f63
MD5 17fa12eaedc94439cb224e2b9413bd53
BLAKE2b-256 e3e05ec1d2b79ef57129cb88ed1bdc43a5153cfa2c682136d22147ad5439d346

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.15-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 197.1 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.24.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.5.4

File hashes

Hashes for psd_tools-1.9.15-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 c5108175efa67f9fb635c612a9ad57d80b390ef7fb59acdb116e3712709b9317
MD5 e476469133db2e41b61c360bca0492c4
BLAKE2b-256 b313b6e4863e088e6c073a922698d3d75775c9b45d73fe4a1c5c35b5a6d6b073

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.15-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 532.2 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.5.9

File hashes

Hashes for psd_tools-1.9.15-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ef37451d667cea297d846ca54354d2a06eecc7cb31e3c0bfd13aeed1e465027
MD5 6530524b684dae8da66d4bc6af3a9bdc
BLAKE2b-256 c7c525a62815ebb68d92496f51a34b7aa97b671cf02e32888715306e359a8bc8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.15-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 490.7 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.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.5.9

File hashes

Hashes for psd_tools-1.9.15-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c163c38c229edfdb52664736e06fa279a8bc8f95fc88867610bd91879082c0cf
MD5 868b90880cbada6b139177ce0e1ee693
BLAKE2b-256 701d9d3fc125e5f984cdc901ec558b3168e2520d3d1908ccae9ccdfccc7227ab

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.15-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 448.7 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.5.9

File hashes

Hashes for psd_tools-1.9.15-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6d576434af5df74954fdb6257f749b2447f137b491ab10d73ed62bfb763b44fe
MD5 aeb71214802ae49c0a1591bc2405229f
BLAKE2b-256 5750eea4e5fd1237ed6863c101763cef41fbc3650b16396e8e9b38f86278c061

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.15-cp35-cp35m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 207.4 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.24.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.5.9

File hashes

Hashes for psd_tools-1.9.15-cp35-cp35m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 b4887b705512ea3959f688a5145b0defe6d9b7d27d7d4804b4aea284883088dd
MD5 0d45ee075a8229c21daf99453235a4f3
BLAKE2b-256 e42d53f893eb231f6c823146e66b6950e226c3b20cfa60e50af5c349f8aeb780

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.15-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 457.5 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.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/2.7.18

File hashes

Hashes for psd_tools-1.9.15-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 66f9597be6d294654fc13a2729d59471294829d63c677bafed20e0a775978980
MD5 944bfb893d529c9964fc7bc7a6d8323a
BLAKE2b-256 db20f5cbee33c4c88065844bae58eb855355e78fba5739c436ff964e2ed75ff1

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for psd_tools-1.9.15-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 921c4e33738485fe6117108f6a0346b6227d982b9b68122e2efc32356982f266
MD5 946140b2c96c1fa4d8bfa3ad21e5ea96
BLAKE2b-256 9a6d24f46723e12ed8740a42b7cd3fc6260c3890c86acc89b8484ec86437a1eb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.15-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 457.5 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.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/2.7.18

File hashes

Hashes for psd_tools-1.9.15-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c38b1aa75a3cad66b91cef5cffab4bce3e6e0d3536cc9313caa65f4b43227f41
MD5 75dc5554c843803fd42d1b19fca8a6bf
BLAKE2b-256 97b6e9a7954602c33ff3724e1510b7aa5009de4d8830fbe3d8852a16b23ec299

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for psd_tools-1.9.15-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c5f9cd4fcf96e3cd1f0d9b18e2672e8f838a1fc8c379177a21cdb6d0212583a7
MD5 122d8c261f12a1bfd4f0e8fc386c0733
BLAKE2b-256 fa267876dcc64cc72f39702a27d8ca20caaa758505c3a3f1e1721378eab2fefe

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: psd_tools-1.9.15-cp27-cp27m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 207.7 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.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/2.7.18

File hashes

Hashes for psd_tools-1.9.15-cp27-cp27m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 0044e4eb8bc659f9078f8e3d275f1e8cf78381693d4f04d26cae48ef7f76bd24
MD5 834a0e9926a706ac543ffa22b5bc0c93
BLAKE2b-256 747d8edddd399662290bd67c067a139588c40bb0e3f3bdcc0acf12ffb5f00e08

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