[PR #5] [MERGED] Add artists aggregator #9

Closed
opened 2026-02-28 15:18:46 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheTedLab/SpotiStats/pull/5
Author: @TheTedLab
Created: 11/25/2023
Status: Merged
Merged: 11/25/2023
Merged by: @TheTedLab

Base: devHead: aggregator


📝 Commits (2)

  • 480fabf Add artists aggregator
  • a8382b3 Merge branch 'dev' into aggregator

📊 Changes

19 files changed (+32277 additions, -1 deletions)

View changed files

📝 .gitignore (+4 -1)
src/aggregator/Dockerfile (+18 -0)
src/aggregator/__init__.py (+0 -0)
src/aggregator/aggregator.py (+301 -0)
src/aggregator/artist_aggregate.py (+80 -0)
src/aggregator/auth_credentials.template (+12 -0)
src/aggregator/classes/__init__.py (+0 -0)
src/aggregator/classes/album.py (+14 -0)
src/aggregator/classes/artist.py (+14 -0)
src/aggregator/classes/track.py (+30 -0)
src/aggregator/requirements.txt (+0 -0)
src/aggregator/resources/artists-ids-list.json (+12981 -0)
src/aggregator/resources/artists/artist-00FQb4jTyendYWaN8pK0wa.json (+7338 -0)
src/aggregator/resources/artists/artist-0M2HHtY3OOQzIZxrHkbJLT.json (+1955 -0)
src/aggregator/resources/artists/artist-1.json (+90 -0)
src/aggregator/resources/artists/artist-4tZwfgrHOc3mvqYlEYSvVi.json (+7602 -0)
src/aggregator/resources/spotify-followed-artists.json (+1809 -0)
src/aggregator/save_artist.py (+27 -0)
src/aggregator/server_vars.py (+2 -0)

📄 Description

Add artists ids aggregator and all data aggregator Develop functions for packing and sending json's to server Add server and other config files
Add directories for artists files
Add classes for Artist, Album and Track for JSON packing


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/TheTedLab/SpotiStats/pull/5 **Author:** [@TheTedLab](https://github.com/TheTedLab) **Created:** 11/25/2023 **Status:** ✅ Merged **Merged:** 11/25/2023 **Merged by:** [@TheTedLab](https://github.com/TheTedLab) **Base:** `dev` ← **Head:** `aggregator` --- ### 📝 Commits (2) - [`480fabf`](https://github.com/TheTedLab/SpotiStats/commit/480fabff63ec9eea06c29adcf82a75bd74f9d7fc) Add artists aggregator - [`a8382b3`](https://github.com/TheTedLab/SpotiStats/commit/a8382b3d046c0aa33c45596ea5aa91d30fa40818) Merge branch 'dev' into aggregator ### 📊 Changes **19 files changed** (+32277 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+4 -1) ➕ `src/aggregator/Dockerfile` (+18 -0) ➕ `src/aggregator/__init__.py` (+0 -0) ➕ `src/aggregator/aggregator.py` (+301 -0) ➕ `src/aggregator/artist_aggregate.py` (+80 -0) ➕ `src/aggregator/auth_credentials.template` (+12 -0) ➕ `src/aggregator/classes/__init__.py` (+0 -0) ➕ `src/aggregator/classes/album.py` (+14 -0) ➕ `src/aggregator/classes/artist.py` (+14 -0) ➕ `src/aggregator/classes/track.py` (+30 -0) ➕ `src/aggregator/requirements.txt` (+0 -0) ➕ `src/aggregator/resources/artists-ids-list.json` (+12981 -0) ➕ `src/aggregator/resources/artists/artist-00FQb4jTyendYWaN8pK0wa.json` (+7338 -0) ➕ `src/aggregator/resources/artists/artist-0M2HHtY3OOQzIZxrHkbJLT.json` (+1955 -0) ➕ `src/aggregator/resources/artists/artist-1.json` (+90 -0) ➕ `src/aggregator/resources/artists/artist-4tZwfgrHOc3mvqYlEYSvVi.json` (+7602 -0) ➕ `src/aggregator/resources/spotify-followed-artists.json` (+1809 -0) ➕ `src/aggregator/save_artist.py` (+27 -0) ➕ `src/aggregator/server_vars.py` (+2 -0) </details> ### 📄 Description Add artists ids aggregator and all data aggregator Develop functions for packing and sending json's to server Add server and other config files Add directories for artists files Add classes for Artist, Album and Track for JSON packing --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-28 15:18:46 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/SpotiStats#9
No description provided.