Listing collections is as easy as:

collections = client.collections().list()

The list method returns a list of Collection objects.

for collection in collections:
    print(f"Collection name: {collection.name}")
    print(f"Organization ID: {collection.org_id}")
    print(f"Project ID: {collection.project_id}")