shiori

SHIORI Protocol Parser/Builder

Pure Nim score 30/100 · tests present · docs generated

Summary

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

Installation

nimble install shiori
choosenim install shiori
git clone https://github.com/Narazaka/shiori-nim

OS Compatibility

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

Source

Repository https://github.com/Narazaka/shiori-nim
Homepage https://github.com/Narazaka/shiori-nim
Documentation View Documentation
Registry Source nimble_official

README

shiori

SHIORI Protocol Parser/Builder for Nim lang

Install

nimble install shiori

Usage

API Document

import shiori

let request = parseRequest("GET SHIORI/3.0\nCharset: UTF-8\n\n")
echo $request

var response = newResponse(status: Status.OK, headers: {"Value": "foo"}.newOrderedTable)
response.version = "3.0"
response.charset = "UTF-8"
echo $response

License

This is released under MIT License.