{"id":17347359,"url":"https://github.com/janasunrise/spotify-playing-readme","last_synced_at":"2026-02-25T09:31:44.608Z","repository":{"id":50601322,"uuid":"355429630","full_name":"janaSunrise/spotify-playing-readme","owner":"janaSunrise","description":"Display your Spotify listening status on GH README and websites with a beautiful, customizable widget.","archived":false,"fork":false,"pushed_at":"2025-12-23T07:35:43.000Z","size":437,"stargazers_count":29,"open_issues_count":0,"forks_count":5,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-24T21:57:47.485Z","etag":null,"topics":["flask","github-api","hacktoberfest","python","readme-profile","spotify"],"latest_commit_sha":null,"homepage":"https://spotify-playing-readme.vercel.app","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/janaSunrise.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-04-07T06:00:25.000Z","updated_at":"2025-12-23T07:35:46.000Z","dependencies_parsed_at":"2025-04-14T20:52:23.875Z","dependency_job_id":"b4d693a8-ce23-47a6-b305-aae0cb8672b4","html_url":"https://github.com/janaSunrise/spotify-playing-readme","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/janaSunrise/spotify-playing-readme","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/janaSunrise%2Fspotify-playing-readme","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/janaSunrise%2Fspotify-playing-readme/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/janaSunrise%2Fspotify-playing-readme/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/janaSunrise%2Fspotify-playing-readme/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/janaSunrise","download_url":"https://codeload.github.com/janaSunrise/spotify-playing-readme/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/janaSunrise%2Fspotify-playing-readme/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29816019,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-25T05:36:42.804Z","status":"ssl_error","status_checked_at":"2026-02-25T05:36:31.934Z","response_time":61,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["flask","github-api","hacktoberfest","python","readme-profile","spotify"],"created_at":"2024-10-15T16:48:30.870Z","updated_at":"2026-02-25T09:31:44.602Z","avatar_url":"https://github.com/janaSunrise.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Spotify Playing for README\n\nDisplay your Spotify listening status on GH README and websites with a beautiful, customizable widget.\n\n## Setup\n\n### Prerequisites\n\n- Python 3.11+\n- `uv` package manager\n- Spotify Developer Account\n- Supabase Account\n\n### Local Development\n\n1. **Clone the repository**\n   ```sh\n   git clone https://github.com/janaSunrise/spotify-playing-readme\n   cd spotify-playing-readme\n   ```\n\n2. **Install dependencies**\n   ```sh\n   uv sync --all-groups\n   ```\n\n3. **Configure Spotify API**\n   - Go to [Spotify Developer Dashboard](https://developer.spotify.com/dashboard)\n   - Create a new app\n   - Add `http://localhost:8000/callback` to Redirect URIs\n   - Note your Client ID and Client Secret\n\n4. **Configure Supabase**\n   - Create a new project on [Supabase](https://supabase.com)\n   - Setup the database with the schema from `schema.sql`\n   - Get your project URL and API key\n\n5. **Configure environment variables**\n\n   Create a `.env` file based on `.env.example` and fill in the required values. Don't include a trailing slash in `BASE_URL`.\n\n6. **Generate a secure secret key**\n\n   You need a secure secret key for session management. Generate one using Python:\n   ```sh\n   python -c \"import secrets; print(secrets.token_hex(32))\"\n   ```\n   Or using OpenSSL:\n   ```sh\n   openssl rand -hex 32\n   ```\n   Copy the generated key and use it as your `SESSION_SECRET_KEY` in the `.env` file.\n\n7. **Run the application**\n   ```sh\n   uv run poe dev\n   ```\n\nThe app will be available at `http://localhost:8000`\n\n## Self-Hosting\n\n### Configuration\n\nUpdate the `.env` file for production:\n\n- Set `BASE_URL` to your domain\n- Generate a secure `SESSION_SECRET_KEY` (see step 6 in Local Development)\n- Update Spotify redirect URI to `https://yourdomain.com/callback`\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## License\n\nThis project is licensed under the Apache License - see the [LICENSE](LICENSE) file for details.\n\n**Inspired by [Novatorem](https://github.com/novatorem)**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjanasunrise%2Fspotify-playing-readme","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjanasunrise%2Fspotify-playing-readme","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjanasunrise%2Fspotify-playing-readme/lists"}