Skip to content

Commit

Permalink
added hdf5 model traversal #610
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Letter committed Mar 29, 2016
1 parent 5fca9b6 commit b08c166
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packages/slycat/web/server/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -1619,7 +1619,14 @@ def get_model_statistics(mid):
# amount of time it took to make the model
delta_creation_time = (datetime.datetime.strptime(model["finished"], "%Y-%m-%dT%H:%M:%S.%f") - datetime.datetime.strptime(model["created"], "%Y-%m-%dT%H:%M:%S.%f")).total_seconds()

#get models hdf5 footprint
for key,value in model["artifact-types"].iteritems():
cherrypy.log.error("artifact: %s%s" % (key, value))
if value == "hdf5":
cherrypy.log.error("artifact: %s" % model["artifact:%s" % key])

array = model["artifact:data-table"]
cherrypy.log.error("type of artifact: %s" % type(array))
directory = cherrypy.tree.apps[""].config["slycat-web-server"]["data-store"]
hdf5_file_path = os.path.join(directory, array[0:2], array[2:4], array[4:6], array + ".hdf5")
hdf5_file_size = os.path.getsize(hdf5_file_path)
Expand Down

0 comments on commit b08c166

Please sign in to comment.