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