Created
May 21, 2014 19:52
-
-
Save joshuamckenty/ba74a09697720f885cd0 to your computer and use it in GitHub Desktop.
List of OpenStack Capabilities as of Havana
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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