A Python client for the Freesound APIv2. Clone of freesound-python.
Project description
freesound.py
A Python client for the Freesound APIv2.
This is a cold fork of https://github.com/MTG/freesound-python for publishing on pypi
Find the API documentation at http://www.freesound.org/docs/api/. Apply for an API key at https://www.freesound.org/apiv2/apply/.
The client automatically maps function arguments to http parameters of the API.
JSON results are converted to python objects, but are also available in their original form (JSON loaded into dictionaries) using the method .as_dict()
of returned objets (see examples file).
The main object types (Sound
, User
, Pack
) are augmented with the corresponding API calls.
Note that POST resources are not supported. Downloading full quality sounds requires Oauth2 authentication (see https://freesound.org/docs/api/authentication.html). Oauth2 authentication is supported by passing an access token, but you are expected to implement the workflow to obtain that access token. Here is an example implementation of the Freesound OAuth2 workflow using Flask.
Example usage:
import freesound
client = freesound.FreesoundClient()
client.set_token("<your_api_key>","token")
results = client.text_search(query="dubstep",fields="id,name,previews")
for sound in results:
sound.retrieve_preview(".",sound.name+".mp3")
print(sound.name)
Installation
pip install freesound-api
Advanced usage
Modifying the requests' session:
You can easily extend/modify the way how requests are done by interacting directly with the session object of the client.
For example, adding proxies:
proxies = {
'http': 'http://10.10.1.10:3128',
'https': 'http://10.10.1.10:1080',
}
client.session.proxies.update(proxies)
or adding rate limiting:
from requests_ratelimiter import LimiterSession
# Apply a rate-limit (59 requests per minute) to all requests
client.session = LimiterSession(per_minute=59)
Authenticating with OAuth
Here is an example authentication flow with the help of Requests-OAuthlib.
from requests_oauthlib import OAuth2Session
import freesound
client_id = "<your_client_id>"
client_secret = "<your_client_secret>"
# do the OAuth dance
oauth = OAuth2Session(client_id)
authorization_url, state = oauth.authorization_url(
"https://freesound.org/apiv2/oauth2/authorize/"
)
print(f"Please go to {authorization_url} and authorize access.")
authorization_code = input("Please enter the authorization code:")
oauth_token = oauth.fetch_token(
"https://freesound.org/apiv2/oauth2/access_token/",
authorization_code,
client_secret=client_secret,
)
client = freesound.FreesoundClient()
client.set_token(oauth_token["access_token"], "oauth")
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
File details
Details for the file freesound_api-1.1.0.2.tar.gz
.
File metadata
- Download URL: freesound_api-1.1.0.2.tar.gz
- Upload date:
- Size: 6.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.2 CPython/3.10.6 Linux/5.15.0-56-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 125ea71f627a1bc7dacfd2ddf181a15ded3d0544028057ce5b95b19ee168c960 |
|
MD5 | 7925a7f14d0f141a7c407bf0d9f6e39a |
|
BLAKE2b-256 | 4051de0a0dc0e84b6a6524fb2ffc88cfd310d60193b8f2167ad1ddec10eeff1c |
File details
Details for the file freesound_api-1.1.0.2-py3-none-any.whl
.
File metadata
- Download URL: freesound_api-1.1.0.2-py3-none-any.whl
- Upload date:
- Size: 7.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.2 CPython/3.10.6 Linux/5.15.0-56-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 765436f015046ec9f12e1bc111076aff1a05ba5c3fdba1bc1338d567bc62aaf2 |
|
MD5 | 370de6fb6684afff6af0d82fab734fab |
|
BLAKE2b-256 | a404f7b380d0f6705df2163be1eb9d05e856929711092c6db14b2247e3169d76 |