summaryrefslogtreecommitdiff
path: root/docs/src/api/python/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/src/api/python/README.md')
-rw-r--r--docs/src/api/python/README.md11
1 files changed, 10 insertions, 1 deletions
diff --git a/docs/src/api/python/README.md b/docs/src/api/python/README.md
index 452b575..01a14a0 100644
--- a/docs/src/api/python/README.md
+++ b/docs/src/api/python/README.md
@@ -1 +1,10 @@
-# Go
+# Python
+As the Go library is build as a *shared* library, it can be loaded by other languages. We have created wrapper code for Python to use this library. We define the functions and then give a similar example to the Go example.
+
+The functions that we will discuss are all part of the `EduVPN` class defined in eduvpncommon.main. You can import it like so:
+
+```python
+import eduvpncommon.main as eduvpn
+
+# Then use eduvpn.EduVPN
+```