mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 00:54:04 +01:00
2.4 KiB
2.4 KiB
Script: list-coffee-prices.ps1
list-coffee-prices.ps1
Parameters
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
Script Content
<#
.SYNOPSIS
List coffee prices
.DESCRIPTION
This PowerShell script queries alphavantage.co and lists the global price of coffee (monthly, in cents per points).
.EXAMPLE
PS> ./list-coffee-prices.ps1
Monthly Global Price of Coffee (by alphavantage.co, in cents per pound)
-----------------------------------------------------------------------
2024-04-01 ████████████████████████████████████████████████████████████████████▌ 240
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
function WriteHorizontalBar { param([float]$Value, [float]$Max)
$Num = ($Value * 100.0) / $Max
while ($Num -ge 1.0) { Write-Host "█" -noNewline; $Num -= 1.0 }
if ($Num -ge 0.875) {
Write-Host "▉" -noNewline
} elseif ($Num -ge 0.75) {
Write-Host "▊" -noNewline
} elseif ($Num -ge 0.625) {
Write-Host "▋" -noNewline
} elseif ($Num -ge 0.5) {
Write-Host "▌" -noNewline
} elseif ($Num -ge 0.375) {
Write-Host "▍" -noNewline
} elseif ($Num -ge 0.25) {
Write-Host "▎" -noNewline
} elseif ($Num -ge 0.125) {
Write-Host "▏" -noNewline
}
Write-Host " $Value" -noNewline
}
try {
Write-Progress "Loading data from www.alphavantage.co..."
$prices = (Invoke-WebRequest -URI "https://www.alphavantage.co/query?function=COFFEE&interval=monthly&apikey=demo" -userAgent "curl" -useBasicParsing).Content | ConvertFrom-Json
Write-Progress -completed "Done."
""
"Monthly $($prices.name) (by alphavantage.co, in $($prices.unit))"
"-----------------------------------------------------------------------"
foreach($item in $prices.data) {
if ($Item.value -eq ".") { continue }
Write-Host "$($item.date) " -noNewline
[int]$value = $Item.value
WriteHorizontalBar $value 350.0
Write-Host "ct"
}
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
(generated by convert-ps2md.ps1 using the comment-based help of list-coffee-prices.ps1 as of 05/19/2024 10:25:21)