Created
March 22, 2019 21:30
-
-
Save lazywinadmin/8e79bea6a70489f9e012c4a5621374be to your computer and use it in GitHub Desktop.
Parse PowerShell Gallery (PSGallery) stats in PowerShell Core
This file contains hidden or 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
((iwr https://www.powershellgallery.com/stats/packages).content -split '\r\n' |sls -Pattern '<a href="/packages/' -Context 0,1)|%{[pscustomobject]@{'Package'=$_.line -replace '<td><a href="/packages/.+/">|</a></td>|\s+';"Stats"=([string]($_.context.postcontext) -replace '\s+|<td><a href="/stats/packages/.+?groupby=Version">|</a></td>')-as [int];"Link"=-join("https://www.powershellgallery.com",$_.line -replace '<td><a href="|/">.+</a></td>|\s+')}}|select -first 100 | |
<# | |
Package Stats Link | |
------- ----- ---- | |
SpeculationControl 20195596 https://www.powershellgallery.com/packages/SpeculationControl | |
AzureRM.profile 2205020 https://www.powershellgallery.com/packages/AzureRM.profile | |
Carbon 1507538 https://www.powershellgallery.com/packages/Carbon | |
AzureRM.KeyVault 1398051 https://www.powershellgallery.com/packages/AzureRM.KeyVault | |
PSSlack 1201068 https://www.powershellgallery.com/packages/PSSlack | |
PSLogging 928318 https://www.powershellgallery.com/packages/PSLogging | |
PackageManagement 892472 https://www.powershellgallery.com/packages/PackageManagement | |
PowerShellGet 822365 https://www.powershellgallery.com/packages/PowerShellGet | |
Azure.Storage 812592 https://www.powershellgallery.com/packages/Azure.Storage | |
PSWindowsUpdate 727622 https://www.powershellgallery.com/packages/PSWindowsUpdate | |
powershell-yaml 711017 https://www.powershellgallery.com/packages/powershell-yaml | |
PSDscResources 604363 https://www.powershellgallery.com/packages/PSDscResources | |
AzureRM.Automation 585728 https://www.powershellgallery.com/packages/AzureRM.Automation | |
AzureRM.Compute 541854 https://www.powershellgallery.com/packages/AzureRM.Compute | |
AzureRM.OperationalInsights 500537 https://www.powershellgallery.com/packages/AzureRM.OperationalInsights | |
AzureRM.ApiManagement 498501 https://www.powershellgallery.com/packages/AzureRM.ApiManagement | |
AzureRM.Network 496005 https://www.powershellgallery.com/packages/AzureRM.Network | |
AzureRM.Batch 489012 https://www.powershellgallery.com/packages/AzureRM.Batch | |
AzureRM.Insights 486665 https://www.powershellgallery.com/packages/AzureRM.Insights | |
AzureRM.AnalysisServices 484999 https://www.powershellgallery.com/packages/AzureRM.AnalysisServices | |
#> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment