moss_nim

Moss (Measure of Software Similarity) implementation in Nim.

Pure Nim score 15/100 · tests present · no docs generated

Summary

Latest Version Unknown
License MIT
CI Status Failing
Downloads 0
Last Indexed 2026-07-22 05:28

Installation

nimble install moss_nim
choosenim install moss_nim
git clone https://github.com/D4D3VD4V3/moss_nim

OS Compatibility

Platform Linux macOS Windows FreeBSD OpenBSD NetBSD Android iOS WASM Embedded
moss_nim - - - - - - -

Source

Repository https://github.com/D4D3VD4V3/moss_nim
Homepage https://github.com/D4D3VD4V3/moss_nim
Registry Source nimble_official

README

moss_nim

Moss (Measure of Software Similarity) submission script in Nim.

Installation

nimble install mossnim

Usage

import browsers, moss_nim, os

var moss = initMossNim(userid = getEnv("MOSS_USERID"), language = "python")
moss.addBaseFile("submission/test.py")
moss.addFile("submission/test2.py")
moss.addFilesByWildcard("submission/tests*.py")

var url: string = moss.send()
echo("URL: " & url)
openDefaultBrowser(url)

Inspiration

This project is inspired by the original Bash script implementation and a Python version.