R/pithon.available.R

Defines functions pithon.available

Documented in pithon.available

pithon.available <- function(instance.name = "")
{
	avail <- FALSE

	tryCatch({
		iname <- instance.name
		pithon.get("sys.version", instance.name=iname)
		avail <- TRUE
	}, error = function(e) { })

	return(avail)
}

Try the rPithon package in your browser

Any scripts or data that you put into this service are public.

rPithon documentation built on May 2, 2019, 5:51 p.m.