Public/Get-Zomeravondgesprek.ps1
function Get-Zomeravondgesprek { Invoke-WebRequest -Uri 'https://www.nrc.nl/dossier/zomeravondgesprek-2022/' ` | 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) Body = ($Content | pup 'div.content p text{}' --plain) -join ' ' } } } |