testing
Project description
Getting Started with Spotify Web API with fixes and improvements from sonallux
Introduction
You can use Spotify's Web API to discover music and podcasts, manage your Spotify library, control audio playback, and much more. Browse our available Web API endpoints using the sidebar at left, or via the navigation bar on top of this page on smaller screens.
In order to make successful Web API requests your app will need a valid access token. One can be obtained through OAuth 2.0.
The base URI for all Web API requests is https://api.spotify.com/v1.
Need help? See our Web API guides for more information, or visit the Spotify for Developers community forum to ask questions and connect with other developers.
Install the Package
The package is compatible with Python versions 3.7+.
Install the package from PyPi using the following pip command:
pip install a-sqa-sdk==2.0.8
You can also view the package at: https://pypi.python.org/pypi/a-sqa-sdk/2.0.8
Test the SDK
You can test the generated SDK and the server with test cases. unittest is used as the testing framework and pytest is used as the test runner. You can run the tests as follows:
Navigate to the root directory of the SDK and run the following commands
pip install -r test-requirements.txt
pytest
Initialize the API Client
Note: Documentation for the client can be found here.
The following parameters are configurable for the API Client:
| Parameter | Type | Description |
|---|---|---|
| environment | Environment |
The API environment. Default: Environment.PRODUCTION |
| http_client_instance | HttpClient |
The Http Client passed from the sdk user for making requests |
| override_http_client_configuration | bool |
The value which determines to override properties of the passed Http Client from the sdk user |
| http_call_back | HttpCallBack |
The callback value that is invoked before and after an HTTP call is made to an endpoint |
| timeout | float |
The value to use for connection timeout. Default: 60 |
| max_retries | int |
The number of times to retry an endpoint call if it fails. Default: 0 |
| backoff_factor | float |
A backoff factor to apply between attempts after the second try. Default: 2 |
| retry_statuses | Array of int |
The http statuses on which retry is to be done. Default: [408, 413, 429, 500, 502, 503, 504, 521, 522, 524] |
| retry_methods | Array of string |
The http methods on which retry is to be done. Default: ['GET', 'PUT'] |
| authorization_code_auth_credentials | AuthorizationCodeAuthCredentials |
The credential object for OAuth 2 Authorization Code Grant |
The API client can be initialized as follows:
client = SpotifywebapiwithfixesandimprovementsfromsonalluxClient(
authorization_code_auth_credentials=AuthorizationCodeAuthCredentials(
o_auth_client_id='OAuthClientId',
o_auth_client_secret='OAuthClientSecret',
o_auth_redirect_uri='OAuthRedirectUri',
o_auth_scopes=[
OAuthScopeEnum.APP_REMOTE_CONTROL,
OAuthScopeEnum.PLAYLIST_READ_PRIVATE
]
),
environment=Environment.PRODUCTION
)
Authorization
This API uses the following authentication schemes.
List of APIs
- Albums
- Artists
- Audiobooks
- Categories
- Chapters
- Episodes
- Genres
- Markets
- Player
- Playlists
- Search
- Shows
- Tracks
- Users
SDK Infrastructure
HTTP
Utilities
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file a_sqa_sdk-2.0.8.tar.gz.
File metadata
- Download URL: a_sqa_sdk-2.0.8.tar.gz
- Upload date:
- Size: 92.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f008231f4feaaf54df83dbfae8aa124b8528371890143a01a7a757b8c9323e65
|
|
| MD5 |
ba1d2ea73a0fcfce7706aa6cdf4b4794
|
|
| BLAKE2b-256 |
6b478d7c255436e4e996560244b9cc93b6a5945dda43854b9c617b878d53468d
|
File details
Details for the file a_sqa_sdk-2.0.8-py3-none-any.whl.
File metadata
- Download URL: a_sqa_sdk-2.0.8-py3-none-any.whl
- Upload date:
- Size: 267.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94defb99ddfae3887d054cf86eb4bcbaf8a069939592ea3ca0339c09b3461b54
|
|
| MD5 |
5df9bc9a45ab0664b429d9641afdf7d0
|
|
| BLAKE2b-256 |
b23862c71f3d7ec743557fc31a1941120916898027befa42310016a60ce76993
|