Does anyone know how to get column family count using pycassa? I was able to get the key space count. but don't see an option to get the column family count.
system = SystemManager(server, auth)
keyspaces = system.list_keyspaces()
print len(keyspaces)
Use
get_keyspace_column_families(keyspace, use_dict_for_col_metadata=False)Example to show number of column families in keyspace :
my_keyspace