Skip to content

Instantly share code, notes, and snippets.

@joshuamckenty
Created May 21, 2014 19:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joshuamckenty/ba74a09697720f885cd0 to your computer and use it in GitHub Desktop.
Save joshuamckenty/ba74a09697720f885cd0 to your computer and use it in GitHub Desktop.
List of OpenStack Capabilities as of Havana
import requests
foo = requests.get("https://raw.githubusercontent.com/stackforge/refstack/master/defcore/havana/capabilities.json")
capabilities = foo.json()
for capability in capabilities:
print "%s : %s" % (capabilities[capability]['domain'], capability)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment