We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31c042e commit 1640b91Copy full SHA for 1640b91
README.md
@@ -2,6 +2,10 @@
2
3
This library contains helper methods to verify license keys in Python.
4
5
+## Installation
6
+
7
+> pip install licensing
8
9
## Example
10
11
### Key verification
@@ -11,9 +15,9 @@ The code below will work exactly as the one explained in the [key verification t
15
First, we need to add the namespaces:
12
16
13
17
```python
14
-from helpers import Helpers
-from models import Response, RSAPublicKey
-from methods import Key
18
+from cryptolens.helpers import Helpers
19
+from cryptolens.models import Response, RSAPublicKey
20
+from cryptolens.methods import Key
21
```
22
23
Now we can perform the actual key verification:
0 commit comments