IceFrame allows you to manage namespaces (schemas/databases) in your Iceberg catalog.
# Access via the namespaces property
ns_manager = ice.namespacesice.create_namespace("marketing", {"owner": "team-marketing"})ice.drop_namespace("marketing")# List top-level namespaces
namespaces = ice.list_namespaces()
print(namespaces)
# List nested namespaces
sub_namespaces = ice.list_namespaces("marketing")