Metadata-Version: 1.1
Name: ampache
Version: 1.0.3
Summary: Python library for Amapche XML-API
Home-page: https://github.com/lachlan-00/python3-ampache
Author: Lachlan de Waard (lachlan-00)
Author-email: lachlan.00@gmail.com
License: GPL-3.0
Download-URL: https://github.com/lachlan-00/python3-ampache
Description: AMPACHE LIBRARY FOR PYTHON3
        ===========================
        
        INFO
        ====
        
        This library is starting to take shape and is able to connect to Ampache and return the xml or binary data received from the queries.
        
        INSTALL
        =======
        
        You can now install from pip directly::
        
            pip3 install -U ampache
        
        EXAMPLES
        ========
        
        Practical example::
        
            import time
            import ampache
        
            # user variables
            ampache_url = 'https://music.server'
            my_api_key  = 'mysuperapikey'
            user        = 'myusername'
        
            # processed details
            encrypted_key = ampache.encrypt_string(my_api_key, user)
            ampache_api   = ampache.handshake(ampache_url, encrypted_key)
        
            if ampache_api:
                # Scrobble a music track to your ampache server
                Process(target=ampache.scrobble,
                        args=(int(ampache_url, ampache_api, 'Hear.Life.Spoken', 'Sub Atari Knives', 'Unearthed',
                        '', '', ''time.time()))).start()
        
        LINKS
        =====
        
        `<https://github.com/lachlan-00/python3-ampache/>`_
        
        `<https://pypi.org/project/ampache/>`_
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries :: PHP Classes
