Metadata-Version: 2.1
Name: spyotipy
Version: 0.1a0
Summary: A Python wrapper for the Spotify API
Home-page: https://github.com/mohamed040406/spyotipy
Author: mohamed040406
License: MIT
Project-URL: Documentation, https://spyotipy.readthedocs.io/en/latest/
Project-URL: Issue tracker, https://github.com/mohamed040406/spyotipy/issues
Description: Spyotipy
        ==========
        
        An easy to use API wrapper for Spotify written in Python.
        
        Installing
        ----------
        
        **Python 3.7 or higher is required**
        
        .. code:: sh
        
            # Linux/macOS
            python3 -m pip install -U spyotipy
        
            # Windows
            py -3 -m pip install -U spyotipy
        
        
        Quick Example
        --------------
        
        .. code:: py
        
            import asyncio
        
            from spotify import Client
        
        
            async def main():
                async with Client("id", "secret") as c:
                    a = await c.get_album("id")
                    print(a)
        
                    async for track in a:
                        print(track)
        
        
            if __name__ == "__main__":
                loop = asyncio.get_event_loop()
                loop.run_until_complete(main())
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.7
Description-Content-Type: text/x-rst
Provides-Extra: docs
