Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hroncok/license
Python library that encapsulates free software licenses
https://github.com/hroncok/license
license license-management python
Last synced: 20 days ago
JSON representation
Python library that encapsulates free software licenses
- Host: GitHub
- URL: https://github.com/hroncok/license
- Owner: hroncok
- License: other
- Created: 2015-07-08T14:36:14.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-08-22T16:45:32.000Z (over 2 years ago)
- Last Synced: 2024-12-01T15:09:05.755Z (about 1 month ago)
- Topics: license, license-management, python
- Language: Python
- Homepage: https://pypi.python.org/pypi/license
- Size: 71.3 KB
- Stars: 20
- Watchers: 2
- Forks: 8
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- License: LICENSE.txt
Awesome Lists containing this project
README
license
=======.. image:: https://badge.fury.io/py/license.svg
:target: http://badge.fury.io/py/license.. image:: http://img.shields.io/:license-mit-green.svg?style=flat
:target: http://opensource.org/licenses/MIT.. image:: https://travis-ci.org/hroncok/license.png?branch=master
:target: https://travis-ci.org/hroncok/licenselicense is a Python library providing some metadata about common free software licenses, such as
GNU GPL, MIT and others. It is compatible with Python 3.3+ and legacy Python 2.7.Basic usage
-----------To get a license, you can use `SPDX license identifier `_:
.. code-block:: python
import license
mit = license.find('MIT')Each license is a static class providing a few properties:
* ``id`` - the SPDX identifier
* ``name`` - a human readable name of the license
* ``rpm`` - `license identifier used in Fedora, RHEL and CentOS RPMs `_
* ``python`` - `PyPI classifier `_
* ``url`` - link to a license description or website.. code-block:: python
mit.python
'License :: OSI Approved :: MIT License'License classes also offer a static method ``render()`` that will output the entire license text.
Some variables have to be passed to it, usually ``name``, ``email`` and optional ``year``
(current year is used when omitted)... code-block:: python
mit.render(name='Petr Foo', email='[email protected]')
'''The MIT License (MIT)
Copyright (c) 2015 Petr Foo
Permission is hereby granted... (snip)'''Some licenses (such as the ones from GPL family) also have a header text, that's supposed to be
added to each source file. ``header()`` is used to render that, but be careful, if the license does
not use special header, ``AttributeError`` is risen... code-block:: python
mit.header(name='Petr Foo', email='[email protected]')
AttributeError: The MIT license uses no headerIf you want to search the licenses by some other key, you can:
.. code-block:: python
bsd = license.find_by_key('rpm', 'BSD')
bsd
[license.licenses.BSD3ClauseLicense, license.licenses.BSD2ClauseLicense]``bsd`` is now a list, because unlike SPDX identifiers, other keys might not always be unique. If
you only need the first license with such identifier, you can pass ``multiple=False`` to
``find_by_key()``:.. code-block:: python
bsd = license.find_by_key('rpm', 'BSD', multiple=False)
bsd
license.licenses.BSD3ClauseLicenseIf such license is not found, you'll get ``KeyError`` instead, the same as with regular ``find()``.
In case you would like to perform a lot of searches by some key, you can build and index, which
should (in theory) make the searches faster (no measurements have been performed)... code-block:: python
license.build_index('rpm')
In case you want to get rid of an index, use ``license.delete_index(key)``. It is safe to call it
even if the index does not exist.It is also possible to use ``find_by_function()`` to find licenses that match a certain expression.
The function should accept one argument (the license class) and return True if the license is
supposed to be in the results:.. code-block:: python
osi = license.find_by_function(lambda l: l.python.startswith('License :: OSI Approved :: '))
Again, it returns a list and has ``multiple`` argument to change that.
In case a simple function is not enough, you can iterate over all the license with
``license.iter()``:.. code-block:: python
for cls in license.iter():
# do somethingAdding licenses
---------------The current license list is in no way much extensive, so maybe your favorite license is not in
there. If you wish to change that, add the license to ``license/licenses.py`` and a template(s) to
``license/templates``, and send a `pull request on GitHub
`_. See the current licenses to learn how to do it.
A license class looks like this:.. code-block:: python
class AGPLv3LaterLicense(license.base.License):
'''
GNU Affero General Public License v3.0 or later
'''
id = 'AGPL-3.0+'
rpm = 'AGPLv3+'
python = 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)'
url = 'http://www.gnu.org/licenses/agpl-3.0.html'One license can inherit from other and omit the keys that are equal. Note that the docstring is
important and it is used as ``name`` property. License template is named as ``id``, header template
is named with ``__header`` suffix.If you wish to add custom licenses in your code, you can do that as well. If you won't use
``render()`` or ``header()``, the thing is simple. Just define such class anywhere and call
``license.register()`` on it.However, if you would then call ``render()`` or ``header()``, the template would hove not been
found. In that case, you have to create a *Custom Base License* with a ``jinja2`` template loader... code-block:: python
CustomBaseLicense = license.base.custom_license_base_class(loader=jinja2.FileSystemLoader('path/to/templates'))
class CustomLicense(CustomBaseLicense):
...license.register(CustomLicense)
The ``loader`` can be any valid `jinja2 loader `_.
If you wish to register multiple classes at once, you can use ``license.autoregister()`` that will
register all classes present in given module. You will not want to register your
``CustomBaseLicense``, so you'll pass it in the ``ignore`` argument... code-block:: python
license.autoregister(sys.modules[__name__], ignore=[CustomBaseLicense])Note that if you add custom licenses and use ``license.build_index()``, you want to build the index
after registering them. Calling ``build_index()`` multiple times is safe.(Possibly) Frequently Asked Questions
-------------------------------------Why are licenses represented as subclasses and not instances of ``License``?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~This way, it is easier to inherit data between multiple licenses. The definition of classes is
easier maintainable and readable.Isn't ``license`` a reserved name?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Yes, it is, it prints the Python's license. Possibly something you would only use in an interactive
Python console. By importing this library, you are overriding it. We could have named the library
with something cool and unique, such as ``licenraptor``, but we wanted to make the name as easy as
possible. In case you don't like this, you can always do ``import license as somethignelse``.Aren't there already Python tools that can render license texts?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Yes, they are. However all of them are command line utilities and provide no API for Python
programmers.* `choosealicense-cli `_
* `licenser `_
* `licen `_
* `garnish `_