-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathDESCRIPTION
43 lines (43 loc) · 1.5 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
Package: curlconverter
Type: Package
Title: Tools to Transform 'cURL' Command-Line Calls to 'httr' Requests
Version: 1.1.1
Date: 2021-06-22
Authors@R: c(
person("Bob", "Rudis", email = "bob@rud.is", role = c("aut", "cre"),
comment = c(ORCID = "0000-0001-5670-2640"))
)
Author: Bob Rudis (bob@rud.is)
Maintainer: Bob Rudis <bob@rud.is>
Description: Deciphering web/'REST' 'API' and 'XHR' calls can be tricky, which is one reason
why internet browsers provide "Copy as 'cURL'" functionality within their "Developer Tools"
pane(s). These 'cURL' command-lines can be difficult to wrangle into an 'httr' 'GET' or
'POST' request, but you can now "straighten" these 'cURLs' either from data copied to the
system clipboard or by passing in a vector of 'cURL' command-lines and getting back a
list of parameter elements which can be used to form 'httr' requests. You can also make a
complete/working/callable 'httr::VERB' function right from the tools provided.
SystemRequirements: xclip <http://sourceforge.net/projects/xclip/> or xsel
<http://www.vergenet.net/~conrad/software/xsel/> for accessing the X11
clipboardURL: https://github.com/hrbrmstr/curlconverter
BugReports: https://github.com/hrbrmstr/curlconverter/issues
License: MIT + file LICENSE
Encoding: UTF-8
LazyData: true
Suggests:
testthat,
covr
Depends:
R (>= 3.2.0),
httr
Imports:
curl,
clipr,
stringi,
formatR,
magrittr,
jsonlite,
methods,
docopt,
stats,
styler
RoxygenNote: 7.1.1