-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathDESCRIPTION
22 lines (22 loc) · 947 Bytes
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Package: selectr
Type: Package
Title: Translate CSS Selectors to XPath Expressions
Version: 0.4-2
Date: 2019-11-20
Authors@R: c(person("Simon", "Potter",
role = c("aut", "trl", "cre"),
email = "[email protected]"),
person("Simon", "Sapin", role = "aut"),
person("Ian", "Bicking", role = "aut"))
License: BSD_3_clause + file LICENCE
Depends: R (>= 3.0)
Imports: methods, stringr, R6
Suggests: testthat, XML, xml2
URL: https://sjp.co.nz/projects/selectr
BugReports: https://github.com/sjp/selectr/issues
Description: Translates a CSS3 selector into an equivalent XPath
expression. This allows us to use CSS selectors when working with
the XML package as it can only evaluate XPath expressions. Also
provided are convenience functions useful for using CSS selectors on
XML nodes. This package is a port of the Python package 'cssselect'
(<https://cssselect.readthedocs.io/>).