django-letsencrypt 4.0.0__py3-none-any.whl → 5.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {django_letsencrypt-4.0.0.dist-info → django_letsencrypt-5.1.0.dist-info}/METADATA +43 -23
- django_letsencrypt-5.1.0.dist-info/RECORD +14 -0
- {django_letsencrypt-4.0.0.dist-info → django_letsencrypt-5.1.0.dist-info}/WHEEL +1 -1
- letsencrypt/__init__.py +2 -2
- letsencrypt/apps.py +2 -1
- letsencrypt/urls.py +7 -4
- django_letsencrypt-4.0.0.dist-info/RECORD +0 -14
- {django_letsencrypt-4.0.0.dist-info → django_letsencrypt-5.1.0.dist-info/licenses}/LICENSE +0 -0
- {django_letsencrypt-4.0.0.dist-info → django_letsencrypt-5.1.0.dist-info}/top_level.txt +0 -0
|
@@ -1,40 +1,51 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: django-letsencrypt
|
|
3
|
-
Version:
|
|
3
|
+
Version: 5.1.0
|
|
4
4
|
Summary: A simple Django app to handle Let's Encrypt ACME challenges.
|
|
5
5
|
Home-page: https://github.com/urda/django-letsencrypt
|
|
6
6
|
Author: Peter Urda
|
|
7
|
-
Author-email:
|
|
7
|
+
Author-email: foss@urda.engineering
|
|
8
8
|
License: Apache License, Version 2.0
|
|
9
|
-
Platform: UNKNOWN
|
|
10
9
|
Classifier: Development Status :: 5 - Production/Stable
|
|
11
10
|
Classifier: Environment :: Web Environment
|
|
12
11
|
Classifier: Framework :: Django
|
|
13
|
-
Classifier: Framework :: Django ::
|
|
14
|
-
Classifier: Framework :: Django ::
|
|
15
|
-
Classifier: Framework :: Django ::
|
|
12
|
+
Classifier: Framework :: Django :: 4.0
|
|
13
|
+
Classifier: Framework :: Django :: 5.0
|
|
14
|
+
Classifier: Framework :: Django :: 5.1
|
|
16
15
|
Classifier: Intended Audience :: Developers
|
|
17
16
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
18
17
|
Classifier: Natural Language :: English
|
|
19
18
|
Classifier: Operating System :: OS Independent
|
|
20
19
|
Classifier: Programming Language :: Python
|
|
21
20
|
Classifier: Programming Language :: Python :: 3
|
|
22
|
-
Classifier: Programming Language :: Python :: 3.6
|
|
23
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
24
21
|
Classifier: Programming Language :: Python :: 3.8
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
25
26
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
26
27
|
Classifier: Topic :: Internet
|
|
27
28
|
Classifier: Topic :: Internet :: WWW/HTTP
|
|
28
29
|
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
|
|
29
|
-
Requires-Python: >=3.
|
|
30
|
+
Requires-Python: >=3.8, <4
|
|
30
31
|
Description-Content-Type: text/markdown
|
|
31
|
-
|
|
32
|
-
Requires-Dist:
|
|
32
|
+
License-File: LICENSE
|
|
33
|
+
Requires-Dist: Django>=4.2.20
|
|
34
|
+
Requires-Dist: pytz>=2025.2
|
|
35
|
+
Dynamic: author
|
|
36
|
+
Dynamic: author-email
|
|
37
|
+
Dynamic: classifier
|
|
38
|
+
Dynamic: description
|
|
39
|
+
Dynamic: description-content-type
|
|
40
|
+
Dynamic: home-page
|
|
41
|
+
Dynamic: license
|
|
42
|
+
Dynamic: license-file
|
|
43
|
+
Dynamic: requires-dist
|
|
44
|
+
Dynamic: requires-python
|
|
45
|
+
Dynamic: summary
|
|
33
46
|
|
|
34
47
|
# Let's Encrypt App for Django
|
|
35
48
|
|
|
36
|
-
[](https://travis-ci.com/urda/django-letsencrypt) [](https://codecov.io/gh/urda/django-letsencrypt/branch/master)
|
|
37
|
-
|
|
38
49
|
`django-letsencrypt` will allow you to add, remove, and update any
|
|
39
50
|
[ACME challenge](https://github.com/ietf-wg-acme/acme/) objects you may
|
|
40
51
|
need through your Django admin interface. Simply add the `ACME challenge`
|
|
@@ -54,18 +65,29 @@ And of course all wrapped up and published to
|
|
|
54
65
|
supported so far:
|
|
55
66
|
|
|
56
67
|
- Python Versions Supported:
|
|
57
|
-
- `3.
|
|
58
|
-
- `3.
|
|
59
|
-
- `3.
|
|
68
|
+
- `3.13` (with Django `5.1`)
|
|
69
|
+
- `3.12` (with Django `5.1`, `5.0`, `4.2`)
|
|
70
|
+
- `3.11` (with Django `5.1`, `5.0`, `4.2`)
|
|
71
|
+
- `3.10` (with Django `5.1`, `5.0`, `4.2`)
|
|
72
|
+
- `3.9` (with Django `4.2`)
|
|
73
|
+
- `3.8` (with Django `4.2`)
|
|
60
74
|
- Django Versions Supported:
|
|
61
|
-
- `
|
|
62
|
-
- `
|
|
63
|
-
- `
|
|
75
|
+
- `5.1` minimum version `5.1.7`
|
|
76
|
+
- `5.0` minimum version `5.0.13`
|
|
77
|
+
- `4.2 LTS` minimum version `4.2.20`
|
|
64
78
|
- Databases Supported:
|
|
65
79
|
- `mysql`
|
|
66
80
|
- `postgres`
|
|
67
81
|
- `sqlite`
|
|
68
82
|
|
|
83
|
+
# Recent Build Status Badges
|
|
84
|
+
|
|
85
|
+
- [](https://github.com/urda/django-letsencrypt/actions/workflows/linting.yaml)
|
|
86
|
+
- [](https://github.com/urda/django-letsencrypt/actions/workflows/testing-40.yaml)
|
|
87
|
+
- [](https://github.com/urda/django-letsencrypt/actions/workflows/testing-50.yaml)
|
|
88
|
+
- [](https://github.com/urda/django-letsencrypt/actions/workflows/testing-51.yaml)
|
|
89
|
+
- [](https://codecov.io/gh/urda/django-letsencrypt)
|
|
90
|
+
|
|
69
91
|
# Installation & Configuration
|
|
70
92
|
|
|
71
93
|
1. `pip install django-letsencrypt`
|
|
@@ -84,7 +106,7 @@ INSTALLED_APPS = [
|
|
|
84
106
|
or where applicable (usually your root `urls.py`).
|
|
85
107
|
|
|
86
108
|
```python
|
|
87
|
-
|
|
109
|
+
re_path(r'^\.well-known/', include('letsencrypt.urls'))
|
|
88
110
|
```
|
|
89
111
|
|
|
90
112
|
4. Run `manage.py migrate` to create the required table for the
|
|
@@ -109,5 +131,3 @@ take a moment to read the `README.md` file within the
|
|
|
109
131
|
[`example_project`](https://github.com/urda/django-letsencrypt/tree/master/example_project)
|
|
110
132
|
directory, and follow the directions. That will spin up a small sample django
|
|
111
133
|
application already configured for you to try out.
|
|
112
|
-
|
|
113
|
-
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
django_letsencrypt-5.1.0.dist-info/licenses/LICENSE,sha256=eCE-vLWjRU-36lD22l8Lbp_XpPT1Esdl0o70KlwBYHo,11345
|
|
2
|
+
letsencrypt/__init__.py,sha256=s0fUwbP1-rlH3mgJQ-dizLEgWa9rx5CDLzFlmDEpMw0,646
|
|
3
|
+
letsencrypt/admin.py,sha256=4m_fVteJeP6-BpvdyAcHEJ1s3zARl2F4y4h8a5uYS80,1758
|
|
4
|
+
letsencrypt/apps.py,sha256=KTY-mm_Pv5uHEhEKuPgMiJCTEq4-NtwOQK1D_gfTN2Y,751
|
|
5
|
+
letsencrypt/models.py,sha256=nU-sjVIb8V2_-TwxX7qxR1ioSwH00JxSDN-ePGsHKSY,1568
|
|
6
|
+
letsencrypt/tests.py,sha256=IBPAOaPVBCVcK-VcIfRZneu0E1NQF4Q5v6ppGjQGYrA,4063
|
|
7
|
+
letsencrypt/urls.py,sha256=PKpM9a3pIszlZzOfam1l3os4fjChu8RCtMxDb5ReNMI,749
|
|
8
|
+
letsencrypt/views.py,sha256=YsdN-i4larvajzoQuTBAj9CX3watHOu1zYNESRBBR5E,893
|
|
9
|
+
letsencrypt/migrations/0001_squashed_0004_squash_for_mysql_support.py,sha256=R2-FB0gb6dIHVfM0RQOT2-qV0Iwn3i8g9WXvU9M4zc0,900
|
|
10
|
+
letsencrypt/migrations/__init__.py,sha256=753utKcjHt5snhTYhBfAY_5QBvTMpDF8zFkiAwbcn40,564
|
|
11
|
+
django_letsencrypt-5.1.0.dist-info/METADATA,sha256=JlRmUElpQsVprbNiAeMkhSi33UBGn-w6lFISBvTpGzM,5193
|
|
12
|
+
django_letsencrypt-5.1.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
13
|
+
django_letsencrypt-5.1.0.dist-info/top_level.txt,sha256=cDimIKtupoBiTWXykGSs1dP1xs8jrAoTwz1txrc2Img,12
|
|
14
|
+
django_letsencrypt-5.1.0.dist-info/RECORD,,
|
letsencrypt/__init__.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"""
|
|
2
|
-
Copyright 2016-
|
|
2
|
+
Copyright 2016-2025 Peter Urda
|
|
3
3
|
|
|
4
4
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
5
|
you may not use this file except in compliance with the License.
|
|
@@ -14,6 +14,6 @@ See the License for the specific language governing permissions and
|
|
|
14
14
|
limitations under the License.
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
|
-
__version__ = '
|
|
17
|
+
__version__ = '5.1.0'
|
|
18
18
|
|
|
19
19
|
default_app_config = 'letsencrypt.apps.LetsEncryptConfig'
|
letsencrypt/apps.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"""
|
|
2
|
-
Copyright 2016-
|
|
2
|
+
Copyright 2016-2021 Peter Urda
|
|
3
3
|
|
|
4
4
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
5
|
you may not use this file except in compliance with the License.
|
|
@@ -20,3 +20,4 @@ from django.apps import AppConfig
|
|
|
20
20
|
class LetsEncryptConfig(AppConfig):
|
|
21
21
|
name = 'letsencrypt'
|
|
22
22
|
verbose_name = "Let's Encrypt"
|
|
23
|
+
default_auto_field = 'django.db.models.AutoField'
|
letsencrypt/urls.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"""
|
|
2
|
-
Copyright 2016-
|
|
2
|
+
Copyright 2016-2021 Peter Urda
|
|
3
3
|
|
|
4
4
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
5
|
you may not use this file except in compliance with the License.
|
|
@@ -14,11 +14,14 @@ See the License for the specific language governing permissions and
|
|
|
14
14
|
limitations under the License.
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
|
-
from django.
|
|
17
|
+
from django.urls import re_path
|
|
18
18
|
|
|
19
19
|
from . import views
|
|
20
20
|
|
|
21
|
-
|
|
22
21
|
urlpatterns = [
|
|
23
|
-
|
|
22
|
+
re_path(
|
|
23
|
+
r'^acme-challenge/(?P<acme_data>.+)$',
|
|
24
|
+
views.detail,
|
|
25
|
+
name='detail',
|
|
26
|
+
),
|
|
24
27
|
]
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
letsencrypt/__init__.py,sha256=HNAY5lWDWuxd5m2OJwxO2z8GmMPho5b9o9nigsrCfqs,646
|
|
2
|
-
letsencrypt/admin.py,sha256=4m_fVteJeP6-BpvdyAcHEJ1s3zARl2F4y4h8a5uYS80,1758
|
|
3
|
-
letsencrypt/apps.py,sha256=5FJXEreeiIKdcCKJUIfB0cvgJMSZx0Jc5I1X0B7f3-A,697
|
|
4
|
-
letsencrypt/models.py,sha256=nU-sjVIb8V2_-TwxX7qxR1ioSwH00JxSDN-ePGsHKSY,1568
|
|
5
|
-
letsencrypt/tests.py,sha256=IBPAOaPVBCVcK-VcIfRZneu0E1NQF4Q5v6ppGjQGYrA,4063
|
|
6
|
-
letsencrypt/urls.py,sha256=YNpzP3kRRkUmmwL1cX8s_J1ae2iOXDKSlSSw9XaDTfw,716
|
|
7
|
-
letsencrypt/views.py,sha256=YsdN-i4larvajzoQuTBAj9CX3watHOu1zYNESRBBR5E,893
|
|
8
|
-
letsencrypt/migrations/0001_squashed_0004_squash_for_mysql_support.py,sha256=R2-FB0gb6dIHVfM0RQOT2-qV0Iwn3i8g9WXvU9M4zc0,900
|
|
9
|
-
letsencrypt/migrations/__init__.py,sha256=753utKcjHt5snhTYhBfAY_5QBvTMpDF8zFkiAwbcn40,564
|
|
10
|
-
django_letsencrypt-4.0.0.dist-info/LICENSE,sha256=eCE-vLWjRU-36lD22l8Lbp_XpPT1Esdl0o70KlwBYHo,11345
|
|
11
|
-
django_letsencrypt-4.0.0.dist-info/METADATA,sha256=FlkxwRpbFMcOdhpf_yYiYJ75J-2CxHDwtq5w5o12GQ0,3924
|
|
12
|
-
django_letsencrypt-4.0.0.dist-info/WHEEL,sha256=g4nMs7d-Xl9-xC9XovUrsDHGXt-FT0E17Yqo92DEfvY,92
|
|
13
|
-
django_letsencrypt-4.0.0.dist-info/top_level.txt,sha256=cDimIKtupoBiTWXykGSs1dP1xs8jrAoTwz1txrc2Img,12
|
|
14
|
-
django_letsencrypt-4.0.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|