Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 572 Bytes

README.md

File metadata and controls

32 lines (21 loc) · 572 Bytes

wtotariffcrawler

The goal of wtotariffcrawler is to …

Installation

remotes::install_github("chinhungtseng/wtotariffcrawler")

Example

This is a basic example which shows you how to solve a common problem:

library(wtotariffcrawler)

countries <- country_pool()
for (i in seq_len(nrow(countries))) {
  import <- countries$import[i]
  export <- countries$export[i]
  tariff_downloader(import, export)
  Sys.sleep(3600)
}