Metadata-Version: 2.1
Name: moretunes-apple
Version: 1.3.1rc11.dev5
Summary: fully featured python wrapper for the Apple Music API
Author-email: jcbirdwell <jcbirdwell@gmail.com>
License: MIT License
        
        Copyright (c) 2024 jcbirdwell
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: repository, https://github.com/jcbirdwell/mt_apple_music_api
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 3 - Alpha
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: cryptography
Requires-Dist: requests
Requires-Dist: pydantic
Requires-Dist: PyJWT

This is the Apple Music API submodule of the moretunes namespace package.

Moretunes is a namespace package that aims to eventually contain apis for all music streaming 
or otherwise music adjacent services, in a universal, pydantic-ly modeled format. Currently, 
the namespace includes moretunes-spotify, moretunes-apple, and moretunes-youtube, 
each representing their respective service.

Included sub-packages vary in their source and content, 
moretunes-spotify being the most basic of the three, primarily being an addon for the 
already excellent ``tekore`` library with model adaptations and functions for interfacing with
Spotify's web browser apis. moretunes-youtube uses a heavily adapted fork of ``YTMusicAPI``, offering 
more efficient and comprehensive data parsing, PEP8 compliant and moretunes compatible api format, and 
an emphasis on OAuth token authentication. moretunes-apple is a fully original codebase, the focus of which is 
apple documentation parsing and code generation scripts. The resulting package consists of two distinct partitions, 
a raw, fully-generated, pydantic-ly modeled core that mirrors apple's api and documentation 1:1 
and a statically written adapter to the universal moretunes format. 
