链接到GitHub存储库中上传的最新文件

问题描述 投票:1回答:1

是否有一种方法可以获取到GitHub存储库中某个文件夹中上载的最新文件的RAW链接?

例如,这是链接(到特定文件):

https://raw.githubusercontent.com/CSSEGISandData/2019-nCoV/master/daily_case_updates/02-10-2020_1030.csv

有没有一种方法可以获取到最新链接的链接?

git url github github-pages github-api
1个回答
1
投票

将其放入脚本中

function reverse(collection) {
  if (typeof collection != "object") {
    return collection
  }
  return collection.reverse()
}

然后使用以下内容,所需的单元格始终为B2 =reverse(IMPORTHTML("https://github.com/CSSEGISandData/2019-nCoV/tree/master/daily_case_updates","table", 1))

© www.soinside.com 2019 - 2024. All rights reserved.