gracile-cli-0.1.0 is not a library.

gracile-cli
Command-line interface for the Gracile templating engine. Render templates directly from the terminal with a JSON or TOML data file — no code required.
Installation
Usage
# Render a template with data from a JSON file
# Render with inline JSON data
# Write output to a file
# Enable strict mode (undefined variables are errors)
Example
# template.html
Hello, {name}!
{#if items}
{#each items as item}
- {item}
{/each}
{:else}
Nothing here.
{/if}