Value Checkers
is_nonempty_value
Check if a value is not empty.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
Any
|
value to check |
required |
Returns:
Type | Description |
---|---|
bool
|
True if it is not empty |
Examples:
result = xmllib.is_nonempty_value("not empty")
# result == True
result = xmllib.is_nonempty_value("")
# result == False
result = xmllib.is_nonempty_value(None)
# result == False
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/value_checkers.py
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
|
is_bool_like
Checks if a value is a bool or can be converted into a bool. It is case-insensitive, meaning that the words can also be capitalised.
Accepted values
false
,0
,0.0
,no
,non
,nein
->False
true
,1
,1.0
,yes
,oui
,ja
->True
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
Any
|
value to check |
required |
Returns:
Type | Description |
---|---|
bool
|
True if it conforms |
Examples:
result = xmllib.is_bool_like("yes")
# result == True
result = xmllib.is_bool_like("not like a bool")
# result == False
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/value_checkers.py
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
|
is_color
Checks if a value is a color value.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
Any
|
value to check |
required |
Returns:
Type | Description |
---|---|
bool
|
True if it conforms |
Examples:
result = xmllib.is_color("#00ff66")
# result == True
result = xmllib.is_color("not a color")
# result == False
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/value_checkers.py
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
|
is_date
Checks if a value is a date value.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
Any
|
value to check |
required |
Returns:
Type | Description |
---|---|
bool
|
True if it conforms |
Examples:
result = xmllib.is_date("GREGORIAN:CE:2014-01-31:CE:2014-01-31")
# result == True
result = xmllib.is_date("not a date")
# result == False
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/value_checkers.py
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 |
|
is_geoname
Checks if a value is a geoname value.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
Any
|
value to check |
required |
Returns:
Type | Description |
---|---|
bool
|
True if it conforms |
Examples:
result = xmllib.is_geoname("8879000")
# result == True
result = xmllib.is_geoname("not a geoname code")
# result == False
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/value_checkers.py
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 |
|
is_decimal
Checks if a value is a float, an integer, or a string which can be converted into a float.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
Any
|
value to check |
required |
Returns:
Type | Description |
---|---|
bool
|
True if conforms to the above-mentioned criteria. |
Examples:
result = xmllib.is_decimal("0.1")
# result == True
# because this is equivalent to 9.0 it is accepted
result = xmllib.is_decimal(9)
# result == True
result = xmllib.is_decimal("not a decimal")
# result == False
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/value_checkers.py
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 |
|
is_integer
Checks if a value is an integer or a string which can be converted into an integer.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
Any
|
value to check |
required |
Returns:
Type | Description |
---|---|
bool
|
True if conforms to the above-mentioned criteria. |
Examples:
result = xmllib.is_integer("1")
# result == True
result = xmllib.is_integer(9.1)
# result == False
result = xmllib.is_integer("not an integer")
# result == False
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/value_checkers.py
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 |
|
is_string_like
Checks if a value is a string.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
Any
|
value to check |
required |
Returns:
Type | Description |
---|---|
bool
|
True if it is a string |
Examples:
result = xmllib.is_string_like("this is a string")
# result == True
# because numbers, floats, etc. can be converted to strings they are accepted
result = xmllib.is_string_like(1)
# result == True
result = xmllib.is_string_like(None)
# result == False
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/value_checkers.py
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
|
is_timestamp
Checks if a value is a valid timestamp.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
Any
|
value to check |
required |
Returns:
Type | Description |
---|---|
bool
|
True if it conforms |
Examples:
result = xmllib.is_timestamp("2019-10-23T13:45:12Z")
# result == True
result = xmllib.is_timestamp("not a time stamp")
# result == False
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/value_checkers.py
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 |
|
is_dsp_iri
Check if a value is a valid internal DSP IRI.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
Any
|
IRI |
required |
Returns:
Type | Description |
---|---|
bool
|
True if it is valid, else false |
Examples:
result = xmllib.is_dsp_iri("http://rdfh.ch/4123/54SYvWF0QUW6a")
# result == True
result = xmllib.is_dsp_iri("http://dbpedia.org/resource/Internationalized_Resource_Identifier")
# result == False
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/value_checkers.py
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 |
|
is_dsp_ark
Checks if a value is a valid ARK.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
Any
|
ARK |
required |
Returns:
Type | Description |
---|---|
bool
|
True if it is valid, else false |
Examples:
result = xmllib.is_dsp_ark("ark:/72163/4123-31ec6eab334-a.2022829")
# result == True
result = xmllib.is_dsp_ark("http://rdfh.ch/4123/54SYvWF0QUW6a")
# result == False
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/value_checkers.py
324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 |
|
check_richtext_syntax
DSP richtexts must be convertible into valid XML.
This checker escapes the reserved characters <
, >
and &
,
but only if they are not part of a standard standoff tag or escape sequence.
Then, it tries to parse the resulting XML.
Note: Only DSP standard standoff tags are allowed in richtexts. They are documented here.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
richtext
|
str
|
richtext to check |
required |
Warns:
Type | Description |
---|---|
DspToolsUserWarning
|
if the input contains XML syntax problems |
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/value_checkers.py
348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 |
|