Metadata-Version: 2.3
Name: acmen
Version: 0.5.1
Summary: An ACME(RFC8555) client implementation in Python.
Project-URL: Documentation, https://cbpj.github.io/AcmeN/
Project-URL: Source, https://github.com/CBPJ/AcmeN
Project-URL: Bug Tracker, https://github.com/CBPJ/AcmeN/issues
Author: Jiacheng Huo
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Requires-Dist: cryptography==42.*
Requires-Dist: dnspython==2.*
Requires-Dist: jwcrypto==1.*
Requires-Dist: requests==2.*
Requires-Dist: tld==0.13.*
Description-Content-Type: text/markdown

# AcmeN

AcmeN is an ACME([RFC8555](https://tools.ietf.org/html/rfc8555)) client implemented in Python.

**Note:** AcmeN is still under actively development, there will be some breaking changes until the first stable version v1.0.0 is released. Please keep an eye on the change log.

## Quick Start

Install AcmeN using pip:

```shell
pip install acmen
```

Generate account key using openssl:

```shell
openssl ecparam -genkey -noout -name secp384r1 -out account.key
```

Create a python file named `main.py` as follows and modify necessary parameters:

```python
import logging
from acmen import AcmeN
from acmen.handlers import CloudflareDnsHandler

logging.basicConfig(level=logging.INFO)
acme = AcmeN('account.key')
handler = CloudflareDnsHandler('<your_api_token>')
acme.register_account(contact=['mailto:you@your-mail-provider.tld'])
acme.get_cert_by_domain('example.com', ['www.example.com', 'alt1.example.com'], handler)
```

After a few seconds, you will get your certificate and key file in the working directory.

For more information, please refer to [AcmeN docs](https://cbpj.github.io/AcmeN/).(Chinese Simplified)
