invenio-access


Nameinvenio-access JSON
Version 2.0.0 PyPI version JSON
download
home_pagehttps://github.com/inveniosoftware/invenio-access
SummaryInvenio module for common role based access control.
upload_time2023-06-14 15:28:29
maintainer
docs_urlhttps://pythonhosted.org/invenio-access/
authorCERN
requires_python>=3.7
licenseMIT
keywords invenio access
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ..
    This file is part of Invenio.
    Copyright (C) 2015-2018 CERN.

    Invenio is free software; you can redistribute it and/or modify it
    under the terms of the MIT License; see LICENSE file for more details.

================
 Invenio-Access
================

.. image:: https://img.shields.io/github/license/inveniosoftware/invenio-access.svg
        :target: https://github.com/inveniosoftware/invenio-access/blob/master/LICENSE

.. image:: https://github.com/inveniosoftware/invenio-access/workflows/CI/badge.svg
        :target: https://github.com/inveniosoftware/invenio-access/actions?query=workflow%3ACI

.. image:: https://img.shields.io/coveralls/inveniosoftware/invenio-access.svg
        :target: https://coveralls.io/r/inveniosoftware/invenio-access

.. image:: https://img.shields.io/pypi/v/invenio-access.svg
        :target: https://pypi.org/pypi/invenio-access


Role-based access control (RBAC) for Invenio.

Invenio-Access works together with Invenio-Accounts to provide a full-fledge
authentication and authorization system for Flask and Invenio based on a suite
of existing Flask extensions such as:

- Flask-Security
- Flask-Login
- Flask-Principal
- passlib

Features:

* Role-based access control with object level permissions.
* CLI and administration interface for allowing/denying actions to users, roles
  or system roles.
* Support for superuser privileges.

Further documentation is available on
https://invenio-access.readthedocs.io/

..
    This file is part of Invenio.
    Copyright (C) 2015-2022 CERN.

    Invenio is free software; you can redistribute it and/or modify it
    under the terms of the MIT License; see LICENSE file for more details.

Changes
=======

Version 2.0.0 (released 2022-06-14)

- upgrade invenio-accounts dependency
- models: change role_id FK of ActionRoles to string

Version 1.4.4 (released 2022-04-01)

- fix compat issue with Werkzeug 2.1

Version 1.4.3 (released 2022-03-30)

- add support for Flask 2.1, Werkzeug 2.1 and Click 8.1
- bump dependency on invenio-base, invenio-accounts and invenio-i18n

Version 1.4.2 (released 2021-02-16)

- adds a new system role "system_process".
- adds a new identity providing the system process role.

Version 1.4.1 (released 2020-05-07)

- set Sphinx ``<3`` because of errors related to application context
- stop using example app

Version 1.4.0 (released 2020-03-12)

- drop Python 2.7 support
- change Flask dependency management to centralised by invenio-base

Version 1.3.2 (released TBD)

- set Sphinx ``<3`` because of errors related to application context
- stop using example app

Version 1.3.1 (released 2020-01-22)

- increase minimal six version

Version 1.3.0 (released 2019-11-15)

- Adds explicit excludes of needs feature to load permission

Version 1.2.0 (released 2019-08-02)

- Removes DynamicPermission

Version 1.1.0 (released 2018-12-14)

Version 1.0.2 (released 2018-10-31)

- Additional test for AnyonymousIdentity loaded on request

Version 1.0.1 (released 2018-05-18)

- Removal of Click warning messages.


Version 1.0.0 (released 2018-03-23)

