# go-plist **Repository Path**: mirrors_chromium_googlesource/go-plist ## Basic Information - **Project Name**: go-plist - **Description**: No description available - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-03-19 - **Last Updated**: 2025-08-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # plist - A pure Go property list transcoder [![coverage report](https://gitlab.howett.net/go/plist/badges/main/coverage.svg)](https://gitlab.howett.net/go/plist/commits/main) ## INSTALL ``` $ go get howett.net/plist ``` ## FEATURES * Supports encoding/decoding property lists (Apple XML, Apple Binary, OpenStep and GNUStep) from/to arbitrary Go types ## USE ```go package main import ( "howett.net/plist" "os" ) func main() { encoder := plist.NewEncoder(os.Stdout) encoder.Encode(map[string]string{"hello": "world"}) } ```