Hello. How can I display the full size of my storage using python?
I was able to get only the occupied volume:
print(dbx.users_get_space_usage().used)
The only thing I could do was get this:
print(dbx.users_get_space_usage().allocation)
Result:
SpaceAllocation('individual', IndividualSpaceAllocation(allocated=2147483648))
I don't know how to extract "allocated" from here.