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 0213415 commit 095a189Copy full SHA for 095a189
src/dynamodb_encryption_sdk/__init__.py
@@ -18,6 +18,7 @@
18
)
19
from dynamodb_encryption_sdk.encrypted.resource import EncryptedResource
20
from dynamodb_encryption_sdk.encrypted.table import EncryptedTable
21
+from dynamodb_encryption_sdk.identifiers import __version__
22
23
# TableConfiguration
24
# MaterialDescription
@@ -26,5 +27,6 @@
26
27
__all__ = (
28
'decrypt_dynamodb_item', 'decrypt_python_item',
29
'encrypt_dynamodb_item', 'encrypt_python_item',
- 'EncryptedClient', 'EncryptedResource', 'EncryptedTable'
30
+ 'EncryptedClient', 'EncryptedResource', 'EncryptedTable',
31
+ '__version__'
32
0 commit comments