/dell-drivers-scraper

scrape the Dell Product Drivers page into a JSON data file

Primary LanguageJavaScript

About

Build status

This scrapes the Dell Product Drivers page into a JSON data file.

Products

Data Files

The code in this repository creates a data/optiplex-7060-desktop.json file, for example:

[
    {
        "name": "Dell OptiPlex 7060 System BIOS",
        "category": "BIOS",
        "importance": "critical",
        "date": "2023-01-12T00:00:00.000Z",
        "url": "https://dl.dell.com/FOLDER09328185M/1/OptiPlex_7060_1.24.0.exe"
    },
]

To get the BIOS and the Intel ME Windows drivers download URLs, you can use something like:

jq -r '[.[] | select(.name == "Dell OptiPlex 7060 System BIOS")] | first' data/optiplex-7060-desktop.json
jq -r '[.[] | select(.name == "Intel Management Engine Components Installer")] | first' data/optiplex-7060-desktop.json

Usage

Install Node.js.

Execute:

npm ci
node main.js