Created
September 27, 2013 08:09
-
-
Save anonymous/6725531 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# This will format http://openantrag.de/api/proposal/ID/gettop/100 JSON files into CSV | |
# | |
$list = @() | |
foreach($file in Get-ChildItem -Filter proposal-*.json .) { | |
$list += ((Get-Content -Encoding UTF8 $file) -join "`n" | ConvertFrom-Json); | |
} | |
$list | select Key_Representation, Id, Title, CreatedAt, ID_CurrentProposalStep, IsAbuse | ConvertTo-Csv > file.csv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment