[PR #9] [CLOSED] Dev edition merge #14

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

📋 Pull Request Information

Original PR: https://github.com/TheTedLab/SpotiStats/pull/9
Author: @TheTedLab
Created: 12/14/2023
Status: Closed

Base: mainHead: dev


📝 Commits (10+)

  • dd7738b Implement web side
  • 485078d Restructure and dockerize web
  • 5d8bc3e Merge pull request #4 from TheTedLab/web
  • 480fabf Add artists aggregator
  • a8382b3 Merge branch 'dev' into aggregator
  • e1b4e13 Merge pull request #5 from TheTedLab/aggregator
  • 5f75882 Fix tracks parsing
  • 773eaa2 Merge pull request #6 from TheTedLab/aggregator
  • 366b65d Update aggregator
  • 4d40c2d Update artist saving and docker

📊 Changes

28 files changed (+37469 additions, -7 deletions)

View changed files

📝 .gitignore (+145 -1)
src/aggregator/Dockerfile (+18 -0)
src/aggregator/__init__.py (+0 -0)
src/aggregator/aggregator.py (+400 -0)
src/aggregator/artist_aggregate.py (+80 -0)
src/aggregator/auth_credentials.template (+13 -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 (+7513 -0)
src/aggregator/resources/artists/artist-0M2HHtY3OOQzIZxrHkbJLT.json (+2030 -0)
src/aggregator/resources/artists/artist-4tZwfgrHOc3mvqYlEYSvVi.json (+7850 -0)
src/aggregator/resources/spotify-followed-artists.json (+1809 -0)
src/aggregator/save_artist.py (+26 -0)
src/aggregator/server_vars.py (+2 -0)
src/aggregator/stats_from_files.py (+86 -0)
src/aggregator/stats_update.py (+91 -0)

...and 8 more files

📄 Description

No description provided


🔄 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/9 **Author:** [@TheTedLab](https://github.com/TheTedLab) **Created:** 12/14/2023 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`dd7738b`](https://github.com/TheTedLab/SpotiStats/commit/dd7738b86b80c35c1c32d66a25a489a6ab1e2393) Implement web side - [`485078d`](https://github.com/TheTedLab/SpotiStats/commit/485078db90d86dfc5a58ec433f10008bbe020316) Restructure and dockerize web - [`5d8bc3e`](https://github.com/TheTedLab/SpotiStats/commit/5d8bc3e7cbcff785de7f08f957c7150d67bd64b1) Merge pull request #4 from TheTedLab/web - [`480fabf`](https://github.com/TheTedLab/SpotiStats/commit/480fabff63ec9eea06c29adcf82a75bd74f9d7fc) Add artists aggregator - [`a8382b3`](https://github.com/TheTedLab/SpotiStats/commit/a8382b3d046c0aa33c45596ea5aa91d30fa40818) Merge branch 'dev' into aggregator - [`e1b4e13`](https://github.com/TheTedLab/SpotiStats/commit/e1b4e13ca8f49106d9ce549f20bf2d237a4213bc) Merge pull request #5 from TheTedLab/aggregator - [`5f75882`](https://github.com/TheTedLab/SpotiStats/commit/5f75882c028b3cebf73acb9dd39ca63b7ca4c91d) Fix tracks parsing - [`773eaa2`](https://github.com/TheTedLab/SpotiStats/commit/773eaa2252a7f8217bbfd50cdf691d17d5ea8111) Merge pull request #6 from TheTedLab/aggregator - [`366b65d`](https://github.com/TheTedLab/SpotiStats/commit/366b65dd15f23430a0407c812078044aa16b4e27) Update aggregator - [`4d40c2d`](https://github.com/TheTedLab/SpotiStats/commit/4d40c2d3c77ad386dadca43944d62e35655e425e) Update artist saving and docker ### 📊 Changes **28 files changed** (+37469 additions, -7 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+145 -1) ➕ `src/aggregator/Dockerfile` (+18 -0) ➕ `src/aggregator/__init__.py` (+0 -0) ➕ `src/aggregator/aggregator.py` (+400 -0) ➕ `src/aggregator/artist_aggregate.py` (+80 -0) ➕ `src/aggregator/auth_credentials.template` (+13 -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` (+7513 -0) ➕ `src/aggregator/resources/artists/artist-0M2HHtY3OOQzIZxrHkbJLT.json` (+2030 -0) ➕ `src/aggregator/resources/artists/artist-4tZwfgrHOc3mvqYlEYSvVi.json` (+7850 -0) ➕ `src/aggregator/resources/spotify-followed-artists.json` (+1809 -0) ➕ `src/aggregator/save_artist.py` (+26 -0) ➕ `src/aggregator/server_vars.py` (+2 -0) ➕ `src/aggregator/stats_from_files.py` (+86 -0) ➕ `src/aggregator/stats_update.py` (+91 -0) _...and 8 more files_ </details> ### 📄 Description _No description provided_ --- <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:47 +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#14
No description provided.