We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d33e151 commit 6f7f19dCopy full SHA for 6f7f19d
README.md
@@ -25,6 +25,8 @@ A collection of Value Objects to save time by generalizing types and format vali
25
* [Nullable Uuid4](#nullable-uuid4)
26
* [Date value-objects](#date-value-objects)
27
* [ISO Date](#iso-date)
28
+ * [Security value-objects](#security-value-objects)
29
+ * [CVE](#cve)
30
31
# Value-objects
32
@@ -169,3 +171,17 @@ my_date = IsoDate('2023-08-15T04:55:12.076Z')
169
171
# Getting raw value
170
172
my_date.value() # returns -> '2023-08-15T04:55:12.076Z'
173
```
174
+
175
+## Security value-objects
176
177
+### CVE
178
179
+```python
180
+from pyvalueobjects import Cve
181
182
+# Creation
183
+my_cve = Cve('CVE-2014-9418')
184
185
+# Getting raw value
186
+my_cve.value() # returns -> 'CVE-2014-9418'
187
+```
0 commit comments