create_etl_package: Create an ETL package skeleton

View source: R/utils.R

create_etl_packageR Documentation

Create an ETL package skeleton

Description

Create an ETL package skeleton

Usage

create_etl_package(...)

Arguments

...

arguments passed to usethis::create_package()

Details

Extends usethis::create_package() and places a template source file in the R subdirectory of the new package. The file has a working stub of etl_extract(). The new package can be built immediately and run.

New S3 methods for etl_transform() and etl_load() can be added if necessary, but the default methods may suffice.

See Also

etl_extract(), etl_transform(), etl_load()

Examples

## Not run: 
path <- file.path(tempdir(), "scorecard")
create_etl_package(path)

## End(Not run)
# Now switch projects, and "Install and Restart"

etl documentation built on Aug. 8, 2025, 7:15 p.m.