Project Sizes via Python

Hello,

I was wondering if it was possible via python to get the following information via Frameio:

Total space available and total space used

Individual project size

Thanks very much

Joe

    result = self.client.teams.list_projects(self.frameio_team_id)
    return [
        {
            "id": item["id"],
            "name": item["name"],
            "read_only": item["read_only"],
            "private": item["private"],
            "root_asset_id": item["root_asset_id"],
            "storage": item["storage"]
        } for item in result
    ]

At this time only the amount of storage used is returned, total space available is not yet released in the API