django-simple-certmanager


Namedjango-simple-certmanager JSON
Version 2.0.0 PyPI version JSON
download
home_page
SummaryManage TLS certificates and keys in the Django admin
upload_time2024-03-15 13:23:08
maintainer
docs_urlNone
author
requires_python>=3.10
licenseCopyright 2022 Maykin Media 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 certificate security
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            django-simple-certmanager
=========================

:Version: 2.0.0
:Source: https://github.com/maykinmedia/django-simple-certmanager
:Keywords: certificates

|build-status| |code-quality| |black| |coverage| |docs|

|python-versions| |django-versions| |pypi-version|

Manage TLS certificates and keys in the Django admin

.. contents::

.. section-numbering::

Features
========

* Manage (mutual) TLS certificates
* Certificate introspection and validation
* Certificate/key files stored in private media
* Certificate/key files deleted when the database record is deleted


Installation
============

Requirements
------------

* Python 3.10 or above
* Django 3.2 or newer


Install
-------

You can install **Django Simple Certmanager** either via the Python Package 
Index (PyPI) or from source.

To install using ``pip``:

.. code-block:: bash

    pip install django-simple-certmanager


Usage
=====

To use this with your project you need to follow these steps:

#. Add **Django Simple Certmanager** to ``INSTALLED_APPS`` in your Django 
   project's ``settings.py``:

   .. code-block:: python

      INSTALLED_APPS = (
          # ...,
          "privates",  # Needed for admin usage.
          "simple_certmanager"
      )

#. Make sure you configure `Django Privates`_ correctly and set the (currently)
   undocumented settings:

   .. code-block:: python

      PRIVATE_MEDIA_ROOT = os.path.join(BASE_DIR, "private-media")
      PRIVATE_MEDIA_URL = "/private-media/"

#. Run the migrations

.. code-block:: bash

    python manage.py migrate


.. _`Django Privates`: https://pypi.org/project/django-privates/


.. |build-status| image:: https://github.com/maykinmedia/django-simple-certmanager/workflows/Run%20CI/badge.svg
    :alt: Build status
    :target: https://github.com/maykinmedia/django-simple-certmanager/actions?query=workflow%3A%22Run+CI%22

.. |code-quality| image:: https://github.com/maykinmedia/django-simple-certmanager/workflows/Code%20quality%20checks/badge.svg
     :alt: Code quality checks
     :target: https://github.com/maykinmedia/django-simple-certmanager/actions?query=workflow%3A%22Code+quality+checks%22

.. |black| image:: https://img.shields.io/badge/code%20style-black-000000.svg
    :target: https://github.com/psf/black

.. |coverage| image:: https://codecov.io/gh/maykinmedia/django-simple-certmanager/branch/master/graph/badge.svg
    :target: https://codecov.io/gh/maykinmedia/django-simple-certmanager
    :alt: Coverage status

.. |docs| image:: https://readthedocs.org/projects/django-simple-certmanager/badge/?version=latest
    :target: https://django-simple-certmanager.readthedocs.io/en/latest/?badge=latest
    :alt: Documentation Status

.. |python-versions| image:: https://img.shields.io/pypi/pyversions/django-simple-certmanager.svg

.. |django-versions| image:: https://img.shields.io/pypi/djversions/django-simple-certmanager.svg

.. |pypi-version| image:: https://img.shields.io/pypi/v/django-simple-certmanager.svg
    :target: https://pypi.org/project/django-simple-certmanager/

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "django-simple-certmanager",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": "",
    "keywords": "django,certificate,security",
    "author": "",
    "author_email": "Maykin Media <support@maykinmedia.nl>",
    "download_url": "https://files.pythonhosted.org/packages/6b/9a/34710617db493807e9054f1e8f5f2e691acb32050364d909f9922b627ccd/django-simple-certmanager-2.0.0.tar.gz",
    "platform": null,
    "description": "django-simple-certmanager\n=========================\n\n:Version: 2.0.0\n:Source: https://github.com/maykinmedia/django-simple-certmanager\n:Keywords: certificates\n\n|build-status| |code-quality| |black| |coverage| |docs|\n\n|python-versions| |django-versions| |pypi-version|\n\nManage TLS certificates and keys in the Django admin\n\n.. contents::\n\n.. section-numbering::\n\nFeatures\n========\n\n* Manage (mutual) TLS certificates\n* Certificate introspection and validation\n* Certificate/key files stored in private media\n* Certificate/key files deleted when the database record is deleted\n\n\nInstallation\n============\n\nRequirements\n------------\n\n* Python 3.10 or above\n* Django 3.2 or newer\n\n\nInstall\n-------\n\nYou can install **Django Simple Certmanager** either via the Python Package \nIndex (PyPI) or from source.\n\nTo install using ``pip``:\n\n.. code-block:: bash\n\n    pip install django-simple-certmanager\n\n\nUsage\n=====\n\nTo use this with your project you need to follow these steps:\n\n#. Add **Django Simple Certmanager** to ``INSTALLED_APPS`` in your Django \n   project's ``settings.py``:\n\n   .. code-block:: python\n\n      INSTALLED_APPS = (\n          # ...,\n          \"privates\",  # Needed for admin usage.\n          \"simple_certmanager\"\n      )\n\n#. Make sure you configure `Django Privates`_ correctly and set the (currently)\n   undocumented settings:\n\n   .. code-block:: python\n\n      PRIVATE_MEDIA_ROOT = os.path.join(BASE_DIR, \"private-media\")\n      PRIVATE_MEDIA_URL = \"/private-media/\"\n\n#. Run the migrations\n\n.. code-block:: bash\n\n    python manage.py migrate\n\n\n.. _`Django Privates`: https://pypi.org/project/django-privates/\n\n\n.. |build-status| image:: https://github.com/maykinmedia/django-simple-certmanager/workflows/Run%20CI/badge.svg\n    :alt: Build status\n    :target: https://github.com/maykinmedia/django-simple-certmanager/actions?query=workflow%3A%22Run+CI%22\n\n.. |code-quality| image:: https://github.com/maykinmedia/django-simple-certmanager/workflows/Code%20quality%20checks/badge.svg\n     :alt: Code quality checks\n     :target: https://github.com/maykinmedia/django-simple-certmanager/actions?query=workflow%3A%22Code+quality+checks%22\n\n.. |black| image:: https://img.shields.io/badge/code%20style-black-000000.svg\n    :target: https://github.com/psf/black\n\n.. |coverage| image:: https://codecov.io/gh/maykinmedia/django-simple-certmanager/branch/master/graph/badge.svg\n    :target: https://codecov.io/gh/maykinmedia/django-simple-certmanager\n    :alt: Coverage status\n\n.. |docs| image:: https://readthedocs.org/projects/django-simple-certmanager/badge/?version=latest\n    :target: https://django-simple-certmanager.readthedocs.io/en/latest/?badge=latest\n    :alt: Documentation Status\n\n.. |python-versions| image:: https://img.shields.io/pypi/pyversions/django-simple-certmanager.svg\n\n.. |django-versions| image:: https://img.shields.io/pypi/djversions/django-simple-certmanager.svg\n\n.. |pypi-version| image:: https://img.shields.io/pypi/v/django-simple-certmanager.svg\n    :target: https://pypi.org/project/django-simple-certmanager/\n",
    "bugtrack_url": null,
    "license": "Copyright 2022 Maykin Media  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": "Manage TLS certificates and keys in the Django admin",
    "version": "2.0.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/maykinmedia/django-simple-certmanager/issues",
        "Changelog": "https://github.com/maykinmedia/django-simple-certmanager/blob/main/CHANGELOG.rst",
        "Documentation": "http://django-simple-certmanager.readthedocs.io/en/latest/",
        "Homepage": "https://github.com/maykinmedia/django-simple-certmanager",
        "Source Code": "https://github.com/maykinmedia/django-simple-certmanager"
    },
    "split_keywords": [
        "django",
        "certificate",
        "security"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c9e02ba740d5c1fa1b468cd951de2f45ce10830ba96db8a6d5a5c10ebe1df423",
                "md5": "e694e176d336b3376b13c4e55fbafd00",
                "sha256": "e8433baa7299d193ce0b14126a525686d9f458b6e46f9a59ba99399ca81f9997"
            },
            "downloads": -1,
            "filename": "django_simple_certmanager-2.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e694e176d336b3376b13c4e55fbafd00",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 19923,
            "upload_time": "2024-03-15T13:23:06",
            "upload_time_iso_8601": "2024-03-15T13:23:06.593711Z",
            "url": "https://files.pythonhosted.org/packages/c9/e0/2ba740d5c1fa1b468cd951de2f45ce10830ba96db8a6d5a5c10ebe1df423/django_simple_certmanager-2.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b9a34710617db493807e9054f1e8f5f2e691acb32050364d909f9922b627ccd",
                "md5": "d38d1f6da805ccd8edc1d3717bbf90f2",
                "sha256": "cf56f1f71602671792d29aa51ac8147dd89665e4eac050b73490be8881bae53a"
            },
            "downloads": -1,
            "filename": "django-simple-certmanager-2.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "d38d1f6da805ccd8edc1d3717bbf90f2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 19435,
            "upload_time": "2024-03-15T13:23:08",
            "upload_time_iso_8601": "2024-03-15T13:23:08.424542Z",
            "url": "https://files.pythonhosted.org/packages/6b/9a/34710617db493807e9054f1e8f5f2e691acb32050364d909f9922b627ccd/django-simple-certmanager-2.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-15 13:23:08",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "maykinmedia",
    "github_project": "django-simple-certmanager",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "django-simple-certmanager"
}
        
Elapsed time: 0.22714s