Before specklepy 2.20.0 I could call
client: SpeckleClient = ...
list_of_streams = client.stream.list()
to return a list of available streams.
Starting with specklepy 2.20.0 this throws a warning, since the FE1 API is deprecated.
With the current API, I was expecting to be able to call e.g. client.project.list()
to obtain the same, but the ProjectResource
does not have the .list
method implemented.
Is there a way to get a list of projects without using the client.server.make_request
method?