An open API service indexing awesome lists of open source software.

https://github.com/yglukhov/plists

plist library for Nim
https://github.com/yglukhov/plists

Last synced: 7 months ago
JSON representation

plist library for Nim

Awesome Lists containing this project

README

          

===========
plists
===========

Generate and parse Mac OS X `.plist` files in `Nim `_.
The library uses Nim's JsonNode as a primary data structure.

Installation
------------
.. code-block:: sh

nimble install plists

Usage
------------
.. code-block:: nim

import plists

let p : JsonNode = loadPlist("/Applications/Calculator.app/Contents/Info.plist")
doAssert(p["CFBundleExecutable"].str == "Calculator")
writePlist(p, "test.plist")