cloudiamond 0.0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
cloudiamond/__init__.py
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"""ClouDiamond - Security toolkit for Scratch and TurboWarp."""
|
|
2
|
+
|
|
3
|
+
__version__ = "0.0.1"
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class ClouDiamond:
|
|
7
|
+
"""Main ClouDiamond interface."""
|
|
8
|
+
|
|
9
|
+
def __init__(self):
|
|
10
|
+
self.version = __version__
|
|
11
|
+
|
|
12
|
+
def info(self):
|
|
13
|
+
return {
|
|
14
|
+
"name": "ClouDiamond",
|
|
15
|
+
"version": self.version,
|
|
16
|
+
"status": "development",
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
__all__ = ["ClouDiamond", "__version__"]
|