Skip to content

scrape the Dell Product Drivers page into a JSON data file

Notifications You must be signed in to change notification settings

rgl/dell-drivers-scraper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

71 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

scrape the Dell Product Drivers page into a JSON data file

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published