NEMO-publications


NameNEMO-publications JSON
Version 1.4.7 PyPI version JSON
download
home_pageNone
SummaryPlugin adding publications that users can submit and link to tools/projects using the DOI
upload_time2025-10-21 21:47:08
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseMIT License Copyright (c) 2023 Atlantis Labs LLC Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords nemo
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/NEMO-Publications?label=python)](https://www.python.org/downloads/release/python-3110/)
[![PyPI](https://img.shields.io/pypi/v/nemo-publications?label=pypi%20version)](https://pypi.org/project/NEMO-Publications/)
<img src="https://img.shields.io/pypi/dm/nemo-publications?color=blue&label=pypi%20downloads">

# NEMO Publications

This plugin for NEMO adds the ability to manage Publications.
* Search and add publication using DOI
* Link publications to authors (NEMO Users), Tools and Projects

# Compatibility:

### NEMO-Publications >= 1.0.0
* NEMO >= 4.7.0
* NEMO-CE >= 1.7.0

# Installation

`pip install NEMO-publications`

# Add NEMO Publications

in `settings.py` add to `INSTALLED_APPS`:

```python
INSTALLED_APPS = [
    '...',
    'NEMO_publications',
    '...'
    'NEMO',
    '...'
]
```

# Usage
Add choice to "Landing page choices" in Detailed Administration
* Set URL to `/publications/`
* Use suggested icon located in `resources/icons/publications.png`

For the publication jumbotron, you can use the URL `/publications/jumbotron/`

# Customizations
Go to `Customization -> Publications` to enable the landing page widget and set parameters for the carousel like interval time and number of recent publications to display. 

# Settings
The following settings are used by default:

```python
PUBLICATION_SETTINGS = {
    "timeout": 15,
    "doi_search_url": "http://dx.doi.org/{}",
    "headers": [
        {"Accept": "application/x-bibtex"}, 
        {"Accept": "text/bibliography; style=bibtex"}
    ]
}
```

To override any of them, simply add the ones you want to replace in `settings.py` as follows:
```python
PUBLICATION_SETTINGS = {
    "timeout": 45, # Increase timeout to 45s
}
```

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "NEMO-publications",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "NEMO",
    "author": null,
    "author_email": "Atlantis Labs LLC <atlantis@atlantislabs.io>",
    "download_url": "https://files.pythonhosted.org/packages/5f/d7/a0cbdb6a1e7864beef0445ec2f7a31dbe5f18356dbc49e63daf3f9952e5e/nemo_publications-1.4.7.tar.gz",
    "platform": null,
    "description": "[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/NEMO-Publications?label=python)](https://www.python.org/downloads/release/python-3110/)\n[![PyPI](https://img.shields.io/pypi/v/nemo-publications?label=pypi%20version)](https://pypi.org/project/NEMO-Publications/)\n<img src=\"https://img.shields.io/pypi/dm/nemo-publications?color=blue&label=pypi%20downloads\">\n\n# NEMO Publications\n\nThis plugin for NEMO adds the ability to manage Publications.\n* Search and add publication using DOI\n* Link publications to authors (NEMO Users), Tools and Projects\n\n# Compatibility:\n\n### NEMO-Publications >= 1.0.0\n* NEMO >= 4.7.0\n* NEMO-CE >= 1.7.0\n\n# Installation\n\n`pip install NEMO-publications`\n\n# Add NEMO Publications\n\nin `settings.py` add to `INSTALLED_APPS`:\n\n```python\nINSTALLED_APPS = [\n    '...',\n    'NEMO_publications',\n    '...'\n    'NEMO',\n    '...'\n]\n```\n\n# Usage\nAdd choice to \"Landing page choices\" in Detailed Administration\n* Set URL to `/publications/`\n* Use suggested icon located in `resources/icons/publications.png`\n\nFor the publication jumbotron, you can use the URL `/publications/jumbotron/`\n\n# Customizations\nGo to `Customization -> Publications` to enable the landing page widget and set parameters for the carousel like interval time and number of recent publications to display. \n\n# Settings\nThe following settings are used by default:\n\n```python\nPUBLICATION_SETTINGS = {\n    \"timeout\": 15,\n    \"doi_search_url\": \"http://dx.doi.org/{}\",\n    \"headers\": [\n        {\"Accept\": \"application/x-bibtex\"}, \n        {\"Accept\": \"text/bibliography; style=bibtex\"}\n    ]\n}\n```\n\nTo override any of them, simply add the ones you want to replace in `settings.py` as follows:\n```python\nPUBLICATION_SETTINGS = {\n    \"timeout\": 45, # Increase timeout to 45s\n}\n```\n",
    "bugtrack_url": null,
    "license": "MIT License\n        \n        Copyright (c) 2023 Atlantis Labs LLC\n        \n        Permission is hereby granted, free of charge, to any person obtaining a copy\n        of this software and associated documentation files (the \"Software\"), to deal\n        in the Software without restriction, including without limitation the rights\n        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n        copies of the Software, and to permit persons to whom the Software is\n        furnished to do so, subject to the following conditions:\n        \n        The above copyright notice and this permission notice shall be included in all\n        copies or substantial portions of the Software.\n        \n        THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n        SOFTWARE.\n        ",
    "summary": "Plugin adding publications that users can submit and link to tools/projects using the DOI",
    "version": "1.4.7",
    "project_urls": {
        "CI": "https://gitlab.com/nemo-community/atlantis-labs/nemo-publications/-/pipelines",
        "Changelog": "https://gitlab.com/nemo-community/atlantis-labs/nemo-publications/-/releases",
        "Homepage": "https://gitlab.com/nemo-community/atlantis-labs/nemo-publications",
        "Issues": "https://gitlab.com/nemo-community/atlantis-labs/nemo-publications/-/issues"
    },
    "split_keywords": [
        "nemo"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a2ed5a1de06b76e79120ef1641d3a0c3cefd5f619db015eb9a6f28a2517f46d8",
                "md5": "7e67c80928c36f4f0037c42c50611c43",
                "sha256": "4c93c9da931e0eb71f4075ae863df62cca5935db1aa6cab81247f346ff4806b6"
            },
            "downloads": -1,
            "filename": "nemo_publications-1.4.7-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "7e67c80928c36f4f0037c42c50611c43",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 46362,
            "upload_time": "2025-10-21T21:47:07",
            "upload_time_iso_8601": "2025-10-21T21:47:07.590278Z",
            "url": "https://files.pythonhosted.org/packages/a2/ed/5a1de06b76e79120ef1641d3a0c3cefd5f619db015eb9a6f28a2517f46d8/nemo_publications-1.4.7-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5fd7a0cbdb6a1e7864beef0445ec2f7a31dbe5f18356dbc49e63daf3f9952e5e",
                "md5": "03e35b24d95a3ce48d8f898a32079290",
                "sha256": "90014d9e1a028c4fd577b0a5fb7630af813eb0cbc4dfa97b157a4c4f727bc148"
            },
            "downloads": -1,
            "filename": "nemo_publications-1.4.7.tar.gz",
            "has_sig": false,
            "md5_digest": "03e35b24d95a3ce48d8f898a32079290",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 33478,
            "upload_time": "2025-10-21T21:47:08",
            "upload_time_iso_8601": "2025-10-21T21:47:08.643302Z",
            "url": "https://files.pythonhosted.org/packages/5f/d7/a0cbdb6a1e7864beef0445ec2f7a31dbe5f18356dbc49e63daf3f9952e5e/nemo_publications-1.4.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-21 21:47:08",
    "github": false,
    "gitlab": true,
    "bitbucket": false,
    "codeberg": false,
    "gitlab_user": "nemo-community",
    "gitlab_project": "atlantis-labs",
    "lcname": "nemo-publications"
}
        
Elapsed time: 0.71141s