Definitely possible - but it depends on what you want. But let's say you have 5 converged calculations in a NetCDF file, and you want the total energies (which I also assume are not computed already and saved in the NC file - if they are, it's even easier), then you can do
all_configs = nlread("file.nc")
energies = []
for config in all_configs:
energies.append(TotalEnergy(config))
for ix,E in enumerate(energies):
print ix, E.evaluate()
This may or may not work out-of-the-box for you, depending on if the NC file contains other things too, etc, but it should give you a starting point.