PowerShell 技能连载 - 通过 PowerShell 调用 COVID 服务

您想及时了解 Covid 疫情数据吗?试试这个简单的 webservice:

1
2
3
$result = Invoke-RestMethod -Uri "https://coronavirus-19-api.herokuapp.com/countries"

$result -match "Germany"

结果类似于:

country             : Germany
cases               : 4480066
todayCases          : 0
deaths              : 95794
todayDeaths         : 0
recovered           : 4215200
active              : 169072
critical            : 1336
casesPerOneMillion  : 53248
deathsPerOneMillion : 1139
totalTests          : 73348901
testsPerOneMillion  : 871788

PowerShell 技能连载 - 通过 PowerShell 调用 COVID 服务

http://blog.vichamp.com/2021/11/25/covid-webservice-with-powershell/

作者

吴波

发布于

2021-11-25

更新于

2022-07-06

许可协议

评论