Open Source Spotify Client
Project description
Librespot-Python
Open Source Spotify Client
About The Project
This project was developed to make the music streaming service Spotify available on any device.
Attention!
This repository has been completely rewritten from the transplant.
There may be some functions that are not implemented yet.
If so, please feel free to open an issue.
Note
It is still in the idea stage, so there is a possibility of unintended behavior
or major specification changes.
We DO NOT encourage piracy and DO NOT support any form of downloader/recorder designed with the help of this repository and in general anything that goes against the Spotify ToS.
For other guidelines, please see CODE_OF_CONDUCT.md.
Getting Started
Prerequisites
Installation
Stable Version
pip install librespot
Snapshot Version *Recommended
pip install git+https://github.com/kokarare1212/librespot-python
Usage
Use Zeroconf for Login
from librespot.zeroconf import ZeroconfServer
zeroconf = ZeroconfServer.Builder().create()
Get Spotify's OAuth token
from librespot.core import Session
session = Session.Builder() \
.user_pass("Username", "Password") \
.create()
access_token = session.tokens().get("playlist-read")
Get Music Stream
*Currently, music streaming is supported, but it may cause unintended behavior.
from librespot.core import Session
from librespot.metadata import TrackId
from librespot.audio.decoders import AudioQuality, VorbisOnlyAudioQuality
session = Session.Builder() \
.user_pass("Username", "Password") \
.create()
track_id = TrackId.from_uri("spotify:track:xxxxxxxxxxxxxxxxxxxxxx")
stream = session.content_feeder().load(track_id, VorbisOnlyAudioQuality(AudioQuality.VERY_HIGH), False, None)
# stream.input_stream.stream().read() to get one byte of the music stream.
Other uses are examples or read this document for detailed specifications.
Debug
To display the debug information, you need to inject the following code at the top of the code.
import logging
logging.basicConfig(level=logging.DEBUG)
Contributing
Pull requests are welcome.
License
Distributed under the Apache-2.0 License. See LICENSE.txt for more information.
Related Projects
- Librespot (Concept)
- Librespot-Java (Core)
Special thanks
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for librespot-0.0.6-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 640c31bcc307c11d865d777436dd7959fefe454e9b34fc64f665145797aaeeff |
|
MD5 | ed03156bdea676024ab06b9542c0fbda |
|
BLAKE2b-256 | 28a05ae30ce7cceeafab9e50052350058560a401c63ecc9a9a73d45c3a4a5228 |