Licensecheck Index / Licensecheck / Types
Auto-generated documentation for licensecheck.types module.
-
PUBLIC
- Public domain: 0 -
MIT
- Permissive GPL compatible: 10 -
APACHE
- Other permissive: 20 -
LGPL_X
- LGPL: 30 -
GPL_X
- GPL: 40 -
AGPL_3_PLUS
- AGPL: 50 -
MPL
- Other copyleft: 60 -
PROPRIETARY
- PROPRIETARY: 190 -
NO_LICENSE
- No License: 200
License Enum to hold a set of potential licenses.
class License(Enum): ...
PackageInfo type.
class PackageInfo: ...
Set the namever once the object is initialised.
def __post_init__(self) -> None: ...
Return a filtered dictionary of the object.
:param list[ucstr] hide_output_parameters: list of parameters to ignore
Type: dict filtered dictionary
def get_filtered_dict(self, hide_output_parameters: list[ucstr]) -> dict: ...
Uppercase string.
class ucstr(str): ...
Create a new ucstr from a str.
v
str - string to cast
Type: ucstr uppercase string.
def __new__(cls, v: str | None): ...