..
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-PIDStore
==================
.. image:: https://img.shields.io/github/license/inveniosoftware/invenio-pidstore.svg
:target: https://github.com/inveniosoftware/invenio-pidstore/blob/master/LICENSE
.. image:: https://github.com/inveniosoftware/invenio-pidstore/workflows/CI/badge.svg
:target: https://github.com/inveniosoftware/invenio-pidstore/actions?query=workflow%3ACI
.. image:: https://img.shields.io/coveralls/inveniosoftware/invenio-pidstore.svg
:target: https://coveralls.io/r/inveniosoftware/invenio-pidstore
.. image:: https://img.shields.io/pypi/v/invenio-pidstore.svg
:target: https://pypi.org/pypi/invenio-pidstore
Invenio module that mints, stores, registers and resolves persistent
identifiers.
Further documentation is available on https://invenio-pidstore.readthedocs.io/
..
This file is part of Invenio.
Copyright (C) 2015-2020 CERN.
Copyright (C) 2024 Graz University of Technology.
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 2024-12-05)
- setup: bump invenio dependencies
Version 1.3.4 (released 2024-12-05)
- fix: add translation flag for publishing
Version 1.3.3 (released 2024-11-28)
- setup: pin dependencies
Version 1.3.2 (released 2024-11-05)
- model: make forward compatible to sqlalchemy >= 2
- i18n: push translations
Version 1.3.1 (released 2023-03-02)
- Remove unnecessary speaklater dependency references
Version 1.3.0 (released 2023-03-02)
- Replace deprecated flask_babelex dependency and imports
- Upgrade invenio-i18n
Version 1.2.4 (released 2022-11-18)
- Add translations workflow
- Add translations
- Add code formatters
- Update CI scripts
Version 1.2.3 (released 2022-02-28)
- Replaces pkg_resources with importlib for entry points iteration.
Version 1.2.2 (released 2021-01-19)
- Fix a consistency issue in the providers API where the create() method takes
kwargs and passes them to __init__, but __init__ doesn't take kwargs by
default. This made it difficult to exchange providers. Now __init__ takes
kwargs by default.
Version 1.2.1 (released 2020-07-22)
- Support returning NEW and RESERVED PIDs by setting the `registered_only` flag.
- Support setting default status for PIDs with object type and uuid.
Version 1.2.0 (released 2020-03-09)
- Change exception interpolation for better aggregation
- Depend on Invenio-Base, Invenio-Admin, and Invenio-I18N to centralize
3rd-party module dependencies.
Version 1.1.0 (released 2019-11-18)
- New record id provider v2 to generate random, base32, URI-friendly
hyphen-separated, optionally checksummed PIDs
Version 1.0.0 (released 2018-03-23)
- Initial public release.
Raw data
{
"_id": null,
"home_page": "https://github.com/inveniosoftware/invenio-pidstore",
"name": "invenio-pidstore",
"maintainer": null,
"docs_url": "https://pythonhosted.org/invenio-pidstore/",
"requires_python": ">=3.7",
"maintainer_email": null,
"keywords": "invenio identifier DOI",
"author": "CERN",
"author_email": "info@inveniosoftware.org",
"download_url": "https://files.pythonhosted.org/packages/8e/5f/b2899a178e4cd0c69fc0777b0e2f5c2c02057b07e61a01c4481516b95540/invenio_pidstore-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-PIDStore\n==================\n\n.. image:: https://img.shields.io/github/license/inveniosoftware/invenio-pidstore.svg\n :target: https://github.com/inveniosoftware/invenio-pidstore/blob/master/LICENSE\n\n.. image:: https://github.com/inveniosoftware/invenio-pidstore/workflows/CI/badge.svg\n :target: https://github.com/inveniosoftware/invenio-pidstore/actions?query=workflow%3ACI\n\n.. image:: https://img.shields.io/coveralls/inveniosoftware/invenio-pidstore.svg\n :target: https://coveralls.io/r/inveniosoftware/invenio-pidstore\n\n.. image:: https://img.shields.io/pypi/v/invenio-pidstore.svg\n :target: https://pypi.org/pypi/invenio-pidstore\n\n\nInvenio module that mints, stores, registers and resolves persistent\nidentifiers.\n\nFurther documentation is available on https://invenio-pidstore.readthedocs.io/\n\n..\n This file is part of Invenio.\n Copyright (C) 2015-2020 CERN.\n Copyright (C) 2024 Graz University of Technology.\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 2024-12-05)\n\n- setup: bump invenio dependencies\n\nVersion 1.3.4 (released 2024-12-05)\n\n- fix: add translation flag for publishing\n\nVersion 1.3.3 (released 2024-11-28)\n\n- setup: pin dependencies\n\nVersion 1.3.2 (released 2024-11-05)\n\n- model: make forward compatible to sqlalchemy >= 2\n- i18n: push translations\n\nVersion 1.3.1 (released 2023-03-02)\n\n- Remove unnecessary speaklater dependency references\n\nVersion 1.3.0 (released 2023-03-02)\n\n- Replace deprecated flask_babelex dependency and imports\n- Upgrade invenio-i18n\n\nVersion 1.2.4 (released 2022-11-18)\n\n- Add translations workflow\n- Add translations\n- Add code formatters\n- Update CI scripts\n\nVersion 1.2.3 (released 2022-02-28)\n\n- Replaces pkg_resources with importlib for entry points iteration.\n\nVersion 1.2.2 (released 2021-01-19)\n\n- Fix a consistency issue in the providers API where the create() method takes\n kwargs and passes them to __init__, but __init__ doesn't take kwargs by\n default. This made it difficult to exchange providers. Now __init__ takes\n kwargs by default.\n\nVersion 1.2.1 (released 2020-07-22)\n\n- Support returning NEW and RESERVED PIDs by setting the `registered_only` flag.\n- Support setting default status for PIDs with object type and uuid.\n\nVersion 1.2.0 (released 2020-03-09)\n\n- Change exception interpolation for better aggregation\n- Depend on Invenio-Base, Invenio-Admin, and Invenio-I18N to centralize\n 3rd-party module dependencies.\n\nVersion 1.1.0 (released 2019-11-18)\n\n- New record id provider v2 to generate random, base32, URI-friendly\n hyphen-separated, optionally checksummed PIDs\n\nVersion 1.0.0 (released 2018-03-23)\n\n- Initial public release.\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "\"Invenio module that stores and registers persistent identifiers.\"",
"version": "2.0.0",
"project_urls": {
"Homepage": "https://github.com/inveniosoftware/invenio-pidstore"
},
"split_keywords": [
"invenio",
"identifier",
"doi"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "21d8d0cb0926f55fd8ade1aee78774098d8fd37c67d76a25716ebcf1c8c0e036",
"md5": "8f25dab27c84c146dbf2144f2b85b0c6",
"sha256": "08c468c7d470672efc89111210ca41930b93cee632aa472c4614318c912e010c"
},
"downloads": -1,
"filename": "invenio_pidstore-2.0.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "8f25dab27c84c146dbf2144f2b85b0c6",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=3.7",
"size": 106524,
"upload_time": "2024-12-05T13:38:24",
"upload_time_iso_8601": "2024-12-05T13:38:24.745101Z",
"url": "https://files.pythonhosted.org/packages/21/d8/d0cb0926f55fd8ade1aee78774098d8fd37c67d76a25716ebcf1c8c0e036/invenio_pidstore-2.0.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8e5fb2899a178e4cd0c69fc0777b0e2f5c2c02057b07e61a01c4481516b95540",
"md5": "eb45ecb0ba9781d6f69274c4a72d88ae",
"sha256": "cff9b9bd37dd3c3ab1ab4ba9bfb165a1586716253ef6f98a35406aeb03e44a80"
},
"downloads": -1,
"filename": "invenio_pidstore-2.0.0.tar.gz",
"has_sig": false,
"md5_digest": "eb45ecb0ba9781d6f69274c4a72d88ae",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 58797,
"upload_time": "2024-12-05T13:38:25",
"upload_time_iso_8601": "2024-12-05T13:38:25.969984Z",
"url": "https://files.pythonhosted.org/packages/8e/5f/b2899a178e4cd0c69fc0777b0e2f5c2c02057b07e61a01c4481516b95540/invenio_pidstore-2.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-05 13:38:25",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "inveniosoftware",
"github_project": "invenio-pidstore",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "invenio-pidstore"
}