versioning
napt.versioning.keys
Core version comparison utilities for NAPT.
This module is format-agnostic: it does NOT download or read files. It only parses and compares version strings consistently across sources (MSI, EXE, generic strings).
DiscoveredVersion
dataclass
Represents a version string discovered from a source.
Attributes:
| Name | Type | Description |
|---|---|---|
version |
str
|
Raw version string (e.g., "140.0.7339.128"). |
source |
str
|
Where it came from (e.g., "regex_in_url", "msi"). |
Source code in napt/versioning/keys.py
VersionInfo
dataclass
Represents version metadata obtained without downloading the installer.
Used by version-first strategies (web_scrape, api_github, api_json) that can determine version and download URL without fetching the installer.
Attributes:
| Name | Type | Description |
|---|---|---|
version |
str
|
Raw version string (e.g., "140.0.7339.128"). |
download_url |
str
|
URL to download the installer. |
source |
str
|
Strategy name for logging (e.g., "web_scrape", "api_github"). |
Source code in napt/versioning/keys.py
version_key_any
Compute a comparable key for any version string.
- MSI/EXE: purely numeric (truncated to 3/4 parts).
- Generic string: semver-like robust key; if no numeric prefix, fallback to ("text", raw).
Source code in napt/versioning/keys.py
compare_any
Compare two versions with a source hint. Returns -1 if a < b, 0 if equal, 1 if a > b.
Source code in napt/versioning/keys.py
is_newer_any
Decide if 'remote' should be considered newer than 'current'. Returns True iff remote > current under the given source semantics.
Source code in napt/versioning/keys.py
napt.versioning.msi
MSI metadata extraction for NAPT.
This module extracts metadata from Windows Installer (MSI) database files, including ProductVersion, ProductName, and architecture (from Template).
Backend Priority:
On Windows:
- PowerShell COM (Windows Installer COM API, always available)
On Linux/macOS:
- msiinfo (from msitools package, must be installed separately)
Installation Requirements:
Windows:
- No additional packages required (PowerShell is always available)
Linux/macOS:
- Install msitools package:
- Debian/Ubuntu:
sudo apt-get install msitools - RHEL/Fedora:
sudo dnf install msitools - macOS:
brew install msitools
- Debian/Ubuntu:
Example
Extract version from MSI:
from pathlib import Path
from napt.versioning.msi import version_from_msi_product_version
discovered = version_from_msi_product_version("chrome.msi")
print(f"{discovered.version} from {discovered.source}")
# 141.0.7390.123 from msi
Extract full metadata including architecture:
Note
This is pure file introspection; no network calls are made. The PowerShell COM backend reads both the Property table (ProductName, ProductVersion) and Summary Information stream (Template/architecture) in a single database open.
MSIMetadata
dataclass
Represents metadata extracted from an MSI file.
Attributes:
| Name | Type | Description |
|---|---|---|
product_name |
str
|
ProductName from MSI Property table (display name). |
product_version |
str
|
ProductVersion from MSI Property table. |
architecture |
Architecture
|
Installer architecture from MSI Template Summary Information property. Always one of "x86", "x64", or "arm64". |
Source code in napt/versioning/msi.py
version_from_msi_product_version
Extract ProductVersion from an MSI file.
Uses cross-platform backends to read the MSI Property table. On Windows, uses the PowerShell COM API. On Linux/macOS, requires msitools.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_path
|
str | Path
|
Path to the MSI file. |
required |
Returns:
| Type | Description |
|---|---|
DiscoveredVersion
|
Discovered version with source information. |
Raises:
| Type | Description |
|---|---|
PackagingError
|
If the MSI file doesn't exist or version extraction fails. |
NotImplementedError
|
If no extraction backend is available on this system. |
Source code in napt/versioning/msi.py
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 | |
extract_msi_metadata
Extract ProductName, ProductVersion, and architecture from MSI file.
Reads the MSI Property table (ProductName, ProductVersion) and Summary Information stream (Template/architecture) in a single database open. On Windows, uses the PowerShell COM API. On Linux/macOS, requires msitools.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_path
|
str | Path
|
Path to the MSI file. |
required |
Returns:
| Type | Description |
|---|---|
MSIMetadata
|
MSI metadata including product name, version, and architecture. |
Raises:
| Type | Description |
|---|---|
PackagingError
|
If the MSI file doesn't exist or metadata extraction fails. |
ConfigError
|
If the MSI platform is not supported by Intune. |
NotImplementedError
|
If no extraction backend is available on this system. |
Example
Extract MSI metadata:
Note
ProductName may be empty string if not found in MSI. The build phase validates ProductName and raises ConfigError if empty — it is required for detection script generation.
Source code in napt/versioning/msi.py
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 | |
architecture_from_template
Parse MSI Template property into NAPT architecture value.
The Template property format is platform;language_id (semicolon, then optional language codes). Examples: "x64;1033", "Intel;1033,1041", ";1033" (empty platform defaults to Intel).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
template
|
str
|
Raw Template property string from MSI Summary Information. |
required |
Returns:
| Type | Description |
|---|---|
Architecture
|
Architecture value: "x86", "x64", or "arm64". |
Raises:
| Type | Description |
|---|---|
ConfigError
|
If the platform is not supported by Intune (Itanium, ARM32). |
Example
Parse template strings: