Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.63 KB

README.rst

File metadata and controls

35 lines (26 loc) · 1.63 KB
Documentation Status Build Status

render-python

This is a python API client to interact with render and facilitate python scripting of tilespec creation

it presently interacts with render via a web-api, though the client module aims to interface by calling java client scripts to avoid server-side processing.

Render connection objects created with renderapi.connect() can default to environment variables. Below is an example of the variables which can be sourced and added to, e.g., ~/.bashrc or ~/.bash_profile.

export RENDER_HOST="localhost"
export RENDER_PORT="8080"
export RENDER_PROJECT="YOURPROJECT"
export RENDER_OWNER="YOURNAME"
export RENDER_CLIENT_SCRIPTS=".../render/render-ws-java-client/src/main/scripts"
export RENDER_CLIENT_SCRIPT="$RENDER_CLIENT_SCRIPTS/run_ws_client.sh"
export RENDER_CLIENT_HEAP="1G"

Usage examples for a development Array Tomography workflow are available.

Documentation

http://render-python.readthedocs.io/en/latest/