Thomas Kemmer

Results 158 comments of Thomas Kemmer

@adamcik Well, sorry, no access.

@oesteban-vx and everyone else: Thanks for nagging me ;-) `cachetools` v5.3.0 addes `cache_info()` to the `@cached` decorator. Any feedback would be welcome!

@wimglenn: Huh? At least for me, this ``` from cachetools.func import ttl_cache @ttl_cache(maxsize=512, ttl=60 * 5) def fib(n): return n if n < 2 else fib(n - 1) + fib(n...

@orontee: As you may have discovered yourself, there isn't much activity here... So unless you provide a PR yourself, sorry, I don't think this will happen.

@gitrope: Did I miss something? I mean, changing the default BASE_URL to https makes sense, but is there anything preventing you from using plain http? A rationale for your PR...

Also relevant for Mopidy v2.0, which may _only_ provide album and artist URIs.

Until this gets handled somehow, album and artist URIs will be removed starting with v1.1.

Note that BubbleUPnP features a quite reliable "Show Album" option for tracks. Wonder how that works...

For this to work, `dLeynaClient.browse` should get an extra `order` parameter, and use `ListChildrenEx`, of course. Sort order should be checked with the device's `SortCaps`. Somehow assumed this was already...

Probably needs new config settings: `upnp_browse_order`, `upnp_search_order`: list of types, actual `filter` is intersection with device sort caps. Requires a new minor release version (v1.1).