- Initial public release.



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/inveniosoftware/invenio-access",
    "name": "invenio-access",
    "maintainer": "",
    "docs_url": "https://pythonhosted.org/invenio-access/",
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "invenio access",
    "author": "CERN",
    "author_email": "info@inveniosoftware.org",
    "download_url": "https://files.pythonhosted.org/packages/80/74/554383928318e0a47bbfeb761c9284e4113417ff6c7b06a8de55ab9ea598/invenio-access-2.0.0.tar.gz",
    "platform": "any",
    "description": "..\n    This file is part of Invenio.\n    Copyright (C) 2015-2018 CERN.\n\n    Invenio is free software; you can redistribute it and/or modify it\n    under the terms of the MIT License; see LICENSE file for more details.\n\n================\n Invenio-Access\n================\n\n.. image:: https://img.shields.io/github/license/inveniosoftware/invenio-access.svg\n        :target: https://github.com/inveniosoftware/invenio-access/blob/master/LICENSE\n\n.. image:: https://github.com/inveniosoftware/invenio-access/workflows/CI/badge.svg\n        :target: https://github.com/inveniosoftware/invenio-access/actions?query=workflow%3ACI\n\n.. image:: https://img.shields.io/coveralls/inveniosoftware/invenio-access.svg\n        :target: https://coveralls.io/r/inveniosoftware/invenio-access\n\n.. image:: https://img.shields.io/pypi/v/invenio-access.svg\n        :target: https://pypi.org/pypi/invenio-access\n\n\nRole-based access control (RBAC) for Invenio.\n\nInvenio-Access works together with Invenio-Accounts to provide a full-fledge\nauthentication and authorization system for Flask and Invenio based on a suite\nof existing Flask extensions such as:\n\n- Flask-Security\n- Flask-Login\n- Flask-Principal\n- passlib\n\nFeatures:\n\n* Role-based access control with object level permissions.\n* CLI and administration interface for allowing/denying actions to users, roles\n  or system roles.\n* Support for superuser privileges.\n\nFurther documentation is available on\nhttps://invenio-access.readthedocs.io/\n\n..\n    This file is part of Invenio.\n    Copyright (C) 2015-2022 CERN.\n\n    Invenio is free software; you can redistribute it and/or modify it\n    under the terms of the MIT License; see LICENSE file for more details.\n\nChanges\n=======\n\nVersion 2.0.0 (released 2022-06-14)\n\n- upgrade invenio-accounts dependency\n- models: change role_id FK of ActionRoles to string\n\nVersion 1.4.4 (released 2022-04-01)\n\n- fix compat issue with Werkzeug 2.1\n\nVersion 1.4.3 (released 2022-03-30)\n\n- add support for Flask 2.1, Werkzeug 2.1 and Click 8.1\n- bump dependency on invenio-base, invenio-accounts and invenio-i18n\n\nVersion 1.4.2 (released 2021-02-16)\n\n- adds a new system role \"system_process\".\n- adds a new identity providing the system process role.\n\nVersion 1.4.1 (released 2020-05-07)\n\n- set Sphinx ``<3`` because of errors related to application context\n- stop using example app\n\nVersion 1.4.0 (released 2020-03-12)\n\n- drop Python 2.7 support\n- change Flask dependency management to centralised by invenio-base\n\nVersion 1.3.2 (released TBD)\n\n- set Sphinx ``<3`` because of errors related to application context\n- stop using example app\n\nVersion 1.3.1 (released 2020-01-22)\n\n- increase minimal six version\n\nVersion 1.3.0 (released 2019-11-15)\n\n- Adds explicit excludes of needs feature to load permission\n\nVersion 1.2.0 (released 2019-08-02)\n\n- Removes DynamicPermission\n\nVersion 1.1.0 (released 2018-12-14)\n\nVersion 1.0.2 (released 2018-10-31)\n\n- Additional test for AnyonymousIdentity loaded on request\n\nVersion 1.0.1 (released 2018-05-18)\n\n- Removal of Click warning messages.\n\n\nVersion 1.0.0 (released 2018-03-23)\n\n- Initial public release.\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Invenio module for common role based access control.",
    "version": "2.0.0",
    "project_urls": {
        "Homepage": "https://github.com/inveniosoftware/invenio-access"
    },
    "split_keywords": [
        "invenio",
        "access"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1614c5b2198a6a459377d2b4c9afc2955875ef0f5c14aaa8b18724e47880de00",
                "md5": "5c4d56f556126d8940d3912f4cf56480",
                "sha256": "d56ae0c2448b7a5c2bd85d81ae2e57ca6c65399ab3846bb9480d0911df42c565"
            },
            "downloads": -1,
            "filename": "invenio_access-2.0.0-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "5c4d56f556126d8940d3912f4cf56480",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.7",
            "size": 81806,
            "upload_time": "2023-06-14T15:28:27",
            "upload_time_iso_8601": "2023-06-14T15:28:27.586021Z",
            "url": "https://files.pythonhosted.org/packages/16/14/c5b2198a6a459377d2b4c9afc2955875ef0f5c14aaa8b18724e47880de00/invenio_access-2.0.0-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8074554383928318e0a47bbfeb761c9284e4113417ff6c7b06a8de55ab9ea598",
                "md5": "ffc077c57cc54ec2ffd95972be59a484",
                "sha256": "b2627255dc13dba29932e27a599a9e753f1cffa383012b581ffc213856c1aa54"
            },
            "downloads": -1,
            "filename": "invenio-access-2.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "ffc077c57cc54ec2ffd95972be59a484",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 57025,
            "upload_time": "2023-06-14T15:28:29",
            "upload_time_iso_8601": "2023-06-14T15:28:29.209203Z",
            "url": "https://files.pythonhosted.org/packages/80/74/554383928318e0a47bbfeb761c9284e4113417ff6c7b06a8de55ab9ea598/invenio-access-2.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-14 15:28:29",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "inveniosoftware",
    "github_project": "invenio-access",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "invenio-access"
}
        
Elapsed time: 0.08065s