diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..1e8037a --- /dev/null +++ b/.editorconfig @@ -0,0 +1,19 @@ +# EditorConfig is awesome: https://EditorConfig.org + +# top-most EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file +[*] +end_of_line = lf +insert_final_newline = true +charset = utf-8 + +# 4 space indentation +[*.py] +indent_style = space +indent_size = 4 + +# Tab indentation (no size specified) +[Makefile] +indent_style = tab diff --git a/.gitignore b/.gitignore index e2d6e66..315d0eb 100644 --- a/.gitignore +++ b/.gitignore @@ -131,3 +131,4 @@ dmypy.json .envrc users.csv .vscode +.develop diff --git a/README.md b/README.md index 997ff6d..714e203 100644 --- a/README.md +++ b/README.md @@ -232,3 +232,11 @@ docker run --rm -it \ This API client is not fully complete. Some features are missing, feel free to fork and pull requests to add new features. Tested working on **`Pritunl v1.30.3354.99`**. + +## Alternative API Clients +* Go - [Pritunl API Client for Go](https://github.com/nathanielvarona/pritunl-api-go) by [@nathanielvarona](https://github.com/nathanielvarona) +* Shell - [Pritunl API Shell](https://github.com/nathanielvarona/pritunl-api-shell) _(a Curl Wrapper)_ by [@nathanielvarona](https://github.com/nathanielvarona) +* Ruby - [Pritunl API Client](https://github.com/eterry1388/pritunl_api_client) by [@eterry1388](https://github.com/eterry1388) + +> [!NOTE] +> _This Python package is a fork from [Pritunl API client for Python 3](https://github.com/ijat/pritunl-api-python) by [@ijat](https://github.com/ijat)_