SplittyDev / spacebadgers

Fast and clean SVG badges
https://badgers.space
MIT License
252 stars 4 forks source link

Parse PyPI classifiers #25

Open SplittyDev opened 1 year ago

SplittyDev commented 1 year ago

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"
            // ...
        ],
        // ...
    },
    // ...
}