# caspyr **Repository Path**: mirrors_vmware/caspyr ## Basic Information - **Project Name**: caspyr - **Description**: Cloud Automation Services SDK for Python - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2026-04-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Caspyr is no longer actively maintained VMware has ended active development of this project, this repository will no longer be updated. [![CircleCI](https://circleci.com/gh/vmware/caspyr.svg?style=svg&circle-token=3f64147ffcf9072fc8c41ab0a60cf33f969f3ebe)](https://circleci.com/gh/vmware/caspyr) # Cloud Automation Services SDK for Python (Caspyr) This is a set of Python (3.6 minimum version) bindings for VMware Cloud Automation Services (Cloud Assembly, Service Broker, Code Stream) meant to simplify programmatic consumption of it's API interfaces. ![](CaspyrDemo.gif) These bindings simplify the utilization of many of the common endpoints within the CAS API. Some of these common endpoints include... * Blueprints * Projects * Deployments * Machines * Pipelines * Network Profiles * Cloud Accounts/Zones Currently this SDK is used for the VMware Hands on Labs as well as internal Marketing and Training environments to automate the full deployment and configuration of CAS environments. ## Requirements for Usage * Python 3.6 * This Repository * API Key with sufficient permissions to the Cloud Automation Services platform ## Getting Started Clone this repository and install leveraging the setup.py file. ```bash python3 setup.py install ``` Once installation is complete, Import the appropriate modules/libraries in order to begin interacting with the platform. Example import statement is below ```python from caspyr import Session, User, Region from caspyr import CloudAccountAws, CloudAccountAzure, CloudAccount from caspyr import CloudZone, ImageMapping, FlavorMapping from caspyr import NetworkProfile, StorageProfileAWS, StorageProfileAzure, StorageProfile from caspyr import Project, Request, Deployment, Blueprint, Machine ``` From here, we will authenticate to the Cloud Services Platform by establishing an object for we can interact with. ```python s = Session.login(api_token) ``` With this object instantiated, we can leverage other calls, passing the session object in to return data. Examples can be found in the examples directory. ### Listing all Current Deployments ```python s = Session.login(api_token) d = Deployment.list(s) ``` ### Listing all Projects ```python s = Session.login(api_token) p = Projects.list(s) ``` Documentation is forthcoming (PR's welcome!) ## Maintainers Grant Orchard ([@grantorchard](https://twitter.com/grantorchard))
Cody De Arkland ([@codydearkland](https://twitter.com/codydearkland))