https://github.com/thinkinglabs/easyrsapy
Python API for Easy-RSA
https://github.com/thinkinglabs/easyrsapy
Last synced: 25 days ago
JSON representation
Python API for Easy-RSA
- Host: GitHub
- URL: https://github.com/thinkinglabs/easyrsapy
- Owner: thinkinglabs
- License: mit
- Created: 2026-04-29T19:37:02.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2026-04-29T21:08:12.000Z (2 months ago)
- Last Synced: 2026-04-29T21:35:08.339Z (2 months ago)
- Language: Makefile
- Size: 22.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# EasyRSAPy
A Python SDK for [Easy-RSA](https://github.com/OpenVPN/easy-rsa). Development is in progress.
[Easy-RSA Documentation](https://easy-rsa.readthedocs.io/en/latest/)
## Run tests
Requires `easyrsa` on the PATH.
Install Easy-RSA:
macOS:
```bash
brew install easy-rsa
```
Ubuntu:
```bash
sudo apt-get update
sudo apt-get install -y easy-rsa
export PATH=$PATH:/usr/share/easy-rsa
```
Run tests:
```bash
make install-dev
make test
```