Skip to contents

Print a Screaming Frog bundle

Usage

# S3 method for class 'screaming_frog_bundle'
print(x, ...)

Arguments

x

A `screaming_frog_bundle` object.

...

Unused; for S3 compatibility.

Value

`x`, invisibly.

Examples

internal <- data.frame(
  Address = c("https://example.com/", "https://example.com/a"),
  `Status Code` = c("200", "200"),
  check.names = FALSE
)
links <- data.frame(
  Type = "Hyperlink",
  Source = "https://example.com/",
  Destination = "https://example.com/a",
  Follow = "TRUE",
  check.names = FALSE
)
bundle <- screaming_frog_bundle(internal, links, "all_outlinks")
print(bundle)
#> === Screaming Frog Bundle ===
#> 
#> Rows
#>   Nodes:         2 
#>   Observations:  1 
#>   Edges:         1 
#>   Redirects:     0 
#>   Canonicals:    0 
#> 
#> Losses / reconciliation
#>   Canonicals off domain:   0 
#>   Excluded by type:        0 
#>   Invalid graph endpoints: 0 
#>   Edge endpoints absent:   0 
#>   Nodes absent from graph: 0