Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/misternate/speck
Speck is a little Spotify Mac menubar app that makes it easy to see what's playing at a glance, navigate your playlist, and like songs.
https://github.com/misternate/speck
python spotify spotify-api
Last synced: 26 days ago
JSON representation
Speck is a little Spotify Mac menubar app that makes it easy to see what's playing at a glance, navigate your playlist, and like songs.
- Host: GitHub
- URL: https://github.com/misternate/speck
- Owner: misternate
- License: mit
- Created: 2020-05-10T17:43:55.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-07-09T18:44:10.000Z (5 months ago)
- Last Synced: 2024-08-03T09:03:45.222Z (4 months ago)
- Topics: python, spotify, spotify-api
- Language: Python
- Homepage:
- Size: 164 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- Mac-Menubar-Megalist - Speck
README
Speck
Speck is a little Spotify Mac menubar app that makes it easy to see what's playing at a glance, navigate your playlist, like songs, and find track information.
![Speck demo](https://user-images.githubusercontent.com/1675353/104856939-d71c4100-58da-11eb-8fd2-2246db055fab.gif)
# Launching the app
There's very little that's needed to get Speck running. To build locally:## Install dependencies
```bash
$ pip install -r requirements.txt
```## Add your Spotify credentials
Credentials and configs are stored in `speck.ini`. If you do not have credentials, you can obtain them from the [Spotify Developer Dashboard](https://developer.spotify.com).
```python
client_id = spotify_client_id
client_secret = spotify_client_secret
username = spotify_username
```
# Build standalone app (optional)
Note: You must add your secrets to `speck.ini`. Your .app will be built to `dist` in your repo directory.
```bash
$ python build_app.py py2app
```### License
Speck is provided under the [MIT License](https://github.com/misternate/speck/blob/master/LICENSE).