Merge branch 'spotipy-dev:master' into bug/inheriting-exceptions-in-init

This commit is contained in:
John Cheng 2023-05-26 19:44:59 -04:00 committed by GitHub
commit 2063df0fa5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 13 deletions

View File

@ -7,12 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
### Added ### Changed
- Replace with changes - Changes the YouTube video link for authentication tutorial (the old video was in low definition, the new one is in high definition)
- Updated links to Spotify in documentation
### Fixed
### Removed
## [2.23.0] - 2023-04-07 ## [2.23.0] - 2023-04-07
@ -25,8 +22,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed the regex for matching playlist URIs with the format spotify:user:USERNAME:playlist:PLAYLISTID. - Fixed the regex for matching playlist URIs with the format spotify:user:USERNAME:playlist:PLAYLISTID.
- `search_markets` now factors the counts of all types in the `total` rather than just the first type ([#534](https://github.com/spotipy-dev/spotipy/issues/534)) - `search_markets` now factors the counts of all types in the `total` rather than just the first type ([#534](https://github.com/spotipy-dev/spotipy/issues/534))
### Removed
## [2.22.1] - 2023-01-23 ## [2.22.1] - 2023-01-23
### Added ### Added

2
FAQ.md
View File

@ -36,7 +36,7 @@ Error:
Solution: Solution:
- You are likely missing a scope when requesting the endpoint, check - You are likely missing a scope when requesting the endpoint, check
https://developer.spotify.com/web-api/using-scopes/ https://developer.spotify.com/documentation/web-api/concepts/scopes/
### Search doesn't find some tracks ### Search doesn't find some tracks

View File

@ -5,11 +5,11 @@ Welcome to Spotipy!
=================================== ===================================
*Spotipy* is a lightweight Python library for the `Spotify Web API *Spotipy* is a lightweight Python library for the `Spotify Web API
<https://developer.spotify.com/web-api/>`_. With *Spotipy* <https://developer.spotify.com/documentation/web-api/>`_. With *Spotipy*
you get full access to all of the music data provided by the Spotify platform. you get full access to all of the music data provided by the Spotify platform.
Assuming you set the ``SPOTIPY_CLIENT_ID`` and ``SPOTIPY_CLIENT_SECRET`` Assuming you set the ``SPOTIPY_CLIENT_ID`` and ``SPOTIPY_CLIENT_SECRET``
environment variables (here is a `video <https://youtu.be/3RGm4jALukM>`_ explaining how to do so). For a longer tutorial with examples included, refer to this `video playlist <https://www.youtube.com/watch?v=tmt5SdvTqUI&list=PLqgOPibB_QnzzcaOFYmY2cQjs35y0is9N&index=1>`_. Below is a quick example of using *Spotipy* to list the environment variables (here is a `video <https://youtu.be/kaBVN8uP358>`_ explaining how to do so). For a longer tutorial with examples included, refer to this `video playlist <https://www.youtube.com/watch?v=tmt5SdvTqUI&list=PLqgOPibB_QnzzcaOFYmY2cQjs35y0is9N&index=1>`_. Below is a quick example of using *Spotipy* to list the
names of all the albums released by the artist 'Birdy':: names of all the albums released by the artist 'Birdy'::
import spotipy import spotipy
@ -71,7 +71,7 @@ Features
*Spotipy* supports all of the features of the Spotify Web API including access *Spotipy* supports all of the features of the Spotify Web API including access
to all end points, and support for user authorization. For details on the to all end points, and support for user authorization. For details on the
capabilities you are encouraged to review the `Spotify Web capabilities you are encouraged to review the `Spotify Web
API <https://developer.spotify.com/web-api/>`_ documentation. API <https://developer.spotify.com/documentation/web-api/>`_ documentation.
Installation Installation
============ ============
@ -143,7 +143,7 @@ Scopes
------ ------
See `Using See `Using
Scopes <https://developer.spotify.com/documentation/general/guides/authorization/scopes/>`_ for information Scopes <https://developer.spotify.com/documentation/web-api/concepts/scopes/>`_ for information
about scopes. about scopes.
Redirect URI Redirect URI