Skip to content

Latest commit

 

History

History
48 lines (34 loc) · 1.01 KB

README.rst

File metadata and controls

48 lines (34 loc) · 1.01 KB

vac

Vac is a fork of Multyvac that gives Python developers a simple interface for offloading computational workloads to the cloud.

Getting Started

Install vac:

pip install vac

Verify Installation

Open up Python, and import multyvac:

>>> import multyvac

If you get an ImportError, something went wrong. Try running the setup again.

Running a Job

The idea is to take a function that you would normally run on your own machine, but instead run it on Multyvac. Here's an example of how you would offload a function for adding two numbers:

>>> def add(x, y):
...     return x + y
>>> # run add on your machine
>>> add(1, 2)
3
>>> # submit add to Multyvac
>>> job_id = multyvac.submit(add, 1, 2)
>>> # get job object
>>> job = multyvac.get(job_id)
>>> # wait for job to finish processing
>>> job.wait()
>>> # verify the result is the same
>>> job.result
3