class documentation

class BabelLicense(Enum):

View In Hierarchy

License information for a BabelNet item.

Class Method long_name Return the BabelLicence for a given string.
Constant APACHE_20 Apache 2.0 License http://www.apache.org/licenses/LICENSE-2.0
Constant BABELNET_NC BabelNet NonCommercial license https://babelnet.org/license
Constant CC0_10 CC0 1.0 Universal
Constant CC_BY_30 Creative Commons Attribution 3.0 License https://creativecommons.org/licenses/by/3.0/
Constant CC_BY_40 Creative Commons Attribution 4.0 License http://creativecommons.org/licenses/by/4.0/
Constant CC_BY_NC_SA_30 Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License http://creativecommons.org/licenses/by-nc-sa/3.0/
Constant CC_BY_NC_SA_40 Creative Commons Attribution-NonCommercial-ShareAlike 4.0 Unported License http://creativecommons.org/licenses/by-nc-sa/4.0/
Constant CC_BY_SA_30 Creative Commons Attribution-ShareAlike 3.0 License https://creativecommons.org/licenses/by-sa/3.0/
Constant CC_BY_SA_40 Creative Commons Attribution-ShareAlike 4.0 International https://creativecommons.org/licenses/by-sa/4.0/
Constant CECILL_C CeCILL-C free software license agreement http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.txt
Constant COMMERCIAL Babelscape commercial license
Constant GFDL_12 GFDL 1.2 license https://www.gnu.org/licenses/old-licenses/fdl-1.2.html
Constant MIT MIT license https://opensource.org/licenses/MIT
Constant MLP Microsoft language portal materials license http://www.microsoft.com/Language/en-US/LicenseAgreement.aspx
Constant ODC_BY_10 ODC-BY 1.0 license https://opendatacommons.org/licenses/by/1-0/
Constant OTHER Items without specific licenses.
Constant UNRESTRICTED All the permissive licenses without specific restrictions
Constant WORDNET WordNet license https://wordnet.princeton.edu/license-and-commercial-use
Property short_name Get the short name
Property uri Returns a URI associated with this license
Method __repr__ Undocumented
Method __str__ Undocumented
@classmethod
def long_name(cls, string_name):

Return the BabelLicence for a given string.

Parameters
string_name:strThe license string.
Returns
Optional[BabelLicense]The corresponding license.
APACHE_20: BabelLicense =

Apache 2.0 License http://www.apache.org/licenses/LICENSE-2.0

Value
('APCH20', 'http://www.apache.org/licenses/LICENSE-2.0')
BABELNET_NC: BabelLicense =

BabelNet NonCommercial license https://babelnet.org/license

Value
('BNNC', 'https://babelnet.org/license')
CC0_10: BabelLicense =

CC0 1.0 Universal

Value
('CC010', 'https://creativecommons.org/publicdomain/zero/1.0/deed.en')
CC_BY_30: BabelLicense =

Creative Commons Attribution 3.0 License https://creativecommons.org/licenses/by/3.0/

Value
('CB30', 'https://creativecommons.org/licenses/by/3.0/')
CC_BY_40: BabelLicense =

Creative Commons Attribution 4.0 License http://creativecommons.org/licenses/by/4.0/

Value
('CB40', 'http://creativecommons.org/licenses/by/4.0/')
CC_BY_NC_SA_30: BabelLicense =

Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License http://creativecommons.org/licenses/by-nc-sa/3.0/

Value
('CBNS30', 'http://creativecommons.org/licenses/by-nc-sa/3.0/')
CC_BY_NC_SA_40: BabelLicense =

Creative Commons Attribution-NonCommercial-ShareAlike 4.0 Unported License http://creativecommons.org/licenses/by-nc-sa/4.0/

Value
('CBNS40', 'http://creativecommons.org/licenses/by-nc-sa/4.0/')
CC_BY_SA_30: BabelLicense =

Creative Commons Attribution-ShareAlike 3.0 License https://creativecommons.org/licenses/by-sa/3.0/

Value
('CBS30', 'https://creativecommons.org/licenses/by-sa/3.0/')
CC_BY_SA_40: BabelLicense =

Creative Commons Attribution-ShareAlike 4.0 International https://creativecommons.org/licenses/by-sa/4.0/

Value
('CBS40', 'https://creativecommons.org/licenses/by-sa/4.0/')
CECILL_C: BabelLicense =

CeCILL-C free software license agreement http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.txt

Value
('CEC', 'http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.txt')
COMMERCIAL: BabelLicense =

Babelscape commercial license

Value
('CM', '')
GFDL_12: BabelLicense =

GFDL 1.2 license https://www.gnu.org/licenses/old-licenses/fdl-1.2.html

Value
('GFDL12', 'https://www.gnu.org/licenses/old-licenses/fdl-1.2.html')
MIT: BabelLicense =

MIT license https://opensource.org/licenses/MIT

Value
('MIT', 'https://opensource.org/licenses/MIT')
MLP: BabelLicense =

Microsoft language portal materials license http://www.microsoft.com/Language/en-US/LicenseAgreement.aspx

Value
('MLP', 'http://www.microsoft.com/Language/en-US/LicenseAgreement.aspx')
ODC_BY_10: BabelLicense =

ODC-BY 1.0 license https://opendatacommons.org/licenses/by/1-0/

Value
('ODCBY10', 'https://opendatacommons.org/licenses/by/1-0/')
OTHER: BabelLicense =

Items without specific licenses.

Value
('OTHER', '')
UNRESTRICTED: BabelLicense =

All the permissive licenses without specific restrictions

Value
('UNR', '')
WORDNET: BabelLicense =

WordNet license https://wordnet.princeton.edu/license-and-commercial-use

Value
('WORDNET', 'https://wordnet.princeton.edu/license-and-commercial-use')
@property
short_name: str =

Get the short name

@property
uri: Optional[str] =

Returns a URI associated with this license

def __repr__(self):

Undocumented

def __str__(self):

Undocumented