Metadata-Version: 2.1
Name: photoshop-connection
Version: 0.1.2
Summary: Python package for Photoshop Connection.
Home-page: https://github.com/kyamagu/photoshop-connection
Author: Kota Yamaguchi
Author-email: KotaYamaguchi1984@gmail.com
License: UNKNOWN
Description: Photoshop connection
        ====================
        
        Python package to remotely execute ExtendScript_ in Adobe Photoshop.
        
        .. _ExtendScript: https://www.adobe.com/devnet/photoshop/scripting.html
        
        .. image:: https://travis-ci.org/kyamagu/photoshop-connection.svg?branch=master
            :target: https://travis-ci.org/kyamagu/photoshop-connection
            :alt: Build Status
        .. image:: https://readthedocs.org/projects/photoshop-connection/badge/?version=latest
            :target: https://photoshop-connection.readthedocs.io/en/latest/?badge=latest
            :alt: Documentation Status
        .. image:: https://codecov.io/gh/kyamagu/photoshop-connection/branch/master/graph/badge.svg
            :target: https://codecov.io/gh/kyamagu/photoshop-connection
        .. image:: https://img.shields.io/pypi/v/photoshop-connection?color=success
            :target: https://pypi.org/project/photoshop-connection/
            :alt: PyPI
        
        Prerequisites
        -------------
        
        Photoshop must be configured to accept remote connection.
        
        Open the plug-ins dialog from the `Preferences` > `Plug-ins...` menu in
        Photoshop, and check `Enable Remote Connections` option. Enter password to the
        given field, and click `OK` button and restart Photoshop.
        
        Photoshop must be launched and running for the package to work.
        
        Install
        -------
        
        .. code-block:: bash
            
            pip install photoshop-connection
        
        Usage
        -----
        
        Example:
        
        .. code-block:: python
        
            from photoshop import PhotoshopConnection
        
            with PhotoshopConnection(password='secret') as conn:
                conn.execute('alert("hello")')
                jpeg_binary = conn.get_document_thumbnail()
        
        Check out documentation_ for details.
        
        .. _documentation: https://photoshop-connection.readthedocs.io/en/latest/
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Multimedia :: Graphics
Provides-Extra: validate
Provides-Extra: pillow
