-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* All complex logic for song recognition has been moved to RUST (used pyo3). * recognize_song deprecated. * Added interface for custom HTTPClient. * Added the ability to use a proxy. * Added retry exponential. * Code refactoring. * The foundation has been laid to add logging to the project. * Added random device for recognize requests, previously there was only android.
- Loading branch information
Showing
17 changed files
with
1,315 additions
and
175 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
from .serializers import Serialize | ||
from .api import Shazam | ||
from .converter import Geo | ||
from .converter import GeoService | ||
from .enums import GenreMusic | ||
|
||
__all__ = ("Serialize", "Shazam", "Geo", "GenreMusic") | ||
__all__ = ("Serialize", "Shazam", "GeoService", "GenreMusic") |
Oops, something went wrong.