Agate
Agate
What we can reasonably do on Funkwhale side is implementing random sorting (e.g with an`ordering=random` query param). For the other items, we'd have to figure a way to deliver smart...
I've implemented random ordering (`?ordering=random`) in the following MR: https://dev.funkwhale.audio/funkwhale/funkwhale/-/merge_requests/1150. I'm thinking about adding a `similar=obj_id` filter that would use tags internally to return similar results.
> I still need to see which are already supported by Funkwhale's API, but I'll try and give it a start. @apognu You can: - list tags with `/api/v1/tags` -...
@apognu I've also implemented a `related` filter, (MR: https://dev.funkwhale.audio/funkwhale/funkwhale/-/merge_requests/1151). It's based on tags, and you can use it like this `GET /api/v1/artists?related=42&ordering=-related` (also works on albums and tracks). This example...
I've updated https://open.audio/ with the latest changes, and https://demo.funkwhale.audio/ will be updated automatically soon (it's reset every 3 hours to `develop`, and I merge `master` into `develop` as often as...
This would indeed be really useful to have this data available via the API, so I can make even richer charts in [MNM](https://mastodon.eliotberriot.com).
oh, ok :)
I was hit by this two days ago, it was a nightmare to debug : http://stackoverflow.com/questions/29590459/http-request-with-python-typeerror-an-integer-is-required-got-type-socket
I've made some progress on item #2 (see https://channels.tests.funkwhale.audio/channels/[email protected]/ for instance), however, the follow crashes too when being delivered to reel2bits, so I assume it's a similar issue. Also, I'm...
Same issue here. Trying to swap those models in my project via: ``` class Application(oauth2_models.AbstractApplication): pass class Grant(oauth2_models.AbstractGrant): pass class AccessToken(oauth2_models.AbstractAccessToken): pass class RefreshToken(oauth2_models.AbstractRefreshToken): pass ``` raises this error when...