5. Edit#
A rivt file is a Python file (utf-8 ) that includes the import statement
import rivtlib.rivtapi as rv
providing four primary API functions (7 total).
API#
The API functions take a triple quoted string as the single argument. When running in an IDE (e.g. VSCode) API functions may be grouped and executed interactively using the standard cell decorator # %%. Interactive output is formatted as utf-8 text. Document and report files are generated by the functions rv.write_public() and rv.write_private() which output files in GitHub Flavored Markdown (GFM) and PDF.
API |
Name |
Purpose |
rv.R |
Run |
Run external programs |
rv.I |
Insert |
Insert static resources |
rv.V |
Value |
Calculate values |
rv.T |
Tool |
Python functions |
rv.X |
Exclude |
Skip rivt function (editing) |
rv.W |
Write |
Write docs or reports and exit |
rv.Q |
Quit |
Exit rivt |
Each API function defines a document section which may be arranged in any order or frequency.
Syntax#
The first line of each function includes a section label (that also may be a section title) followed by formatting parameters. New sections may be labeled as separate or integrated with preceding sections. The section body can contain any utf-8 text. Commands and tags applicable to each function are defined [here](#commands) and [here](#tags).
rivt syntax includes COMMANDS for file operations and TAGS for text formatting. Any text not defined by commands or tags is passed through as restructuredText. COMMANDS and
Commands#
Commands read and write external files. They start in the first column with one or two vertical bars. A double bar is used for write commands (||) and a single bar (|) for read commands. The command bar is followed by the command name, relative file path and parameters, all separated by a single bar:
| A READ COMMAND | relative file path | params
|| A WRITE COMMAND | relative file path | params
In the syntax description below parameter options are separated with semi-colons and list elements by commas. Optional parameters are in parenthesis. File locations are specified using paths relative to the rivt file location and the folder structure. File alias are also implemented. Folder organization is described here.
READ
Scope |
Command |
File Types |
rv.V |
| VALREAD | rel. pth | [rows] |
.csv |
rv.I |
| TABLE | rel. pth | col width, l;c;r, [rows] |
.csv, .txt, .xlsx |
rv.I |
| IMG | rel. pth | caption, scale, - ;**[_F]** |
.png, .jpg |
rv.I |
| IMG2 | rel. pth | c1, c2, s1, s2, -;**[_F]** |
.png, .jpg |
rv.I |
| TEXT | rel. pth | plain; rivt; literal; latex |
.txt, .tex |
rv.I |
| APPEND | rel. pth | num; nonum |
WRITE
Scope |
Command |
Notes |
rv.V |
a = 1+1 | reference | units | decimals |
= is command tag |
rv.W |
|| DOC | docs | (pdf, txt, html, pdf2) |
pdf2 uses rst2pdf |
rv.W |
|| REPORT | docs | (pdf, txt, html, pdf2) |
pdf uses latex pdf |