shazamio / ShazamIO

🎵 Is a free asynchronous library from reverse engineered Shazam API written in Python 3.8+ with asyncio and aiohttp.
MIT License
490 stars 69 forks source link

Artist Serialization doesn't work #75

Closed Lunascaped closed 11 months ago

Lunascaped commented 11 months ago

Hello, I'm trying to serialize artist info with this code import asyncio from shazamio import Shazam, Serialize

async def main(): shazam = Shazam() about_artist = await shazam.artist_about(293238693) serialized = Serialize.artist(about_artist) print(serialized)

asyncio.run(main())

However when I run this code I get this error: Error Text I think the parser might be out of date