Installation¶
Requirements¶
Python 3.10 or later
cryptography>= 41.0.0requests>= 2.31.0
Installing from PyPI¶
The recommended way to install ACMEOW is from PyPI:
pip install acmeow
Installing from Source¶
To install from source:
git clone https://github.com/miichoow/ACMEOW.git
cd ACMEOW
pip install -e .
Development Installation¶
For development, install with extra dependencies:
pip install -e ".[dev]"
This installs additional tools for testing and linting:
pytest- Testing frameworkpytest-cov- Coverage reportingmypy- Static type checkingruff- Lintingtypes-requests- Type stubs for requests
Verifying Installation¶
You can verify the installation by importing the library:
from acmeow import AcmeClient, Identifier, KeyType
print("ACMEOW installed successfully!")