VSmarketplace scrapper
v0.0.1
Get the details of an extension from marketplace.visualstudio.com.
Details are:
title: STRINGpublisher_name: STRINGdefault_image: URLinstalls: INTEGERAll you need is the extension ID eg: muremwa.read-urls
The extension ID is called the 'Unique Identifier'.
You can install using pip.
pip install marketplace-scrapper
Import the main function.
import vscrap
details = vscrap.get_extension_details('muremwa.read-urls')The main function returns a dict with the details as described above.

Use the scrap.extension module and add one argument, the extension ID.
python -m scrap.extension muremwa.read-urls
