osctiny's handling of dictionary parameters to osc.request prevents the creation of url parameters like &view=status&view=binarylist. requests supports this via:
param = {"view": ["status", "binarylist"]}
but the handling inside Osc.handle_params prevents this behavior from applying:
Could such parameters be supported? It is sadly required to fully utilize some buildservice routes without calling the API endpoint twice or three times