Installation
Siren is available for use in JavaScript (with type support), Python, F# and C#. Depending on your preferred language you can use any best practises of installation.
You can find the latest releases below:
Latest Release | Downloads |
---|---|
Reference
- F# (.fsx)
- C# (.ipynb)
- Python
- JavaScript
#r "nuget: Siren"
open Siren
let graph =
siren.git [
git.commit()
]
|> siren.write
printfn "%s" graph
// Using Polyglot Notebooks extensions
#r "nuget:Siren.Sea"
using Siren.Sea;
string graph =
siren.git([
git.commit(),
]).write();
Console.Write(graph);
from siren_dsl import siren, git
str = (
siren.git([
git.commit()
]).write()
)
print(str)
import {siren, git} from 'siren-dsl';
const str = siren.git([
git.commit()
]).write();
console.log(str);