freesound-python
freesound-python copied to clipboard
python client for the freesound API
Hello, I am trying to use the fetch_token method as in the code snippet you provided in the "Authenticating with OAuth" section, but I constantly get `InvalidClientError: (invalid_client)` error. Is...
Implements #5
It would be convenient to publish freesound-python in PyPi so it can be easily installed with easy_install or pip. See the instructions here: http://peterdowns.com/posts/first-time-with-pypi.html. We could wait until we close...
Hello, I'm using the APIs in a project inside Unity3D. I'm trying to download a sound and a bit time ago my scripts worked well. Now I find this error...
``` Traceback (most recent call last): File "/Users/leotreasure/freesound.py", line 1, in import freesound File "/Users/leotreasure/freesound.py", line 3, in client = freesound.FreesoundClient() AttributeError: module 'freesound' has no attribute 'FreesoundClient' ```
Trying to retrieve metadata (in particular, the license) for multiple sounds on FreeSound, using the Python API with python 3. Working example: ``` import freesound client = freesound.FreesoundClient() client.set_token(MYTOKEN, "token")...
The Freesound API is often used to download sounds to disk and then load them in `numpy` arrays (or other types of data structures). It would be useful to add...
def get_page(self, n): return FSRequest.request(self.next, {‘page’: n}, self.client, Pager) didn't work for me, but I'd be glad to know if it's my mistake.
I don't want to log into the OAuth every time I run the script, but I can't figure out how the hell to call the ME function, especially if I'm...
Packaging and CI setup for the project, transitioning from `setup.py` to a PEP 621-compliant `pyproject.toml`, using `uv` as front-end and `hatchling` as build backend. **Packaging and Publishing Improvements:** * Added...