If anyone is looking for a hacktoberfest pull requ...
# hacktoberfest
c
If anyone is looking for a hacktoberfest pull request to work on that counts towards hacktoberfest and the umbraco one, then have a look at this. Comment if you are interested in working on it. https://github.com/prjseal/Package-Script-Writer/issues/27
a
I have some code for that 😎
I build this (yet to be released) package back in March. It supports getting/searching for packages: https://github.com/limbo-works/Limbo.Integrations.Marketplace
eg:
Copy code
csharp
@using Limbo.Integrations.Marketplace
@using Limbo.Integrations.Marketplace.Options.Packages
@using Limbo.Integrations.Marketplace.Responses.Packages
@{

    MarketplaceHttpService marketplace = new MarketplaceHttpService();

    MarketplacePagkageListResponse response = await marketplace.GetPackagesAsync(new MarketplaceGetPackagesOptions {
        OrderBy = MarketplacePackageSortField.MostDownloaded,
        PageSize = 25
    });

    <pre>@response.Body.Results.Count</pre>

}