Metadata-Version: 2.1
Name: itunes
Version: 2020.12.3
Summary: iTunes.app (macOS)
Home-page: https://github.com/andrewp-as-is/itunes.py
License: Unlicense
Description: <!--
        https://readme42.com
        -->
        
        
        [![](https://img.shields.io/pypi/v/itunes.svg?maxAge=3600)](https://pypi.org/project/itunes/)
        [![](https://img.shields.io/badge/License-Unlicense-blue.svg?longCache=True)](https://unlicense.org/)
        
        ### Installation
        ```bash
        $ [sudo] pip install itunes
        ```
        
        #### Examples
        `vlc.tell(applescript)` - execute applescript `tell application "VLC" ...`
        ```python
        >>> itunes.tell('play')
        ```
        
        ```python
        >>> itunes.play()
        >>> itunes.pause()
        >>> itunes.stop()
        >>> itunes.next()
        >>> itunes.prev()
        ```
        
        playlists
        ```python
        >>> itunes.playlists.names()
        ["playlist1","playlist2"]
        
        >>> itunes.playlists.play("playlist1")
        ```
        
        play_track
        ```python
        >>> itunes.tracks.play("track_name","playlist")
        ```
        
        volume
        ```python
        >>> itunes.volume.change(10)
        >>> itunes.volume.get()
        10
        ```
        
        mute
        ```python
        >>> itunes.mute()
        >>> itunes.muted()
        True
        >>> itunes.unmute()
        ```
        
        
        process
        ```python
        >>> itunes.pid()
        7654
        >>> itunes.kill()
        ```
        
        <p align="center">
            <a href="https://readme42.com/">readme42.com</a>
        </p>
Keywords: itunes
Platform: UNKNOWN
Classifier: License :: Public Domain
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
