{"id":18633066,"url":"https://github.com/epimetheusmusicplayer/libepimetheuskotlin","last_synced_at":"2025-07-18T11:09:30.936Z","repository":{"id":114346335,"uuid":"151367296","full_name":"EpimetheusMusicPlayer/libepimetheusKotlin","owner":"EpimetheusMusicPlayer","description":"The open source Pandora Music library for Android.","archived":false,"fork":false,"pushed_at":"2019-08-11T09:16:08.000Z","size":191,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-05T07:06:15.090Z","etag":null,"topics":["api","library","pandora","pandora-client","pandora-music","pandora-radio","rest","rest-api"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/EpimetheusMusicPlayer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-10-03T05:55:10.000Z","updated_at":"2019-08-11T09:16:10.000Z","dependencies_parsed_at":"2023-03-13T13:08:52.334Z","dependency_job_id":null,"html_url":"https://github.com/EpimetheusMusicPlayer/libepimetheusKotlin","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/EpimetheusMusicPlayer/libepimetheusKotlin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EpimetheusMusicPlayer%2FlibepimetheusKotlin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EpimetheusMusicPlayer%2FlibepimetheusKotlin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EpimetheusMusicPlayer%2FlibepimetheusKotlin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EpimetheusMusicPlayer%2FlibepimetheusKotlin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EpimetheusMusicPlayer","download_url":"https://codeload.github.com/EpimetheusMusicPlayer/libepimetheusKotlin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EpimetheusMusicPlayer%2FlibepimetheusKotlin/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265746921,"owners_count":23821770,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","library","pandora","pandora-client","pandora-music","pandora-radio","rest","rest-api"],"created_at":"2024-11-07T05:14:16.637Z","updated_at":"2025-07-18T11:09:30.862Z","avatar_url":"https://github.com/EpimetheusMusicPlayer.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"## libepimetheus\n\n##This version of the library is abandoned. I'm rewriting it in Dart.\n\n### About\n\nLibepimetheus is an Android library to connect to [Pandora Music](https://www.pandora.com/)'s REST API, documented [here](https://6xq.net/pandora-apidoc/rest/). It's the same API the web app uses. Libepimetheus doesn't enforce ads or skip limits.  \nThe library can optionally use a free smart DNS service, [Portaller](http://portaller.com/), to access Pandora from outside the US.  \n[I'm building a Pandora client for Android with this, check it out.](https://github.com/EpimetheusAndroid/Epimetheus)\n\n\n\n### Planned features (to be implemented later)\n\n- Browse functions\n- Functions to get song details (lyrics, etc.)\n\n\n\n### Download [![](https://jitpack.io/v/EpimetheusAndroid/libepimetheus.svg)](https://jitpack.io/#EpimetheusAndroid/libepimetheus)\n\nThe library is available through [JitPack](https://jitpack.io/#EpimetheusAndroid/libepimetheus/). Add the JitPack repository to your app module's `build.gradle` file:\n\n```groovy\nrepositories {\n\t...\n\tmaven { url 'https://jitpack.io' }\n}\n```\n\nThen, add the library in the `dependencies` closure.\n\n```groovy\ndependencies {\n    ...\n    implementation 'com.github.EpimetheusAndroid:libepimetheus:1.0'\n}\n```\n\nAlternatively, you can manually use the library `aar` and sources `jar` from the [releases page](https://github.com/EpimetheusAndroid/libepimetheus/releases). Make sure to add the following dependencies if you do:\n\n```groovy\ndependencies {\n    ...\n    // Not necessary when using JitPack\n    implementation 'androidx.media:media:1.0.0'\n    implementation 'com.squareup.okhttp3:okhttp:3.11.0'\n}\n```\n\n\n\n\n\n### Documentation\n\nKDoc, generated in [GFM Markdown](https://github.github.com/gfm/), is [available in the `docs` directory in this repository](https://github.com/EpimetheusAndroid/libepimetheus/blob/master/docs/libepimetheus/index.md).  \nContinue reading to get started.\n\n\n\n### Get started\n\nTo authenticate with Pandora, create a [`User`](https://github.com/EpimetheusAndroid/libepimetheus/blob/master/docs/libepimetheus/tk.hacker1024.libepimetheus/-user/index.md) object. The last boolean enables [Portaller](http://portaller.com/), a free smart DNS service, to access Pandora outside the US. [`User`](https://github.com/EpimetheusAndroid/libepimetheus/blob/master/docs/libepimetheus/tk.hacker1024.libepimetheus/-user/index.md) objects are [`Parcelable`](https://developer.android.com/reference/android/os/Parcelable).\n\n```kotlin\nval user = User(\"username\", \"password\", usePortaller = true)\n```\n\nGet a list of the user's stations with the `Stations.getStations` function. This will return a list of [`Station`](https://github.com/EpimetheusAndroid/libepimetheus/blob/master/docs/libepimetheus/tk.hacker1024.libepimetheus.data/-station/index.md) objects. [`Station`](https://github.com/EpimetheusAndroid/libepimetheus/blob/master/docs/libepimetheus/tk.hacker1024.libepimetheus.data/-station/index.md) objects are [`Parcelable`](https://developer.android.com/reference/android/os/Parcelable).\n\n```kotlin\nval stations: List\u003cStation\u003e = Stations.getStation(user)\n```\n\nGet a station playlist with the [`Station.getPlaylist`](https://github.com/EpimetheusAndroid/libepimetheus/blob/master/docs/libepimetheus/tk.hacker1024.libepimetheus/get-playlist.md) function. This will return a list of (usually) four [`Song`](https://github.com/EpimetheusAndroid/libepimetheus/blob/master/docs/libepimetheus/tk.hacker1024.libepimetheus.data/-song/index.md) objects.\n\n```kotlin\nval playlist: List\u003cSong\u003e = stations[index].getPlaylist(user)\n```\n\nTo get more songs, call [`getPlaylist`](https://github.com/EpimetheusAndroid/libepimetheus/blob/master/docs/libepimetheus/tk.hacker1024.libepimetheus/get-playlist.md) again.\n\n```kotlin\nplaylist += stations[index].getPlaylist(user)\n```\n\n[`Song`](https://github.com/EpimetheusAndroid/libepimetheus/blob/master/docs/libepimetheus/tk.hacker1024.libepimetheus.data/-song/index.md) objects have many properties, like:\n\n```kotlin\n// Song name, album, artist\nsong.name; song.album; song.artist\n\n// Audio URI\nsong.audioUri\n\n// Art URL (returns the URL for the nearest larger existing size)\nsong.getArtUrl(preferredSize)\n\n// Rating\nsong.rating\n```\n\nAdd and remove feedback with the feedback functions:\n\n```kotlin\nsong.addTired(user)\nsong.addFeedback(thumbsUp = true, user)\nsong.deleteFeedback(user)\n```\n\n\n\n#### Custom API requests\n\nYou can use [this function](https://github.com/EpimetheusAndroid/libepimetheus/blob/master/docs/libepimetheus/tk.hacker1024.libepimetheus/-networking/make-api-request.md) to make a custom API request.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fepimetheusmusicplayer%2Flibepimetheuskotlin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fepimetheusmusicplayer%2Flibepimetheuskotlin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fepimetheusmusicplayer%2Flibepimetheuskotlin/lists"}