django-document-catalogue


Namedjango-document-catalogue JSON
Version 0.4.0 PyPI version JSON
download
home_page
SummaryA simple, lightweight, stand-alone, hierarchical document library as a reusable Django app.
upload_time2023-08-26 19:46:26
maintainer
docs_urlNone
author
requires_python<4,>=3.7
licenseMIT License Copyright (c) 2018 powderflask (Driftwood Cove Designs) 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 django python
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Django Document Catalogue
#### Version: 0.4.0

[![Tests](https://github.com/JacobTumak/django_document_catalogue/actions/workflows/pytest.yaml/badge.svg)](https://github.com/JacobTumak/django_document_catalogue/actions/workflows/pytest.yaml)

Simple, light-weight, stand-alone, hierarchical document library as a
reusable django app.

## Use Case:
 * you need a library of static media documents (PDF or other formats);
 * documents are organized in hierarchical categories;

## Features:
 * permanent URLs for direct access to document, category, and file download (even if filename changes)
 * opt-out private file storage (file storage / downloads protected by login, on by default)
 * plugin permissions settings
 * plugin document list view customization
 * upload / edit / delete documents via django admin, and/or..,
 * opt-in user-facing edit / upload / delete views and AJAX API

## Dependencies:
 * python 3.7+
 * django 3.2+
 * [django-mptt](https://django-mptt.readthedocs.io/en/latest/index.html)

### Configurable file handling:
 * [django-private-storage](https://pypi.org/project/django-private-storage/)

 or

 * [django-constrainedfilefield](https://github.com/mbourqui/django-constrainedfilefield)
 * [python-magic](https://github.com/ahupp/python-magic) (if you want to validate file content_types)

### Opt-in:
 * [dropzone](https://www.dropzonejs.com/): drag-and-drop file uploads
 * [django-admin-sortable2](https://django-admin-sortable2.readthedocs.io): drag-and-drop document ordering

## Get Me Some of That
* [Source Code](https://github.com/powderflask/django_document_catalogue)
* [Read The Docs](https://django-document-catalogue.readthedocs.io/en/latest/)
* [Issues](https://github.com/powderflask/django_document_catalogue/issues)
* [PyPI](https://pypi.org/project/django-document-catalogue)

[MIT License](https://github.com/powderflask/django_document_catalogue/blob/master/LICENSE)

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "django-document-catalogue",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "<4,>=3.7",
    "maintainer_email": "",
    "keywords": "Django,Python",
    "author": "",
    "author_email": "powderflask <powderflask@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/92/4a/b30b9a07e2d555cd5ffd84b46749492f700a205ce7667794ab1b7939ada7/django-document-catalogue-0.4.0.tar.gz",
    "platform": null,
    "description": "# Django Document Catalogue\n#### Version: 0.4.0\n\n[![Tests](https://github.com/JacobTumak/django_document_catalogue/actions/workflows/pytest.yaml/badge.svg)](https://github.com/JacobTumak/django_document_catalogue/actions/workflows/pytest.yaml)\n\nSimple, light-weight, stand-alone, hierarchical document library as a\nreusable django app.\n\n## Use Case:\n * you need a library of static media documents (PDF or other formats);\n * documents are organized in hierarchical categories;\n\n## Features:\n * permanent URLs for direct access to document, category, and file download (even if filename changes)\n * opt-out private file storage (file storage / downloads protected by login, on by default)\n * plugin permissions settings\n * plugin document list view customization\n * upload / edit / delete documents via django admin, and/or..,\n * opt-in user-facing edit / upload / delete views and AJAX API\n\n## Dependencies:\n * python 3.7+\n * django 3.2+\n * [django-mptt](https://django-mptt.readthedocs.io/en/latest/index.html)\n\n### Configurable file handling:\n * [django-private-storage](https://pypi.org/project/django-private-storage/)\n\n or\n\n * [django-constrainedfilefield](https://github.com/mbourqui/django-constrainedfilefield)\n * [python-magic](https://github.com/ahupp/python-magic) (if you want to validate file content_types)\n\n### Opt-in:\n * [dropzone](https://www.dropzonejs.com/): drag-and-drop file uploads\n * [django-admin-sortable2](https://django-admin-sortable2.readthedocs.io): drag-and-drop document ordering\n\n## Get Me Some of That\n* [Source Code](https://github.com/powderflask/django_document_catalogue)\n* [Read The Docs](https://django-document-catalogue.readthedocs.io/en/latest/)\n* [Issues](https://github.com/powderflask/django_document_catalogue/issues)\n* [PyPI](https://pypi.org/project/django-document-catalogue)\n\n[MIT License](https://github.com/powderflask/django_document_catalogue/blob/master/LICENSE)\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2018 powderflask (Driftwood Cove Designs)  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. ",
    "summary": "A simple, lightweight, stand-alone, hierarchical document library as a reusable Django app.",
    "version": "0.4.0",
    "project_urls": {
        "Documentation": "https://django-document-catalogue.readthedocs.io",
        "Homepage": "https://github.com/powderflask/django_document_catalogue",
        "Repository": "https://github.com/powderflask/django_document_catalogue"
    },
    "split_keywords": [
        "django",
        "python"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "196f8e82854022fff9856fa4e490b3d4c060cf2d573b9e55367ba38b91d986a1",
                "md5": "bc642f16105d2049e2728a1c5ebcd585",
                "sha256": "92c2faf27b84c87d08bb4a9e015daeb96ea6f6f445d3c2d69a53ed8905ab61f5"
            },
            "downloads": -1,
            "filename": "django_document_catalogue-0.4.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "bc642f16105d2049e2728a1c5ebcd585",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4,>=3.7",
            "size": 33888,
            "upload_time": "2023-08-26T19:46:24",
            "upload_time_iso_8601": "2023-08-26T19:46:24.160944Z",
            "url": "https://files.pythonhosted.org/packages/19/6f/8e82854022fff9856fa4e490b3d4c060cf2d573b9e55367ba38b91d986a1/django_document_catalogue-0.4.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "924ab30b9a07e2d555cd5ffd84b46749492f700a205ce7667794ab1b7939ada7",
                "md5": "1ea80d4df1eb99eab681e4eafffc449d",
                "sha256": "aac5f359d3ee72f4e360cd0796c8b79d8dfcfc39dfe3ef7b3187e372ae35ef46"
            },
            "downloads": -1,
            "filename": "django-document-catalogue-0.4.0.tar.gz",
            "has_sig": false,
            "md5_digest": "1ea80d4df1eb99eab681e4eafffc449d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4,>=3.7",
            "size": 907054,
            "upload_time": "2023-08-26T19:46:26",
            "upload_time_iso_8601": "2023-08-26T19:46:26.656555Z",
            "url": "https://files.pythonhosted.org/packages/92/4a/b30b9a07e2d555cd5ffd84b46749492f700a205ce7667794ab1b7939ada7/django-document-catalogue-0.4.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-26 19:46:26",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "powderflask",
    "github_project": "django_document_catalogue",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "tox": true,
    "lcname": "django-document-catalogue"
}
        
Elapsed time: 0.15275s