blob: e15511ffd2a1ba6bbeb5dc1300b2f16db7651844 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# 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 `eduvpn_common.main`. You can import it like so:
```python
import eduvpn_common.main as eduvpn
# Then use eduvpn.EduVPN
```
|