RAMCloud contains a set of bindings for Python that provide synchronous access to all of the RAMCloud operations. Here's some basic information about using the Python bindings:

 

import ramcloud
c = ramcloud.RAMCloud()
c.connect()
c.create_table("table1")
tableId = c.get_table_id("table1")
c.write(tableId, 'object1', 'Hello from Python!')
value = c.read(tableId, 'object1')