Skip to content

cloudy

google cloud services

Support for working with third-party cloud services, like GCP and AWS.


Documentation: docs.salo.ai/salo-cloud-services

Source code: salosciences/salo-cloud-services


cloudy provides simple python routines and command line tools for working with cloud computing services. The focus is on working with Google Cloud Platform, where the majority of Salo Sciences' infrastructure is hosted. But there are some AWS functions here, too, which provide a pattern for how we might expand the package to include other services.

The reasoning behind the name of this package should be fairly obvious. I was considering naming it something like benzene or cassini based on how clouds form in Titan's atmosphere, but even I felt that would have been a stretch. Oh, and very difficult to remember.

Install

Set up the conda/development environment:

make init

or just the python package with ssh keys:

pip install git+ssh://git@github.com/salosciences/salo-cloud-services.git

or without ssh keys:

pip install git+https://github.com/salosciences/salo-cloud-services.git
Back to top