Implement a NuGet(.NET) lister
Here is the implementations plan for Nuget(.NET) lister There are several pages in which data of NuGet packages are stored, and to get value the total number of pages we first have to visit this URL (https://api.nuget.org/v3/catalog0/index.json ) It tells the no of pages that are there. Next, we have to get to each and every page (page URL present in the response of the previous API) to get the names of packages and their versions and the link to their metadata. Then we have to visit the metadata URL for each package to get the link for the project URL and the package description.
Migrated from T1718 (view on Phabricator)