Apache Libcloud driver for Interoute (based on Apache CloudStack, but slightly modified)
Apache Libcloud 0.18.0 or later
python setup.py install
from libcloud.compute.providers import get_driver
from libcloud.compute.providers import set_driver
set_driver('interoute', 'interoute.libcloud.compute', 'InterouteNodeDriver')
# Your code which uses the driver.
# For example:
Driver = get_driver('interoute')
# This driver is able to use different Interoute VDC regions
conn = Driver(key=<apikey>,
secret=<secretkey>,
host=<host>,
path=<path>,
region=<vdcregion>)
or RTFM