ShazamIO icon indicating copy to clipboard operation
ShazamIO copied to clipboard

🎵 Is a free asynchronous library from reverse engineered Shazam API written in Python 3.8+ with asyncio and aiohttp.

Results 20 ShazamIO issues
Sort by recently updated
recently updated
newest added

I *just* started using the library and I've already hit several match misses. Here is one of the files that's not working (for example): Here's a link to the file...

Hello. I want to build a shazam bot for audio calling system. I receive audio frames in real time, and want to auto shazam it. As soon as a track...

Hi there, thanks a lot for your time. I'm pretty new to this repo, so I have a question regarding the genre. I'm not sure if it's possible for this...

Serialize.Youtube URL or serialized_youtube.uri doesn't work anymore. I don't even see the dict or info in the raw json.

Hi, #105 does fix the previous issue, which is: #104. But, now the function returns playlist, not tracks. How can we get tracks with that function?

Hello, it seems after the update from `recognize_song` to `recognize`, you can no longer pass an AudioSegment as an argument. Is there any workaround for this? I used AudioSegment to...

question

Is there any recommended approach for when we need to retrieve a big list of shazams? I'm working with a list of more than 500 files, and I'm using the...

`async def main():` ` shazam = Shazam()` ` top_five_track_from_amsterdam = await shazam.top_country_tracks('NL', 5)` ` for track in top_five_track_from_amsterdam['tracks']:` ` serialized = Serialize.track(data=track)` ` print(serialized.title)` `loop = asyncio.get_event_loop()` `loop.run_until_complete(main())` **Error:** `...