[PR #37] [MERGED] Sync with main branch #99

Closed
opened 2026-02-27 08:11:54 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/kokarare1212/librespot-python/pull/37
Author: @kokarare1212
Created: 5/22/2021
Status: Merged
Merged: 5/22/2021
Merged by: @kokarare1212

Base: xperimentalHead: main


📝 Commits (10+)

  • d1bd953 Refactor unnecessary else / elif when if block has a continue statement
  • fb2312e Remove methods with unnecessary super delegation.
  • 6acfbb4 Merge pull request #10 from kokarare1212/deepsource-fix-0f15d09b
  • 42d44c5 Format code with yapf
  • 9d8ecbb Merge pull request #11 from kokarare1212/deepsource-fix-cbd3de2b
  • 597da1f Remove unused imports
  • cfd1ac0 Restyled by black
  • d3febb3 Restyled by isort
  • 4b2c144 Restyled by yapf
  • d4eb519 Merge pull request #15 from kokarare1212/restyled/deepsource-fix-567de118

📊 Changes

72 files changed (+1640 additions, -602 deletions)

View changed files

📝 LICENSE.txt (+1 -1)
📝 README.md (+21 -9)
SECURITY.md (+21 -0)
docs/api.md (+2 -0)
📝 docs/conf.py (+9 -1)
📝 docs/index.md (+95 -2)
docs/supported.md (+15 -0)
examples/player.py (+151 -0)
librespot/ZeroconfServer.py (+108 -0)
librespot/api/__init__.py (+0 -0)
📝 librespot/audio/AbsChunkedInputStream.py (+16 -20)
📝 librespot/audio/AudioKeyManager.py (+7 -4)
📝 librespot/audio/PlayableContentFeeder.py (+1 -2)
📝 librespot/audio/cdn/CdnFeedHelper.py (+41 -20)
📝 librespot/audio/cdn/CdnManager.py (+87 -54)
📝 librespot/audio/cdn/__init__.py (+1 -1)
📝 librespot/audio/decoders/AudioQuality.py (+3 -1)
librespot/audio/decoders/__init__.py (+1 -0)
📝 librespot/audio/decrypt/AesAudioDecrypt.py (+1 -1)
📝 librespot/audio/format/AudioQualityPicker.py (+2 -1)

...and 52 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/kokarare1212/librespot-python/pull/37 **Author:** [@kokarare1212](https://github.com/kokarare1212) **Created:** 5/22/2021 **Status:** ✅ Merged **Merged:** 5/22/2021 **Merged by:** [@kokarare1212](https://github.com/kokarare1212) **Base:** `xperimental` ← **Head:** `main` --- ### 📝 Commits (10+) - [`d1bd953`](https://github.com/kokarare1212/librespot-python/commit/d1bd95376204ea2abaef6811f5a26afa7b85d930) Refactor unnecessary `else` / `elif` when `if` block has a `continue` statement - [`fb2312e`](https://github.com/kokarare1212/librespot-python/commit/fb2312e844d5ba3d0f855e49a18dcb2ba687f8a4) Remove methods with unnecessary super delegation. - [`6acfbb4`](https://github.com/kokarare1212/librespot-python/commit/6acfbb40b050fa65ca49147f6b0159ded6b983d3) Merge pull request #10 from kokarare1212/deepsource-fix-0f15d09b - [`42d44c5`](https://github.com/kokarare1212/librespot-python/commit/42d44c59686420f66852e59daf8aaaf707a82a0f) Format code with yapf - [`9d8ecbb`](https://github.com/kokarare1212/librespot-python/commit/9d8ecbbc1bd29214ed5dcc756a12950508358e9d) Merge pull request #11 from kokarare1212/deepsource-fix-cbd3de2b - [`597da1f`](https://github.com/kokarare1212/librespot-python/commit/597da1f5a139815264811bfaed6e90412ac20c1b) Remove unused imports - [`cfd1ac0`](https://github.com/kokarare1212/librespot-python/commit/cfd1ac05fb8f3d39e5c2b3fb5c0c01c7259da96f) Restyled by black - [`d3febb3`](https://github.com/kokarare1212/librespot-python/commit/d3febb34d5e0ef3795d5d680ec34f3bdfe8fe781) Restyled by isort - [`4b2c144`](https://github.com/kokarare1212/librespot-python/commit/4b2c144aff9d090e85b69b94ffd09d96f3ea422c) Restyled by yapf - [`d4eb519`](https://github.com/kokarare1212/librespot-python/commit/d4eb519e278c491f221f153514bd0e5e691aae87) Merge pull request #15 from kokarare1212/restyled/deepsource-fix-567de118 ### 📊 Changes **72 files changed** (+1640 additions, -602 deletions) <details> <summary>View changed files</summary> 📝 `LICENSE.txt` (+1 -1) 📝 `README.md` (+21 -9) ➕ `SECURITY.md` (+21 -0) ➕ `docs/api.md` (+2 -0) 📝 `docs/conf.py` (+9 -1) 📝 `docs/index.md` (+95 -2) ➕ `docs/supported.md` (+15 -0) ➕ `examples/player.py` (+151 -0) ➕ `librespot/ZeroconfServer.py` (+108 -0) ➕ `librespot/api/__init__.py` (+0 -0) 📝 `librespot/audio/AbsChunkedInputStream.py` (+16 -20) 📝 `librespot/audio/AudioKeyManager.py` (+7 -4) 📝 `librespot/audio/PlayableContentFeeder.py` (+1 -2) 📝 `librespot/audio/cdn/CdnFeedHelper.py` (+41 -20) 📝 `librespot/audio/cdn/CdnManager.py` (+87 -54) 📝 `librespot/audio/cdn/__init__.py` (+1 -1) 📝 `librespot/audio/decoders/AudioQuality.py` (+3 -1) ➕ `librespot/audio/decoders/__init__.py` (+1 -0) 📝 `librespot/audio/decrypt/AesAudioDecrypt.py` (+1 -1) 📝 `librespot/audio/format/AudioQualityPicker.py` (+2 -1) _...and 52 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-27 08:11:54 +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/librespot-python-kokarare1212#99
No description provided.