An open API service indexing awesome lists of open source software.

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

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
```