pointblank 0.14.0__py3-none-any.whl → 0.16.0__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.
pointblank/column.py CHANGED
@@ -268,9 +268,12 @@ def col(
268
268
  - [`col_vals_outside()`](`pointblank.Validate.col_vals_outside`)
269
269
  - [`col_vals_in_set()`](`pointblank.Validate.col_vals_in_set`)
270
270
  - [`col_vals_not_in_set()`](`pointblank.Validate.col_vals_not_in_set`)
271
+ - [`col_vals_increasing()`](`pointblank.Validate.col_vals_increasing`)
272
+ - [`col_vals_decreasing()`](`pointblank.Validate.col_vals_decreasing`)
271
273
  - [`col_vals_null()`](`pointblank.Validate.col_vals_null`)
272
274
  - [`col_vals_not_null()`](`pointblank.Validate.col_vals_not_null`)
273
275
  - [`col_vals_regex()`](`pointblank.Validate.col_vals_regex`)
276
+ - [`col_vals_within_spec()`](`pointblank.Validate.col_vals_within_spec`)
274
277
  - [`col_exists()`](`pointblank.Validate.col_exists`)
275
278
 
276
279
  If specifying a single column with certainty (you have the exact name), `col()` is not necessary
@@ -568,9 +571,12 @@ def starts_with(text: str, case_sensitive: bool = False) -> StartsWith:
568
571
  - [`col_vals_outside()`](`pointblank.Validate.col_vals_outside`)
569
572
  - [`col_vals_in_set()`](`pointblank.Validate.col_vals_in_set`)
570
573
  - [`col_vals_not_in_set()`](`pointblank.Validate.col_vals_not_in_set`)
574
+ - [`col_vals_increasing()`](`pointblank.Validate.col_vals_increasing`)
575
+ - [`col_vals_decreasing()`](`pointblank.Validate.col_vals_decreasing`)
571
576
  - [`col_vals_null()`](`pointblank.Validate.col_vals_null`)
572
577
  - [`col_vals_not_null()`](`pointblank.Validate.col_vals_not_null`)
573
578
  - [`col_vals_regex()`](`pointblank.Validate.col_vals_regex`)
579
+ - [`col_vals_within_spec()`](`pointblank.Validate.col_vals_within_spec`)
574
580
  - [`col_exists()`](`pointblank.Validate.col_exists`)
575
581
 
576
582
  The `starts_with()` selector function doesn't need to be used in isolation. Read the next
@@ -727,9 +733,12 @@ def ends_with(text: str, case_sensitive: bool = False) -> EndsWith:
727
733
  - [`col_vals_outside()`](`pointblank.Validate.col_vals_outside`)
728
734
  - [`col_vals_in_set()`](`pointblank.Validate.col_vals_in_set`)
729
735
  - [`col_vals_not_in_set()`](`pointblank.Validate.col_vals_not_in_set`)
736
+ - [`col_vals_increasing()`](`pointblank.Validate.col_vals_increasing`)
737
+ - [`col_vals_decreasing()`](`pointblank.Validate.col_vals_decreasing`)
730
738
  - [`col_vals_null()`](`pointblank.Validate.col_vals_null`)
731
739
  - [`col_vals_not_null()`](`pointblank.Validate.col_vals_not_null`)
732
740
  - [`col_vals_regex()`](`pointblank.Validate.col_vals_regex`)
741
+ - [`col_vals_within_spec()`](`pointblank.Validate.col_vals_within_spec`)
733
742
  - [`col_exists()`](`pointblank.Validate.col_exists`)
734
743
 
735
744
  The `ends_with()` selector function doesn't need to be used in isolation. Read the next section
@@ -887,9 +896,12 @@ def contains(text: str, case_sensitive: bool = False) -> Contains:
887
896
  - [`col_vals_outside()`](`pointblank.Validate.col_vals_outside`)
888
897
  - [`col_vals_in_set()`](`pointblank.Validate.col_vals_in_set`)
889
898
  - [`col_vals_not_in_set()`](`pointblank.Validate.col_vals_not_in_set`)
899
+ - [`col_vals_increasing()`](`pointblank.Validate.col_vals_increasing`)
900
+ - [`col_vals_decreasing()`](`pointblank.Validate.col_vals_decreasing`)
890
901
  - [`col_vals_null()`](`pointblank.Validate.col_vals_null`)
891
902
  - [`col_vals_not_null()`](`pointblank.Validate.col_vals_not_null`)
892
903
  - [`col_vals_regex()`](`pointblank.Validate.col_vals_regex`)
904
+ - [`col_vals_within_spec()`](`pointblank.Validate.col_vals_within_spec`)
893
905
  - [`col_exists()`](`pointblank.Validate.col_exists`)
894
906
 
895
907
  The `contains()` selector function doesn't need to be used in isolation. Read the next section
@@ -1047,9 +1059,12 @@ def matches(pattern: str, case_sensitive: bool = False) -> Matches:
1047
1059
  - [`col_vals_outside()`](`pointblank.Validate.col_vals_outside`)
1048
1060
  - [`col_vals_in_set()`](`pointblank.Validate.col_vals_in_set`)
1049
1061
  - [`col_vals_not_in_set()`](`pointblank.Validate.col_vals_not_in_set`)
1062
+ - [`col_vals_increasing()`](`pointblank.Validate.col_vals_increasing`)
1063
+ - [`col_vals_decreasing()`](`pointblank.Validate.col_vals_decreasing`)
1050
1064
  - [`col_vals_null()`](`pointblank.Validate.col_vals_null`)
1051
1065
  - [`col_vals_not_null()`](`pointblank.Validate.col_vals_not_null`)
1052
1066
  - [`col_vals_regex()`](`pointblank.Validate.col_vals_regex`)
1067
+ - [`col_vals_within_spec()`](`pointblank.Validate.col_vals_within_spec`)
1053
1068
  - [`col_exists()`](`pointblank.Validate.col_exists`)
1054
1069
 
1055
1070
  The `matches()` selector function doesn't need to be used in isolation. Read the next section
@@ -1189,9 +1204,12 @@ def everything() -> Everything:
1189
1204
  - [`col_vals_outside()`](`pointblank.Validate.col_vals_outside`)
1190
1205
  - [`col_vals_in_set()`](`pointblank.Validate.col_vals_in_set`)
1191
1206
  - [`col_vals_not_in_set()`](`pointblank.Validate.col_vals_not_in_set`)
1207
+ - [`col_vals_increasing()`](`pointblank.Validate.col_vals_increasing`)
1208
+ - [`col_vals_decreasing()`](`pointblank.Validate.col_vals_decreasing`)
1192
1209
  - [`col_vals_null()`](`pointblank.Validate.col_vals_null`)
1193
1210
  - [`col_vals_not_null()`](`pointblank.Validate.col_vals_not_null`)
1194
1211
  - [`col_vals_regex()`](`pointblank.Validate.col_vals_regex`)
1212
+ - [`col_vals_within_spec()`](`pointblank.Validate.col_vals_within_spec`)
1195
1213
  - [`col_exists()`](`pointblank.Validate.col_exists`)
1196
1214
 
1197
1215
  The `everything()` selector function doesn't need to be used in isolation. Read the next section
@@ -1341,9 +1359,12 @@ def first_n(n: int, offset: int = 0) -> FirstN:
1341
1359
  - [`col_vals_outside()`](`pointblank.Validate.col_vals_outside`)
1342
1360
  - [`col_vals_in_set()`](`pointblank.Validate.col_vals_in_set`)
1343
1361
  - [`col_vals_not_in_set()`](`pointblank.Validate.col_vals_not_in_set`)
1362
+ - [`col_vals_increasing()`](`pointblank.Validate.col_vals_increasing`)
1363
+ - [`col_vals_decreasing()`](`pointblank.Validate.col_vals_decreasing`)
1344
1364
  - [`col_vals_null()`](`pointblank.Validate.col_vals_null`)
1345
1365
  - [`col_vals_not_null()`](`pointblank.Validate.col_vals_not_null`)
1346
1366
  - [`col_vals_regex()`](`pointblank.Validate.col_vals_regex`)
1367
+ - [`col_vals_within_spec()`](`pointblank.Validate.col_vals_within_spec`)
1347
1368
  - [`col_exists()`](`pointblank.Validate.col_exists`)
1348
1369
 
1349
1370
  The `first_n()` selector function doesn't need to be used in isolation. Read the next section
@@ -1497,9 +1518,12 @@ def last_n(n: int, offset: int = 0) -> LastN:
1497
1518
  - [`col_vals_outside()`](`pointblank.Validate.col_vals_outside`)
1498
1519
  - [`col_vals_in_set()`](`pointblank.Validate.col_vals_in_set`)
1499
1520
  - [`col_vals_not_in_set()`](`pointblank.Validate.col_vals_not_in_set`)
1521
+ - [`col_vals_increasing()`](`pointblank.Validate.col_vals_increasing`)
1522
+ - [`col_vals_decreasing()`](`pointblank.Validate.col_vals_decreasing`)
1500
1523
  - [`col_vals_null()`](`pointblank.Validate.col_vals_null`)
1501
1524
  - [`col_vals_not_null()`](`pointblank.Validate.col_vals_not_null`)
1502
1525
  - [`col_vals_regex()`](`pointblank.Validate.col_vals_regex`)
1526
+ - [`col_vals_within_spec()`](`pointblank.Validate.col_vals_within_spec`)
1503
1527
  - [`col_exists()`](`pointblank.Validate.col_exists`)
1504
1528
 
1505
1529
  The `last_n()` selector function doesn't need to be used in isolation. Read the next section for