You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
boB Rudis 8b830aa755
README
5 years ago
R initial commit 5 years ago
inst/tinytest R package repo initialization complete 5 years ago
man initial commit 5 years ago
src initial commit 5 years ago
tests R package repo initialization complete 5 years ago
.Rbuildignore initial commit 5 years ago
.codecov.yml R package repo initialization complete 5 years ago
.gitignore R package repo initialization complete 5 years ago
.travis.yml R package repo initialization complete 5 years ago
CONDUCT.md R package repo initialization complete 5 years ago
DESCRIPTION README 5 years ago
LICENSE initial commit 5 years ago
LICENSE.md initial commit 5 years ago
NAMESPACE initial commit 5 years ago
NEWS.md R package repo initialization complete 5 years ago
README.Rmd README 5 years ago
README.md README 5 years ago
plist.Rproj R package repo initialization complete 5 years ago

README.md

Project Status: Active – The project has reached a stable, usablestate and is being activelydeveloped. Signedby Signed commit% Linux buildStatus
Minimal RVersion License

plist

Read and Manipulate Binary or XML Property Lists

Description

A property list is a representation of a hierarchy of objects that can be stored in the file system, memory, or databases and reconstituted later. Property lists give applications a lightweight and portable way to store small amounts of data. They are hierarchies of data made from specific types of objects—they are, in effect, an object graph. Tools are provided to read and manipulate binary or XML property lists.

NOTE Requires libplist.

What’s Inside The Tin

The following functions are implemented:

  • plist_to_list: Convert a property list (binary or XML) to an R list
  • plist_to_xml: Convert a property list to raw (unparsed) XML

Installation

remotes::install_git("https://git.rud.is/hrbrmstr/plist.git")
# or
remotes::install_git("https://git.sr.ht/~hrbrmstr/plist")
# or
remotes::install_gitlab("hrbrmstr/plist")
# or
remotes::install_bitbucket("hrbrmstr/plist")
# or
remotes::install_github("hrbrmstr/plist")

NOTE: To use the ‘remotes’ install options you will need to have the {remotes} package installed.

Usage

library(plist)

# current version
packageVersion("plist")
## [1] '0.1.0'

plist Metrics

Lang # Files (%) LoC (%) Blank lines (%) # Lines (%)
C++ 2 0.29 37 0.61 16 0.37 4 0.07
R 4 0.57 16 0.26 11 0.26 28 0.46
Rmd 1 0.14 8 0.13 16 0.37 29 0.48

Code of Conduct

Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.