spotapi 1.2.4__tar.gz → 1.2.7__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. {spotapi-1.2.4/spotapi.egg-info → spotapi-1.2.7}/PKG-INFO +1 -1
  2. {spotapi-1.2.4 → spotapi-1.2.7}/setup.py +3 -1
  3. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/client.py +1 -1
  4. {spotapi-1.2.4 → spotapi-1.2.7/spotapi.egg-info}/PKG-INFO +1 -1
  5. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi.egg-info/requires.txt +2 -0
  6. {spotapi-1.2.4 → spotapi-1.2.7}/LICENSE +0 -0
  7. {spotapi-1.2.4 → spotapi-1.2.7}/README.md +0 -0
  8. {spotapi-1.2.4 → spotapi-1.2.7}/setup.cfg +0 -0
  9. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/__init__.py +0 -0
  10. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/_tests/__init__.py +0 -0
  11. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/_tests/annotations_test.py +0 -0
  12. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/album.py +0 -0
  13. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/artist.py +0 -0
  14. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/creator.py +0 -0
  15. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/exceptions/__init__.py +0 -0
  16. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/exceptions/errors.py +0 -0
  17. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/family.py +0 -0
  18. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/http/__init__.py +0 -0
  19. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/http/data.py +0 -0
  20. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/http/request.py +0 -0
  21. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/login.py +0 -0
  22. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/password.py +0 -0
  23. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/player.py +0 -0
  24. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/playlist.py +0 -0
  25. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/podcast.py +0 -0
  26. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/public.py +0 -0
  27. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/solvers/__init__.py +0 -0
  28. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/solvers/capmonster.py +0 -0
  29. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/solvers/capsolver.py +0 -0
  30. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/song.py +0 -0
  31. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/status.py +0 -0
  32. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/types/__init__.py +0 -0
  33. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/types/alias.py +0 -0
  34. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/types/annotations.py +0 -0
  35. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/types/data.py +0 -0
  36. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/types/interfaces.py +0 -0
  37. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/user.py +0 -0
  38. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/utils/__init__.py +0 -0
  39. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/utils/logger.py +0 -0
  40. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/utils/saver.py +0 -0
  41. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/utils/strings.py +0 -0
  42. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi/websocket.py +0 -0
  43. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi.egg-info/SOURCES.txt +0 -0
  44. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi.egg-info/dependency_links.txt +0 -0
  45. {spotapi-1.2.4 → spotapi-1.2.7}/spotapi.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: spotapi
3
- Version: 1.2.4
3
+ Version: 1.2.7
4
4
  Summary: A sleek API wrapper for Spotify's private API
5
5
  Home-page: UNKNOWN
6
6
  Author: Aran
@@ -9,6 +9,8 @@ __install_require__ = [
9
9
  "tls_client",
10
10
  "typing_extensions",
11
11
  "validators",
12
+ "pyotp",
13
+ "beautifulsoup4",
12
14
  ]
13
15
  __extras__ = {
14
16
  "websocket": ["websockets"],
@@ -55,5 +57,5 @@ setup(
55
57
  ],
56
58
  long_description=long_description,
57
59
  long_description_content_type="text/markdown",
58
- version="1.2.4",
60
+ version="1.2.7",
59
61
  )
@@ -239,7 +239,7 @@ class BaseClient:
239
239
  str_mapping, hash_mapping = extract_mappings(str(self.raw_hashes))
240
240
  urls = map(
241
241
  lambda s: f"https://open.spotifycdn.com/cdn/build/web-player/{s}",
242
- combine_chunks(str_mapping, hash_mapping),
242
+ combine_chunks(hash_mapping, str_mapping),
243
243
  )
244
244
 
245
245
  for url in urls:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: spotapi
3
- Version: 1.2.4
3
+ Version: 1.2.7
4
4
  Summary: A sleek API wrapper for Spotify's private API
5
5
  Home-page: UNKNOWN
6
6
  Author: Aran
@@ -5,6 +5,8 @@ readerwriterlock
5
5
  tls_client
6
6
  typing_extensions
7
7
  validators
8
+ pyotp
9
+ beautifulsoup4
8
10
 
9
11
  [pymongo]
10
12
  pymongo
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes