Name | django-simple-certmanager JSON |
Version |
2.4.1
JSON |
| download |
home_page | None |
Summary | Manage TLS certificates and keys in the Django admin |
upload_time | 2024-09-19 13:48:24 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.10 |
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. |
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.4.1
: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": null,
"name": "django-simple-certmanager",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.10",
"maintainer_email": null,
"keywords": "django, certificate, security",
"author": null,
"author_email": "Maykin Media <support@maykinmedia.nl>",
"download_url": "https://files.pythonhosted.org/packages/d0/7b/cbd069efa54a30fd89a210cb377394c968dfc5b12a194aa4d2a2be76a10c/django_simple_certmanager-2.4.1.tar.gz",
"platform": null,
"description": "django-simple-certmanager\n=========================\n\n:Version: 2.4.1\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.4.1",
"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": "5e19f27e225e32d3121431676200c315fe61422599c7250b9ed11be7ff8f7e50",
"md5": "f2481b73f8a39b9ba1dcd032ecd832a7",
"sha256": "fa5ceca8e48da89843bab738fe1a4f24de2fa89ce2ad6b9aec6e459eace9202a"
},
"downloads": -1,
"filename": "django_simple_certmanager-2.4.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "f2481b73f8a39b9ba1dcd032ecd832a7",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.10",
"size": 32154,
"upload_time": "2024-09-19T13:48:22",
"upload_time_iso_8601": "2024-09-19T13:48:22.972434Z",
"url": "https://files.pythonhosted.org/packages/5e/19/f27e225e32d3121431676200c315fe61422599c7250b9ed11be7ff8f7e50/django_simple_certmanager-2.4.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d07bcbd069efa54a30fd89a210cb377394c968dfc5b12a194aa4d2a2be76a10c",
"md5": "2219d4a18e4d3ae9396f5881937b577b",
"sha256": "940c338eccff9607273afeee7d6a0204a3d9ae015b54226a0903b19d43821b12"
},
"downloads": -1,
"filename": "django_simple_certmanager-2.4.1.tar.gz",
"has_sig": false,
"md5_digest": "2219d4a18e4d3ae9396f5881937b577b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.10",
"size": 31658,
"upload_time": "2024-09-19T13:48:24",
"upload_time_iso_8601": "2024-09-19T13:48:24.695081Z",
"url": "https://files.pythonhosted.org/packages/d0/7b/cbd069efa54a30fd89a210cb377394c968dfc5b12a194aa4d2a2be76a10c/django_simple_certmanager-2.4.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-09-19 13:48:24",
"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"
}