Skip to content

Instantly share code, notes, and snippets.

@Viveckh
Last active February 11, 2020 17:57
Show Gist options
  • Save Viveckh/5c82cc0c740784d437a74430086b13f4 to your computer and use it in GitHub Desktop.
Save Viveckh/5c82cc0c740784d437a74430086b13f4 to your computer and use it in GitHub Desktop.
from metaflow import Flow, get_metadata
# Print metadata provider
print("Using metadata provider: %s" % get_metadata())
# Load the analysis from the GenreStatsFlow.
run = Flow('GenreStatsFlow').latest_successful_run
print("Using analysis from '%s'" % str(run))
genre_stats = run.data.genre_stats
print(genre_stats)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment