File tree Expand file tree Collapse file tree 6 files changed +138
-100
lines changed
Expand file tree Collapse file tree 6 files changed +138
-100
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ Simple way to get SSL certificates for free.
1616
1717## Features
1818
19- * Supports both Python 2 (deprecated) and Python 3
2019* Works with both ACMEv1 (deprecated) and ACMEv2 protocols
2120* Can issue [ wildcard certificates] ( https://en.wikipedia.org/wiki/Wildcard_certificate ) !
2221* Easy to use and extend
@@ -42,7 +41,7 @@ You can specify as many alternative domain names as you wish.
4241The result PEM file is a ** certificate chain** containing your signed
4342certificate and letsencrypt signed chain. You can use it with nginx.
4443
45- Should work with Python >= 2 .6
44+ Should work with Python >= 3 .6
4645
4746## ACME v2
4847
@@ -82,10 +81,6 @@ Only HTTP challenge is supported at the moment.
8281
8382## Installation
8483
85- Python 2 installation may require compilation of dependencies that
86- may take much time and CPU resources and may require you to install all build
87- dependencies.
88-
8984### Preferred way
9085
9186Using [ poetry] ( https://python-poetry.org/ ) .
@@ -114,7 +109,7 @@ Using [poetry](https://python-poetry.org/).
114109
115110Automatically
116111```
117- pip install acme-nginx
112+ pip3 install acme-nginx
118113```
119114
120115or manually
Original file line number Diff line number Diff line change 1717 from urllib2 import urlopen , Request # Python 2
1818
1919
20- __version__ = "0.3.1 "
20+ __version__ = "0.3.2 "
2121
2222
2323class Acme (object ):
You can’t perform that action at this time.
0 commit comments