spotapi 0.0.0__py3-none-any.whl
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.
- spotapi/__init__.py +17 -0
- spotapi/artist.py +139 -0
- spotapi/client.py +158 -0
- spotapi/creator.py +168 -0
- spotapi/data/__init__.py +2 -0
- spotapi/data/data.py +18 -0
- spotapi/data/interfaces.py +59 -0
- spotapi/exceptions/__init__.py +15 -0
- spotapi/exceptions/errors.py +68 -0
- spotapi/family.py +130 -0
- spotapi/login.py +260 -0
- spotapi/password.py +76 -0
- spotapi/playlist.py +332 -0
- spotapi/solvers/__init__.py +15 -0
- spotapi/solvers/capmonster.py +128 -0
- spotapi/solvers/capsolver.py +130 -0
- spotapi/song.py +234 -0
- spotapi/user.py +114 -0
- spotapi/websocket.py +89 -0
- spotapi-0.0.0.dist-info/LICENSE +674 -0
- spotapi-0.0.0.dist-info/METADATA +23 -0
- spotapi-0.0.0.dist-info/RECORD +24 -0
- spotapi-0.0.0.dist-info/WHEEL +5 -0
- spotapi-0.0.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: spotapi
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: A sleek API wrapper for Spotify's private API
|
|
5
|
+
Home-page: UNKNOWN
|
|
6
|
+
Author: Aran
|
|
7
|
+
License: UNKNOWN
|
|
8
|
+
Keywords: Spotify,API,Spotify API,Spotify Private API,Follow,Like,Creator,Music,Music API,Streaming,Music Data,Track,Playlist,Album,Artist,Music Search,Music Metadata,SpotAPI,Python Spotify Wrapper,Music Automation,Web Scraping,Python Music API,Spotify Integration,Spotify Playlist,Spotify Tracks
|
|
9
|
+
Platform: UNKNOWN
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
Requires-Dist: requests
|
|
12
|
+
Requires-Dist: colorama
|
|
13
|
+
Requires-Dist: Pillow
|
|
14
|
+
Requires-Dist: pymongo
|
|
15
|
+
Requires-Dist: readerwriterlock
|
|
16
|
+
Requires-Dist: redis
|
|
17
|
+
Requires-Dist: tls-client
|
|
18
|
+
Requires-Dist: typing-extensions
|
|
19
|
+
Requires-Dist: validators
|
|
20
|
+
Requires-Dist: websockets
|
|
21
|
+
|
|
22
|
+
UNKNOWN
|
|
23
|
+
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
spotapi/__init__.py,sha256=M9UDFXTKL96iS5yGyKB8OZgtxeBOiGt87kI5AdEbV8E,639
|
|
2
|
+
spotapi/artist.py,sha256=T2hIrrckrp5bg12ELQvxQ85DyD16zL2Qasu5-ObmYQs,4521
|
|
3
|
+
spotapi/client.py,sha256=37VvVzuX8vaw1gvqZVFdmtNzMl--3Cip7hD80lDrHgk,5735
|
|
4
|
+
spotapi/creator.py,sha256=8Q6zl16sgyh3X9wH9UyjdySfp3VRZo-jgAlrzw5cjjk,6030
|
|
5
|
+
spotapi/family.py,sha256=YsYRW3z_L9nqeAr0f4ycivuJAsJ0CpCU77BUuJB8W9Q,4348
|
|
6
|
+
spotapi/login.py,sha256=6bkK6WyAv3zpfpUck_gXBpAg8TuMTFCraGEt5fOIFMM,9017
|
|
7
|
+
spotapi/password.py,sha256=mOuyhMNeTjUPoZCkFuRb09WEJ_JuWUF4ygi4h-seXw8,2336
|
|
8
|
+
spotapi/playlist.py,sha256=bRXnQ3JlgnqQi8zVd1Lxc16rSB5tKM5mh9SerkHwtCA,11295
|
|
9
|
+
spotapi/song.py,sha256=4Q8_Gl-IK3MJtEQv73GMn-jhd1_Sqjk2q2WVWcseVyM,8232
|
|
10
|
+
spotapi/user.py,sha256=k49J5u_scoF53-ixrWwfbufDcrYyOpe-0IpmEnbA7x0,3586
|
|
11
|
+
spotapi/websocket.py,sha256=Hwv2qicQbHqhHhlZpXpFbqzjrHchqx7F9RhIDgGg-Q4,2951
|
|
12
|
+
spotapi/data/__init__.py,sha256=21L87-nxyGVJ59k1ghraCH4agQCgo2M5p6rJcje_zK0,98
|
|
13
|
+
spotapi/data/data.py,sha256=eXQJ0NaUkJtVYcwq4sLg4uIb-ns-4Cv4a6DkLpVRmPM,484
|
|
14
|
+
spotapi/data/interfaces.py,sha256=pItcyKorGlm0V5HmmzGRCcGrC-Kk3dRlFGfI6XHy5UA,1346
|
|
15
|
+
spotapi/exceptions/__init__.py,sha256=a5Nvvp_5kSlYNr6nqQJIvczmS7zdnb5v2snIqen_6Kw,275
|
|
16
|
+
spotapi/exceptions/errors.py,sha256=EuGejMfD86Y8tsKcYea0seHCIfCZXNulgrqWDzM3rWM,1134
|
|
17
|
+
spotapi/solvers/__init__.py,sha256=ZOpAKlD8yW7IkgoHzpvTd3519vzSMweC0WNVmoN-vP4,435
|
|
18
|
+
spotapi/solvers/capmonster.py,sha256=kpQlgleKLDSAR4MmZPHYPC9xkQYdUQF8PyE9iXSQ0KA,3865
|
|
19
|
+
spotapi/solvers/capsolver.py,sha256=IxDDHXvQw_iwGyKGU7nrarTX-MMSFYhsdRCMBJ3zBMY,3858
|
|
20
|
+
spotapi-0.0.0.dist-info/LICENSE,sha256=ctLwkzT4uH3e2UqDO6faBeUoDnegN8ojslH5bq5M9xk,35562
|
|
21
|
+
spotapi-0.0.0.dist-info/METADATA,sha256=sYq7Uxl8PTmONr9zKXtJUVN5yIFDo9hwEGqCDzBm0TE,759
|
|
22
|
+
spotapi-0.0.0.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
|
23
|
+
spotapi-0.0.0.dist-info/top_level.txt,sha256=if31FOzLjD7UEoIXvmT7lG08M9Wyz-ICujvJo6aeoHA,8
|
|
24
|
+
spotapi-0.0.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
spotapi
|