Go Package


Supported Platforms

Installation

To add the prismaid Go package to your project install it with:

go get "github.com/open-and-sustainable/prismaid"

Use

Import and use the toolkit in your code:

import "github.com/open-and-sustainable/prismaid"

// Run screening on manuscripts
err := prismaid.Screening(tomlConfigString)

// Download papers from Zotero
err := prismaid.DownloadZoteroPDFs(username, apiKey, collectionName, parentDir)

// Convert files to text
err := prismaid.Convert(inputDir, "pdf,docx,html")

// Run a systematic review
err := prismaid.Review(tomlConfigString)

Refer to full documentation on pkg.go.dev for additional details.