Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dlrudie/Snip
Snip will get the artist, track, and album information from Spotify and iTunes, and save the information to a text file.
https://github.com/dlrudie/Snip
Last synced: 13 days ago
JSON representation
Snip will get the artist, track, and album information from Spotify and iTunes, and save the information to a text file.
- Host: GitHub
- URL: https://github.com/dlrudie/Snip
- Owner: dlrudie
- License: gpl-3.0
- Created: 2013-01-17T09:08:15.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2022-10-18T19:44:48.000Z (about 2 years ago)
- Last Synced: 2024-10-16T11:06:50.565Z (28 days ago)
- Language: C#
- Homepage:
- Size: 802 KB
- Stars: 1,081
- Watchers: 47
- Forks: 172
- Open Issues: 34
-
Metadata Files:
- Readme: README-DEVS.md
- Changelog: CHANGES.md
- License: LICENSE.md
Awesome Lists containing this project
README
To build Snip you'll need to create your own ApplicationKeys.cs file.
The contents of the file should be as follows.
```
namespace Winter
{
public static class ApplicationKeys
{
public static string SpotifyClientId = "";
public static string SpotifyClientSecret = "";
public static string Spotify = Convert.ToBase64String(Encoding.UTF8.GetBytes(string.Format("{0}:{1}", SpotifyClientId, SpotifyClientSecret)));
}
}
```