An open API service indexing awesome lists of open source software.

https://github.com/zkamvar/toscr

Read and manipulate touchOSC layout files
https://github.com/zkamvar/toscr

touchosc

Last synced: about 1 year ago
JSON representation

Read and manipulate touchOSC layout files

Awesome Lists containing this project

README

          

---
output: github_document
---

```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```

# toscr

[![R build status](https://github.com/zkamvar/toscr/workflows/R-CMD-check/badge.svg)](https://github.com/zkamvar/toscr/actions)

The goal of {toscr} is to read, manipulate, and write `touchosc` files.

## Installation

The development version from [GitHub](https://github.com/) with:

``` r
# install.packages("devtools")
devtools::install_github("zkamvar/toscr")
```
## Example

This is a basic example which shows you how to solve a common problem:

```{r example}
library(toscr)
basic <- system.file("extdata", "basic.touchosc", package = "toscr")
x <- tosc_read(basic)
xml2::xml_find_all(x, ".//control")
```