Metadata-Version: 2.1
Name: applescript
Version: 0.0.1
Summary: run applescript
Home-page: https://github.com/looking-for-a-job/applescript.py
License: UNKNOWN
Description: [![](https://img.shields.io/badge/OS-MacOS-blue.svg?longCache=True)]()
        [![](https://img.shields.io/pypi/pyversions/applescript.svg?longCache=True)](https://pypi.org/pypi/applescript/)
        
        ### Install
        ```bash
        $ [sudo] pip install applescript
        ```
        
        ### Examples
        ```python
        >>> import applescript
        >>> r = applescript.run('path/to/file.applescript')
        >>> r = applescript.run('return 1')
        
        >>> r.code
        0
        >>> r.out
        'hello world'
        >>> r.err
        ''
        ```
        
        `tell application "appname"`
        ```python
        >>> applescript.tell.app("Terminal",'do script "ls"')
        >>> applescript.tell.app("Terminal",'do script "ls"',background=True)
        ```
Keywords: applescript
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: MacOS X
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development
Description-Content-Type: text/markdown
