spacebadgers icon indicating copy to clipboard operation
spacebadgers copied to clipboard

Parse PyPI classifiers

Open SplittyDev opened this issue 2 years ago • 0 comments

Parsing the PyPI classifiers is sometimes needed to determine the license.

Example (fastapi):

{
    "info": {
        // ...
        "classifiers": [
            // ...
            "License :: OSI Approved :: MIT License",
            "Operating System :: OS Independent",
            "Typing :: Typed"
            // ...
        ],
        // ...
    },
    // ...
}

SplittyDev avatar Jun 11 '23 00:06 SplittyDev