Public/Get-Spitsuur.ps1
function Get-Spitsuur { Invoke-WebRequest -Uri https://www.nrc.nl/rubriek/spitsuur/ ` | Select-Object -ExpandProperty Content ` | pup '.nmt-item a attr{href}' --plain ` | ForEach-Object { $Url = "https://www.nrc.nl$($_)" $DateText = (($Url -split '/')[4..6]) -join '-' $Content = Invoke-WebRequest -Uri $Url | Select-Object -ExpandProperty Content [PSCustomObject][Ordered]@{ PSTypeName = 'UncommonSense.Nrc.Article' Url = $Url Date = [DateTime]::ParseExact($DateText, 'yyyy-MM-dd', $null) Title = (($Content | pup 'h1[data-flowtype="headline"] text{}' --plain) | ForEach-Object { $_.Trim() }) -join ' ' Body = ($Content | pup 'div.content p text{}' --plain) -join ' ' } } } |