[PR #812] [CLOSED] Code of conduct.md addition. #1021

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

📋 Pull Request Information

Original PR: https://github.com/spotipy-dev/spotipy/pull/812
Author: @ironbrrian
Created: 5/28/2022
Status: Closed

Base: masterHead: v3


📝 Commits (10+)

  • f3d1192 Update changelog and setup to v3
  • f7ae328 Fixed audio_features API wrapper function return structure (#653)
  • 07fec53 V3 (#665)
  • 4fe6350 Sync branches (#667)
  • 0b6ede6 Added MemoryCacheHandler, a cache handler that simply stores the token info in memory as an instance attribute of this class.
  • bc7343c Fixed a bug in CacheFileHandler.__init__: The documentation says that the username will be retrieved from the environment, but it wasn't.
  • aa9652f Merge branch 'v3' into master
  • b6c3961 Merge pull request #1 from Peter-Schorn/master
  • bd80181 Renamed the auth parameter of Spotify.__init__ to access_token for better clarity.
  • 8973fc2 Fixed lint issues

📊 Changes

40 files changed (+565 additions, -1204 deletions)

View changed files

📝 .github/workflows/pythonapp.yml (+1 -1)
📝 CHANGELOG.md (+100 -17)
📝 examples/artist_albums.py (+1 -1)
📝 examples/artist_discography.py (+2 -2)
📝 examples/artist_recommendations.py (+2 -2)
📝 examples/audio_analysis_for_track.py (+2 -2)
📝 examples/audio_features.py (+2 -2)
📝 examples/audio_features_for_track.py (+2 -2)
📝 examples/client_credentials_flow.py (+2 -2)
examples/multiple_accounts.py (+0 -10)
📝 examples/player.py (+1 -1)
📝 examples/playlist_all_non_local_tracks.py (+1 -1)
📝 examples/playlist_tracks.py (+2 -2)
📝 examples/read_a_playlist.py (+2 -2)
📝 examples/search.py (+1 -1)
📝 examples/show_album.py (+1 -1)
📝 examples/show_artist.py (+1 -1)
📝 examples/show_artist_top_tracks.py (+1 -1)
📝 examples/show_related.py (+2 -2)
📝 examples/show_track_info.py (+1 -1)

...and 20 more files

📄 Description

Code of conduct documentation .md

contribution for school coursework.. Contribution attempt required for credit.


🔄 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/spotipy-dev/spotipy/pull/812 **Author:** [@ironbrrian](https://github.com/ironbrrian) **Created:** 5/28/2022 **Status:** ❌ Closed **Base:** `master` ← **Head:** `v3` --- ### 📝 Commits (10+) - [`f3d1192`](https://github.com/spotipy-dev/spotipy/commit/f3d1192c38399f1e76ed8043b70cce0447b36f1a) Update changelog and setup to v3 - [`f7ae328`](https://github.com/spotipy-dev/spotipy/commit/f7ae3285018b8cdf6733e059c3f9cb3656195b16) Fixed audio_features API wrapper function return structure (#653) - [`07fec53`](https://github.com/spotipy-dev/spotipy/commit/07fec53288bd097576637d922865b3900e703952) V3 (#665) - [`4fe6350`](https://github.com/spotipy-dev/spotipy/commit/4fe6350cb4f29a78dada9edba123640f17c8cb36) Sync branches (#667) - [`0b6ede6`](https://github.com/spotipy-dev/spotipy/commit/0b6ede68766f095b97e5d5370cf6bd6b264dc720) Added `MemoryCacheHandler`, a cache handler that simply stores the token info in memory as an instance attribute of this class. - [`bc7343c`](https://github.com/spotipy-dev/spotipy/commit/bc7343c2061ee01e039b80b07ae39609726f962c) Fixed a bug in `CacheFileHandler.__init__`: The documentation says that the username will be retrieved from the environment, but it wasn't. - [`aa9652f`](https://github.com/spotipy-dev/spotipy/commit/aa9652f1fde1c0cd7849e74daa54bc93c5c17575) Merge branch 'v3' into master - [`b6c3961`](https://github.com/spotipy-dev/spotipy/commit/b6c3961d5f4438a67d74bf6d340736f92af643f4) Merge pull request #1 from Peter-Schorn/master - [`bd80181`](https://github.com/spotipy-dev/spotipy/commit/bd80181816ed7a2cd85730d95b6664a974e228db) Renamed the `auth` parameter of `Spotify.__init__` to `access_token` for better clarity. - [`8973fc2`](https://github.com/spotipy-dev/spotipy/commit/8973fc2e15a61162b286ade89cd3be17c9181958) Fixed lint issues ### 📊 Changes **40 files changed** (+565 additions, -1204 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/pythonapp.yml` (+1 -1) 📝 `CHANGELOG.md` (+100 -17) 📝 `examples/artist_albums.py` (+1 -1) 📝 `examples/artist_discography.py` (+2 -2) 📝 `examples/artist_recommendations.py` (+2 -2) 📝 `examples/audio_analysis_for_track.py` (+2 -2) 📝 `examples/audio_features.py` (+2 -2) 📝 `examples/audio_features_for_track.py` (+2 -2) 📝 `examples/client_credentials_flow.py` (+2 -2) ➖ `examples/multiple_accounts.py` (+0 -10) 📝 `examples/player.py` (+1 -1) 📝 `examples/playlist_all_non_local_tracks.py` (+1 -1) 📝 `examples/playlist_tracks.py` (+2 -2) 📝 `examples/read_a_playlist.py` (+2 -2) 📝 `examples/search.py` (+1 -1) 📝 `examples/show_album.py` (+1 -1) 📝 `examples/show_artist.py` (+1 -1) 📝 `examples/show_artist_top_tracks.py` (+1 -1) 📝 `examples/show_related.py` (+2 -2) 📝 `examples/show_track_info.py` (+1 -1) _...and 20 more files_ </details> ### 📄 Description [Code of conduct documentation .md](https://github.com/plamere/spotipy/files/8790162/Code.of.conduct.documentation.md) contribution for school coursework.. Contribution attempt required for credit. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-28 00:03:17 +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/spotipy#1021
No description provided.