spotify
A Nim wrapper for the Spotify Web API
Summary
| Latest Version | 0.1.1 |
|---|---|
| License | Apache License 2.0 |
| CI Status | Failing |
| Downloads | 0 |
| Last Indexed | 2026-08-03 05:07 |
Tags
Authors
- Yoshihiro Tanaka
Installation
nimble install spotify
choosenim install spotify
git clone https://github.com/CORDEA/spotify
OS Compatibility
| Platform | Linux | macOS | Windows | FreeBSD | OpenBSD | NetBSD | Android | iOS | WASM | Embedded |
|---|---|---|---|---|---|---|---|---|---|---|
| spotify | ✓ | ✓ | ✓ | - | - | - | - | - | - | - |
Dependencies
| Package | Version | Optional |
|---|---|---|
| nim >= | 0.18.0 | No |
| oauth | - | No |
Source
| Repository | https://github.com/CORDEA/spotify |
|---|---|
| Homepage | https://github.com/CORDEA/spotify |
| Registry Source | nimble_official |
README
spotify
A Nim wrapper for the Spotify Web API.
Usage
This package supports authorization code grant and client credentials grant.
let
token = newHttpClient().authorizationCodeGrant(
"SPOTIFY_ID",
"SPOTIFY_SECRET",
@[SCOPES]
)
client = newSpotifyClient(token)
Or in your own way...
let client = newSpotifyClient(
newSpotifyToken("ACCESS_TOKEN", "REFRESH_TOKEN (optional)", "EXPIRES_IN (optional)"))
And
let user = client.getCurrentUser()
if user.isSuccess:
echo user.data.id
else:
echo user.error.message
License
Copyright 2018 Yoshihiro Tanaka
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.