omnipy.data.dataset
Typed dataset containers and dataset type predicates.
This module defines :class:Dataset, the core Omnipy container for named data items that all
share the same model or nested dataset type. It also provides helper predicates for checking
dataset instances and subclasses in a lenient way that works with the library's generic types.
| CLASS | DESCRIPTION |
|---|---|
Dataset |
Store named, typed data items in a dict-like container. |
| FUNCTION | DESCRIPTION |
|---|---|
is_dataset_instance |
Return whether an object is a dataset instance. |
is_dataset_subclass |
Return whether a type form is a dataset subclass. |
| ATTRIBUTE | DESCRIPTION |
|---|---|
dict_t |
|
dict_t
module-attribute
Dataset
Bases: DatasetDisplayMixin, TaskDatasetMixin, DataClassBase, pyd.GenericModel, UserDict[str, _ModelOrDatasetT], Generic[_ModelOrDatasetT]
flowchart BT
omnipy.data.dataset.Dataset[Dataset]
omnipy.data._mixins.display.DatasetDisplayMixin[DatasetDisplayMixin]
omnipy.data._mixins.display.BaseDisplayMixin[BaseDisplayMixin]
omnipy.data._mixins.task.TaskDatasetMixin[TaskDatasetMixin]
omnipy.data._data_class_creator.DataClassBase[DataClassBase]
omnipy.data._mixins.display.DatasetDisplayMixin --> omnipy.data.dataset.Dataset
omnipy.data._mixins.display.BaseDisplayMixin --> omnipy.data._mixins.display.DatasetDisplayMixin
omnipy.data._mixins.task.TaskDatasetMixin --> omnipy.data.dataset.Dataset
omnipy.data._data_class_creator.DataClassBase --> omnipy.data.dataset.Dataset
omnipy.util.pydantic.GenericModel --> omnipy.data.dataset.Dataset
click omnipy.data.dataset.Dataset href "" "omnipy.data.dataset.Dataset"
click omnipy.data._mixins.display.DatasetDisplayMixin href "" "omnipy.data._mixins.display.DatasetDisplayMixin"
click omnipy.data._mixins.display.BaseDisplayMixin href "" "omnipy.data._mixins.display.BaseDisplayMixin"
click omnipy.data._mixins.task.TaskDatasetMixin href "" "omnipy.data._mixins.task.TaskDatasetMixin"
click omnipy.data._data_class_creator.DataClassBase href "" "omnipy.data._data_class_creator.DataClassBase"
Store named, typed data items in a dict-like container.
Dataset is Omnipy's core container for collections of data items that all conform to the
same model type, or to the same nested dataset type. The class must be specialized before use,
for example as Dataset[Model[list[int]]] or Dataset[MyModel].
Instances behave much like mutable dictionaries whose keys are data-file names and whose values
are validated model or dataset objects. The validated backing contents live in :attr:data,
while convenience methods such as :meth:from_data, :meth:to_data, :meth:to_json, and
:meth:load expose plain-Python, JSON, and serialized representations.
Item access supports both ordinary dictionary-style keys and dataset-specific selectors such as integer positions, slices, and iterables of keys or positions. Singular selection returns one validated item; plural selection returns a new dataset of the same specialized class.
| ATTRIBUTE | DESCRIPTION |
|---|---|
data |
Mapping from data-file names to validated model or nested dataset instances.
TYPE:
|
Example
from omnipy.data.model import Model Numbers = Dataset[Model[int]] Numbers({'one': 1}).to_data() {'one': 1}
- Reference Code reference
-
Reference
Code reference
-
omnipy-
AutoResponseContentDataset -
CsvTableDataset -
FlattenedIsaJsonDataset -
HttpUrlDataset -
IsaJsonDataset -
MultiModelDataset -
PandasDataset -
StrictBytesDataset -
StrictStrDataset -
TableDictOfDictsOfJsonScalarsDataset -
TableDictOfListsOfJsonScalarsDataset -
TableListOfDictsOfJsonScalarsDataset -
TableListOfListsOfJsonScalarsDataset -
TableOfPydanticRecordsDataset -
TableWithColNamesDataset -
TsvTableDataset
-
- omnipy
-
- Reference Code reference
| CLASS | DESCRIPTION |
|---|---|
Config |
Configure Pydantic behavior for dataset instances. |
| METHOD | DESCRIPTION |
|---|---|
__init__ |
|
absorb |
Merge another dataset's contents into this dataset. |
absorb_and_replace |
Replace this dataset's contents with another dataset's contents. |
as_multi_model_dataset |
Return a multi-model view of this dataset. |
browse |
Opens the model or dataset in a browser, if possible. |
clone_dataset_cls |
Create a new dataset subclass based on this dataset class. |
copy |
Copy the dataset. |
deepcopy_context |
Delegate nested deepcopy bookkeeping to the shared data-class creator. |
default_repr_to_terminal_str |
Render the default display panel as terminal text. |
dict |
Return the dataset backing mapping as a plain dictionary. |
do |
Apply a callable placeholder to each item and collect the results in a new dataset. |
failed_task_details |
Return failure marker payloads keyed by dataset entry name. |
from_data |
Populate the dataset from plain Python contents. |
from_json |
Populate the dataset from per-item JSON strings. |
full |
Display the content of the Model or Dataset in full height. |
get_type |
Return the concrete item type stored by this dataset class. |
json |
Preview the data content of the Model or Dataset as JSON. |
list |
Displays a summary list of all models in the dataset. |
load |
Create a dataset and load serialized contents into it. |
load_into |
Load serialized contents into this dataset instance. |
peek |
Display a preview of the Model or Dataset content. |
pending_task_details |
Return pending task marker payloads keyed by dataset entry name. |
save |
Serialize the dataset to a |
to |
Convert this dataset to another model or dataset class. |
to_data |
Return the dataset as plain Python contents. |
to_json |
Serialize each dataset item to JSON. |
to_json_schema |
Return a JSON schema for the dataset's serialized contents. |
update_forward_refs |
Try to update ForwardRefs on fields based on this Model, globalns and localns. |
update_reactive_views |
|
validate |
Validate arbitrary input as an instance of this dataset class. |
Source code in src/omnipy/data/dataset.py
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 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 200 201 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 237 238 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 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 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 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 | |
available_data
property
Return a same-type copy containing only successfully available data entries.
config
property
config: IsDataConfig
Return the data configuration shared by the owning data-class family.
| RETURNS | DESCRIPTION |
|---|---|
IsDataConfig
|
Shared configuration object used by related models and datasets.
TYPE:
|
failed_data
property
Return a same-type copy containing only entries whose producing task failed.
pending_data
property
Return a same-type copy containing only entries still waiting on task results.
reactive_objects
property
reactive_objects: IsReactiveObjects | None
Return the reactive-object registry attached to this data-class family.
snapshot_holder
property
snapshot_holder: IsSnapshotHolder[HasContent, ContentT]
Return the snapshot holder coordinating copy-based change tracking.
Config
Configure Pydantic behavior for dataset instances.
The nested config enables assignment-time validation and permits arbitrary runtime types needed by Omnipy's dataset internals.
| ATTRIBUTE | DESCRIPTION |
|---|---|
validate_assignment |
Re-validate fields whenever attributes are reassigned.
|
arbitrary_types_allowed |
Permit non-Pydantic helper types in the model definition.
|
Source code in src/omnipy/data/dataset.py
__init__
__init__(
value: Mapping[str, object] | Iterable[tuple[str, object]] | UndefinedType = Undefined,
*,
data: Mapping[str, object] | UndefinedType = Undefined,
**kwargs: object,
) -> None
Source code in src/omnipy/data/dataset.py
234 235 236 237 238 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 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 | |
absorb
absorb(other: Dataset)
Merge another dataset's contents into this dataset.
| PARAMETER | DESCRIPTION |
|---|---|
other
|
Dataset whose plain-Python contents should be added or overwrite matching keys.
TYPE:
|
Source code in src/omnipy/data/dataset.py
absorb_and_replace
absorb_and_replace(other: Dataset)
Replace this dataset's contents with another dataset's contents.
| PARAMETER | DESCRIPTION |
|---|---|
other
|
Dataset whose contents should replace the current contents.
TYPE:
|
Source code in src/omnipy/data/dataset.py
as_multi_model_dataset
as_multi_model_dataset() -> IsMultiModelDataset[_ModelOrDatasetT]
Return a multi-model view of this dataset.
| RETURNS | DESCRIPTION |
|---|---|
IsMultiModelDataset[_ModelOrDatasetT]
|
A |
Source code in src/omnipy/data/dataset.py
browse
browse(
*,
width: pyd.NonNegativeInt | None = None,
height: pyd.NonNegativeInt | None = None,
tab: pyd.NonNegativeInt = 4,
indent: pyd.NonNegativeInt = 2,
printer: PrettyPrinterLib.Literals = "auto",
syntax: SyntaxLanguageSpec.Literals | str = "auto",
freedom: pyd.NonNegativeFloat | None = 2.5,
debug: bool = False,
ui: UserInterfaceType.Literals = "auto",
system: DisplayColorSystem.Literals = "auto",
style: AllColorStyles.Literals | str = "auto",
dark: typing.Literal["auto", True, False] = "auto",
bg: bool = False,
fonts: tuple[str, ...] = ("Menlo", "DejaVu Sans Mono", "Consolas", "Courier New", "monospace"),
font_size: pyd.NonNegativeFloat | None = 14,
font_weight: pyd.NonNegativeInt | None = 400,
line_height: pyd.NonNegativeFloat | None = 1.25,
h_overflow: HorizontalOverflowMode.Literals = "ellipsis",
v_overflow: VerticalOverflowMode.Literals = "ellipsis_bottom",
panel: PanelDesign.Literals = "table",
title_at_top: bool = True,
max_title_height: MaxTitleHeight.Literals = -1,
min_panel_width: pyd.NonNegativeInt = 3,
min_crop_width: pyd.NonNegativeInt = 33,
use_min_crop_width: bool = False,
max_panels_hor: pyd.NonNegativeInt | None = 9,
max_nesting_depth: pyd.NonNegativeInt | None = 3,
justify: Justify.Literals = "left",
) -> None
Opens the model or dataset in a browser, if possible.
For models, this is a detailed view of the model's content, and for datasets this is a detailed view of each model contained in the dataset, one model per browser tab.
| PARAMETER | DESCRIPTION |
|---|---|
width
|
Width in characters of the output area (None for auto-detect based on available display dimensions).
TYPE:
|
height
|
Height in lines of the output area (None for auto-detect based on available display dimensions).
TYPE:
|
tab
|
Number of spaces to use for each tab.
TYPE:
|
indent
|
Number of spaces to use for each indentation level.
TYPE:
|
printer
|
Library to use for pretty printing.
TYPE:
|
syntax
|
Syntax language for code highlighting. Supported lexers are defined in SyntaxLanguageSpec. For non-supported styles, the user can specify a string with the Pygments lexer name. For this to work, the lexer must be registered in the Pygments library.
TYPE:
|
freedom
|
Parameter that controls the level of freedom for formatted text to follow the geometry of the frame size (=total available area) in a proportional manner. If the proportional freedom is 0 (the lowest), then the output area must not in any case be proportionally wider that the frame (i.e. a 16/9 frame will only produce output that is 16/9 or narrower). Larger values of proportional freedom allow the output to be proportionally wider than the total available frame, to a degree that relates to the size difference between the frame and the content (larger difference gives more freedom). The default value of 2.5 is a good compromise between readability/aesthetics and good use of the screen estate. If None, the freedom is unlimited (i.e. proportionality is not taken into account at all).
TYPE:
|
debug
|
When True, enables additional debugging information in
the output, such as the hierarchy of the Model
objects. Currently, only Python pretty printers support
debug=True. Hence, enabling debug mode will
automatically set the printer to the default Python
pretty printer if the
TYPE:
|
ui
|
Type of user interface for which the output should being prepared. The user interface describes the technical solutions available for interacting with the user, encompassing the support available for displaying output as well as how the user interacts with the library (including the type of interactive interpreter used, if any).
TYPE:
|
system
|
Color system to use for terminal output. The default
is
TYPE:
|
style
|
Color style/theme for syntax highlighting and other
display elements. Supported styles are defined in
AllColorStyles. For non-supported styles, the user can
specify a string with the Pygments style name. For this to
work, the style must be registered in the Pygments
library. If style is
TYPE:
|
dark
|
Whether the background color of the output is dark. This is used to determine the appropriate color scheme for syntax highlighting. The default is AUTO, which automatically tries to detect whether the background is dark. Capability of auto-detection depends on the user interface.
TYPE:
|
bg
|
If False, uses transparent background for the output. In the case of terminal output, the background color will be the current background color of the terminal. For HTML output, the background color will be automatically set to pure black or pure white, depending on the luminosity of the foreground color.
TYPE:
|
fonts
|
Font families to use in HTML output, in order of preference (empty tuple for browser default).
TYPE:
|
font_size
|
Font size in pixels for HTML output (None for browser default).
TYPE:
|
font_weight
|
Font weight for HTML output (None for browser default).
TYPE:
|
line_height
|
Line height multiplier for HTML output (None for browser default).
TYPE:
|
h_overflow
|
How to handle text that exceeds the width.
TYPE:
|
v_overflow
|
How to handle text that exceeds the height.
TYPE:
|
panel
|
Visual design of the panel used as container for the
output. Only
TYPE:
|
title_at_top
|
Whether panel titles will be displayed over the panel content (True) or below the content (False)
TYPE:
|
max_title_height
|
Maximum height of the panel title. If
TYPE:
|
min_panel_width
|
Minimum width in characters per panel.
TYPE:
|
min_crop_width
|
Minimum cropping width in characters for panels in
cases where more than one panel are to be displayed.
This is for instance used to calculate the number of
models to display in a Dataset peek(). Only applied if
TYPE:
|
use_min_crop_width
|
Whether the
TYPE:
|
max_panels_hor
|
Maximum number of panels to display horizontally
side-by-side at the top level. This value also acts as
a ceiling for nested panels; nested panels cannot
exceed this limit even if the constant
TYPE:
|
max_nesting_depth
|
Maximum levels of nested panels to display. If None, there is no limit.
TYPE:
|
justify
|
Justification mode for the panel if inside a layout panel. This is only used for the panel content. |
Source code in src/omnipy/data/_mixins/display.py
2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 | |
clone_dataset_cls
classmethod
clone_dataset_cls(
new_dataset_cls_name: str, model_cls: type[_NewModelT] | None = None
) -> type[Self]
Create a new dataset subclass based on this dataset class.
| PARAMETER | DESCRIPTION |
|---|---|
new_dataset_cls_name
|
Name of the generated dataset subclass.
TYPE:
|
model_cls
|
Optional replacement item model for the generated subclass.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
type[Self]
|
A newly created dataset subclass. |
Source code in src/omnipy/data/dataset.py
copy
Copy the dataset.
| PARAMETER | DESCRIPTION |
|---|---|
deep
|
Whether to deep-copy nested values as well as the dataset object.
TYPE:
|
**kwargs
|
Additional keyword arguments forwarded to Pydantic's
DEFAULT:
|
| RETURNS | DESCRIPTION |
|---|---|
Self
|
A copied dataset instance of the same specialized class. |
Source code in src/omnipy/data/dataset.py
deepcopy_context
deepcopy_context(
top_level_entry_func: Callable[[], None], top_level_exit_func: Callable[[], None]
) -> ContextManager[int]
Delegate nested deepcopy bookkeeping to the shared data-class creator.
| PARAMETER | DESCRIPTION |
|---|---|
top_level_entry_func
|
Callback run when entering the outermost deepcopy context.
TYPE:
|
top_level_exit_func
|
Callback run when leaving the outermost deepcopy context.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
ContextManager[int]
|
A context manager yielding the current deepcopy nesting depth. |
Source code in src/omnipy/data/_data_class_creator.py
default_repr_to_terminal_str
default_repr_to_terminal_str(ui_type: TerminalOutputUserInterfaceType.Literals) -> str
Render the default display panel as terminal text.
| PARAMETER | DESCRIPTION |
|---|---|
ui_type
|
Terminal-oriented user interface to render for. |
| RETURNS | DESCRIPTION |
|---|---|
str
|
The fully rendered string representation for |
Source code in src/omnipy/data/_mixins/display.py
dict
dict(**kwargs) -> dict_t[str, Any]
Return the dataset backing mapping as a plain dictionary.
| PARAMETER | DESCRIPTION |
|---|---|
**kwargs
|
Keyword arguments forwarded to Pydantic's
DEFAULT:
|
| RETURNS | DESCRIPTION |
|---|---|
dict_t[str, Any]
|
The serialized value of the dataset's |
Source code in src/omnipy/data/dataset.py
do
do(placeholder: F) -> Dataset[_ModelOrDatasetT]
Apply a callable placeholder to each item and collect the results in a new dataset.
| PARAMETER | DESCRIPTION |
|---|---|
placeholder
|
Callable wrapper used to transform each validated dataset item.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
Dataset[_ModelOrDatasetT]
|
A new dataset of the same class containing the transformed items. |
Source code in src/omnipy/data/dataset.py
failed_task_details
failed_task_details() -> dict[str, IsFailedData]
Return failure marker payloads keyed by dataset entry name.
Source code in src/omnipy/data/_mixins/task.py
from_data
Populate the dataset from plain Python contents.
| PARAMETER | DESCRIPTION |
|---|---|
data
|
Mapping or iterable of
TYPE:
|
update
|
Whether to merge into existing contents instead of replacing them first.
TYPE:
|
Source code in src/omnipy/data/dataset.py
from_json
Populate the dataset from per-item JSON strings.
| PARAMETER | DESCRIPTION |
|---|---|
data
|
Mapping or iterable of
TYPE:
|
update
|
Whether to merge into existing contents instead of replacing them first.
TYPE:
|
Source code in src/omnipy/data/dataset.py
full
full(
*,
width: pyd.NonNegativeInt | None = None,
height: pyd.NonNegativeInt | None = None,
tab: pyd.NonNegativeInt = 4,
indent: pyd.NonNegativeInt = 2,
printer: PrettyPrinterLib.Literals = "auto",
syntax: SyntaxLanguageSpec.Literals | str = "auto",
freedom: pyd.NonNegativeFloat | None = 2.5,
debug: bool = False,
ui: UserInterfaceType.Literals = "auto",
system: DisplayColorSystem.Literals = "auto",
style: AllColorStyles.Literals | str = "auto",
dark: typing.Literal["auto", True, False] = "auto",
bg: bool = False,
fonts: tuple[str, ...] = ("Menlo", "DejaVu Sans Mono", "Consolas", "Courier New", "monospace"),
font_size: pyd.NonNegativeFloat | None = 14,
font_weight: pyd.NonNegativeInt | None = 400,
line_height: pyd.NonNegativeFloat | None = 1.25,
h_overflow: HorizontalOverflowMode.Literals = "ellipsis",
v_overflow: VerticalOverflowMode.Literals = "ellipsis_bottom",
panel: PanelDesign.Literals = "table",
title_at_top: bool = True,
max_title_height: MaxTitleHeight.Literals = -1,
min_panel_width: pyd.NonNegativeInt = 3,
min_crop_width: pyd.NonNegativeInt = 33,
use_min_crop_width: bool = False,
max_panels_hor: pyd.NonNegativeInt | None = 9,
max_nesting_depth: pyd.NonNegativeInt | None = 3,
justify: Justify.Literals = "left",
) -> Element | None
Display the content of the Model or Dataset in full height.
full() is a shorthand for peek(height=None) for both
models and datasets. Both full-height views are automatically
limited in width by the available display dimensions.
| PARAMETER | DESCRIPTION |
|---|---|
width
|
Width in characters of the output area (None for auto-detect based on available display dimensions).
TYPE:
|
height
|
Height in lines of the output area (None for auto-detect based on available display dimensions).
TYPE:
|
tab
|
Number of spaces to use for each tab.
TYPE:
|
indent
|
Number of spaces to use for each indentation level.
TYPE:
|
printer
|
Library to use for pretty printing.
TYPE:
|
syntax
|
Syntax language for code highlighting. Supported lexers are defined in SyntaxLanguageSpec. For non-supported styles, the user can specify a string with the Pygments lexer name. For this to work, the lexer must be registered in the Pygments library.
TYPE:
|
freedom
|
Parameter that controls the level of freedom for formatted text to follow the geometry of the frame size (=total available area) in a proportional manner. If the proportional freedom is 0 (the lowest), then the output area must not in any case be proportionally wider that the frame (i.e. a 16/9 frame will only produce output that is 16/9 or narrower). Larger values of proportional freedom allow the output to be proportionally wider than the total available frame, to a degree that relates to the size difference between the frame and the content (larger difference gives more freedom). The default value of 2.5 is a good compromise between readability/aesthetics and good use of the screen estate. If None, the freedom is unlimited (i.e. proportionality is not taken into account at all).
TYPE:
|
debug
|
When True, enables additional debugging information in
the output, such as the hierarchy of the Model
objects. Currently, only Python pretty printers support
debug=True. Hence, enabling debug mode will
automatically set the printer to the default Python
pretty printer if the
TYPE:
|
ui
|
Type of user interface for which the output should being prepared. The user interface describes the technical solutions available for interacting with the user, encompassing the support available for displaying output as well as how the user interacts with the library (including the type of interactive interpreter used, if any).
TYPE:
|
system
|
Color system to use for terminal output. The default
is
TYPE:
|
style
|
Color style/theme for syntax highlighting and other
display elements. Supported styles are defined in
AllColorStyles. For non-supported styles, the user can
specify a string with the Pygments style name. For this to
work, the style must be registered in the Pygments
library. If style is
TYPE:
|
dark
|
Whether the background color of the output is dark. This is used to determine the appropriate color scheme for syntax highlighting. The default is AUTO, which automatically tries to detect whether the background is dark. Capability of auto-detection depends on the user interface.
TYPE:
|
bg
|
If False, uses transparent background for the output. In the case of terminal output, the background color will be the current background color of the terminal. For HTML output, the background color will be automatically set to pure black or pure white, depending on the luminosity of the foreground color.
TYPE:
|
fonts
|
Font families to use in HTML output, in order of preference (empty tuple for browser default).
TYPE:
|
font_size
|
Font size in pixels for HTML output (None for browser default).
TYPE:
|
font_weight
|
Font weight for HTML output (None for browser default).
TYPE:
|
line_height
|
Line height multiplier for HTML output (None for browser default).
TYPE:
|
h_overflow
|
How to handle text that exceeds the width.
TYPE:
|
v_overflow
|
How to handle text that exceeds the height.
TYPE:
|
panel
|
Visual design of the panel used as container for the
output. Only
TYPE:
|
title_at_top
|
Whether panel titles will be displayed over the panel content (True) or below the content (False)
TYPE:
|
max_title_height
|
Maximum height of the panel title. If
TYPE:
|
min_panel_width
|
Minimum width in characters per panel.
TYPE:
|
min_crop_width
|
Minimum cropping width in characters for panels in
cases where more than one panel are to be displayed.
This is for instance used to calculate the number of
models to display in a Dataset peek(). Only applied if
TYPE:
|
use_min_crop_width
|
Whether the
TYPE:
|
max_panels_hor
|
Maximum number of panels to display horizontally
side-by-side at the top level. This value also acts as
a ceiling for nested panels; nested panels cannot
exceed this limit even if the constant
TYPE:
|
max_nesting_depth
|
Maximum levels of nested panels to display. If None, there is no limit.
TYPE:
|
justify
|
Justification mode for the panel if inside a layout panel. This is only used for the panel content. |
| RETURNS | DESCRIPTION |
|---|---|
Element | None
|
If the UI type is Jupyter running in browser, the method returns a ReactivelyResizingHtml element which is a Jupyter widget to display HTML output in the browser. Otherwise, the method returns None. |
Note
Any default argument value is overridden by the corresponding value in the relevant subsection of the UserInterfaceConfig.
Source code in src/omnipy/data/_mixins/display.py
1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 | |
get_type
cached
classmethod
Return the concrete item type stored by this dataset class.
| RETURNS | DESCRIPTION |
|---|---|
type[_ModelOrDatasetT]
|
The specialized model or nested dataset class used for every item in the dataset. |
Source code in src/omnipy/data/dataset.py
json
json(
*,
width: pyd.NonNegativeInt | None = None,
height: pyd.NonNegativeInt | None = None,
tab: pyd.NonNegativeInt = 4,
indent: pyd.NonNegativeInt = 2,
printer: PrettyPrinterLib.Literals = "auto",
syntax: SyntaxLanguageSpec.Literals | str = "auto",
freedom: pyd.NonNegativeFloat | None = 2.5,
debug: bool = False,
ui: UserInterfaceType.Literals = "auto",
system: DisplayColorSystem.Literals = "auto",
style: AllColorStyles.Literals | str = "auto",
dark: typing.Literal["auto", True, False] = "auto",
bg: bool = False,
fonts: tuple[str, ...] = ("Menlo", "DejaVu Sans Mono", "Consolas", "Courier New", "monospace"),
font_size: pyd.NonNegativeFloat | None = 14,
font_weight: pyd.NonNegativeInt | None = 400,
line_height: pyd.NonNegativeFloat | None = 1.25,
h_overflow: HorizontalOverflowMode.Literals = "ellipsis",
v_overflow: VerticalOverflowMode.Literals = "ellipsis_bottom",
panel: PanelDesign.Literals = "table",
title_at_top: bool = True,
max_title_height: MaxTitleHeight.Literals = -1,
min_panel_width: pyd.NonNegativeInt = 3,
min_crop_width: pyd.NonNegativeInt = 33,
use_min_crop_width: bool = False,
max_panels_hor: pyd.NonNegativeInt | None = 9,
max_nesting_depth: pyd.NonNegativeInt | None = 3,
justify: Justify.Literals = "left",
) -> Element | None
Preview the data content of the Model or Dataset as JSON.
In contrast to e.g. peek(), json() displays the "data
content" of the Model or Dataset, i.e. the content as plain
Python objects, potentially converted from the internal data
structure. This plain data is formatted in JSON (for
compactness). Hence json() represents a the basic
compatibility layer of all Omnipy Model or Dataset objects.
The view is automatically limited by the available display
dimensions.
| PARAMETER | DESCRIPTION |
|---|---|
width
|
Width in characters of the output area (None for auto-detect based on available display dimensions).
TYPE:
|
height
|
Height in lines of the output area (None for auto-detect based on available display dimensions).
TYPE:
|
tab
|
Number of spaces to use for each tab.
TYPE:
|
indent
|
Number of spaces to use for each indentation level.
TYPE:
|
printer
|
Library to use for pretty printing.
TYPE:
|
syntax
|
Syntax language for code highlighting. Supported lexers are defined in SyntaxLanguageSpec. For non-supported styles, the user can specify a string with the Pygments lexer name. For this to work, the lexer must be registered in the Pygments library.
TYPE:
|
freedom
|
Parameter that controls the level of freedom for formatted text to follow the geometry of the frame size (=total available area) in a proportional manner. If the proportional freedom is 0 (the lowest), then the output area must not in any case be proportionally wider that the frame (i.e. a 16/9 frame will only produce output that is 16/9 or narrower). Larger values of proportional freedom allow the output to be proportionally wider than the total available frame, to a degree that relates to the size difference between the frame and the content (larger difference gives more freedom). The default value of 2.5 is a good compromise between readability/aesthetics and good use of the screen estate. If None, the freedom is unlimited (i.e. proportionality is not taken into account at all).
TYPE:
|
debug
|
When True, enables additional debugging information in
the output, such as the hierarchy of the Model
objects. Currently, only Python pretty printers support
debug=True. Hence, enabling debug mode will
automatically set the printer to the default Python
pretty printer if the
TYPE:
|
ui
|
Type of user interface for which the output should being prepared. The user interface describes the technical solutions available for interacting with the user, encompassing the support available for displaying output as well as how the user interacts with the library (including the type of interactive interpreter used, if any).
TYPE:
|
system
|
Color system to use for terminal output. The default
is
TYPE:
|
style
|
Color style/theme for syntax highlighting and other
display elements. Supported styles are defined in
AllColorStyles. For non-supported styles, the user can
specify a string with the Pygments style name. For this to
work, the style must be registered in the Pygments
library. If style is
TYPE:
|
dark
|
Whether the background color of the output is dark. This is used to determine the appropriate color scheme for syntax highlighting. The default is AUTO, which automatically tries to detect whether the background is dark. Capability of auto-detection depends on the user interface.
TYPE:
|
bg
|
If False, uses transparent background for the output. In the case of terminal output, the background color will be the current background color of the terminal. For HTML output, the background color will be automatically set to pure black or pure white, depending on the luminosity of the foreground color.
TYPE:
|
fonts
|
Font families to use in HTML output, in order of preference (empty tuple for browser default).
TYPE:
|
font_size
|
Font size in pixels for HTML output (None for browser default).
TYPE:
|
font_weight
|
Font weight for HTML output (None for browser default).
TYPE:
|
line_height
|
Line height multiplier for HTML output (None for browser default).
TYPE:
|
h_overflow
|
How to handle text that exceeds the width.
TYPE:
|
v_overflow
|
How to handle text that exceeds the height.
TYPE:
|
panel
|
Visual design of the panel used as container for the
output. Only
TYPE:
|
title_at_top
|
Whether panel titles will be displayed over the panel content (True) or below the content (False)
TYPE:
|
max_title_height
|
Maximum height of the panel title. If
TYPE:
|
min_panel_width
|
Minimum width in characters per panel.
TYPE:
|
min_crop_width
|
Minimum cropping width in characters for panels in
cases where more than one panel are to be displayed.
This is for instance used to calculate the number of
models to display in a Dataset peek(). Only applied if
TYPE:
|
use_min_crop_width
|
Whether the
TYPE:
|
max_panels_hor
|
Maximum number of panels to display horizontally
side-by-side at the top level. This value also acts as
a ceiling for nested panels; nested panels cannot
exceed this limit even if the constant
TYPE:
|
max_nesting_depth
|
Maximum levels of nested panels to display. If None, there is no limit.
TYPE:
|
justify
|
Justification mode for the panel if inside a layout panel. This is only used for the panel content. |
| RETURNS | DESCRIPTION |
|---|---|
Element | None
|
If the UI type is Jupyter running in browser, the method returns a ReactivelyResizingHtml element which is a Jupyter widget to display HTML output in the browser. Otherwise, the method returns None. |
Note
Any default argument value is overridden by the corresponding value in the relevant subsection of the UserInterfaceConfig.
Source code in src/omnipy/data/_mixins/display.py
1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 | |
list
list(
*,
width: pyd.NonNegativeInt | None = None,
height: pyd.NonNegativeInt | None = None,
tab: pyd.NonNegativeInt = 4,
indent: pyd.NonNegativeInt = 2,
printer: PrettyPrinterLib.Literals = "auto",
syntax: SyntaxLanguageSpec.Literals | str = "auto",
freedom: pyd.NonNegativeFloat | None = 2.5,
debug: bool = False,
ui: UserInterfaceType.Literals = "auto",
system: DisplayColorSystem.Literals = "auto",
style: AllColorStyles.Literals | str = "auto",
dark: typing.Literal["auto", True, False] = "auto",
bg: bool = False,
fonts: tuple[str, ...] = ("Menlo", "DejaVu Sans Mono", "Consolas", "Courier New", "monospace"),
font_size: pyd.NonNegativeFloat | None = 14,
font_weight: pyd.NonNegativeInt | None = 400,
line_height: pyd.NonNegativeFloat | None = 1.25,
h_overflow: HorizontalOverflowMode.Literals = "ellipsis",
v_overflow: VerticalOverflowMode.Literals = "ellipsis_bottom",
panel: PanelDesign.Literals = "table",
title_at_top: bool = True,
max_title_height: MaxTitleHeight.Literals = -1,
min_panel_width: pyd.NonNegativeInt = 3,
min_crop_width: pyd.NonNegativeInt = 33,
use_min_crop_width: bool = False,
max_panels_hor: pyd.NonNegativeInt | None = 9,
max_nesting_depth: pyd.NonNegativeInt | None = 3,
justify: Justify.Literals = "left",
) -> Element | None
Displays a summary list of all models in the dataset.
The summary list includes a number of key properties for each model, including data file names, types, lengths, and sizes in memory. The output is automatically limited by the available display dimensions.
| PARAMETER | DESCRIPTION |
|---|---|
width
|
Width in characters of the output area (None for auto-detect based on available display dimensions).
TYPE:
|
height
|
Height in lines of the output area (None for auto-detect based on available display dimensions).
TYPE:
|
tab
|
Number of spaces to use for each tab.
TYPE:
|
indent
|
Number of spaces to use for each indentation level.
TYPE:
|
printer
|
Library to use for pretty printing.
TYPE:
|
syntax
|
Syntax language for code highlighting. Supported lexers are defined in SyntaxLanguageSpec. For non-supported styles, the user can specify a string with the Pygments lexer name. For this to work, the lexer must be registered in the Pygments library.
TYPE:
|
freedom
|
Parameter that controls the level of freedom for formatted text to follow the geometry of the frame size (=total available area) in a proportional manner. If the proportional freedom is 0 (the lowest), then the output area must not in any case be proportionally wider that the frame (i.e. a 16/9 frame will only produce output that is 16/9 or narrower). Larger values of proportional freedom allow the output to be proportionally wider than the total available frame, to a degree that relates to the size difference between the frame and the content (larger difference gives more freedom). The default value of 2.5 is a good compromise between readability/aesthetics and good use of the screen estate. If None, the freedom is unlimited (i.e. proportionality is not taken into account at all).
TYPE:
|
debug
|
When True, enables additional debugging information in
the output, such as the hierarchy of the Model
objects. Currently, only Python pretty printers support
debug=True. Hence, enabling debug mode will
automatically set the printer to the default Python
pretty printer if the
TYPE:
|
ui
|
Type of user interface for which the output should being prepared. The user interface describes the technical solutions available for interacting with the user, encompassing the support available for displaying output as well as how the user interacts with the library (including the type of interactive interpreter used, if any).
TYPE:
|
system
|
Color system to use for terminal output. The default
is
TYPE:
|
style
|
Color style/theme for syntax highlighting and other
display elements. Supported styles are defined in
AllColorStyles. For non-supported styles, the user can
specify a string with the Pygments style name. For this to
work, the style must be registered in the Pygments
library. If style is
TYPE:
|
dark
|
Whether the background color of the output is dark. This is used to determine the appropriate color scheme for syntax highlighting. The default is AUTO, which automatically tries to detect whether the background is dark. Capability of auto-detection depends on the user interface.
TYPE:
|
bg
|
If False, uses transparent background for the output. In the case of terminal output, the background color will be the current background color of the terminal. For HTML output, the background color will be automatically set to pure black or pure white, depending on the luminosity of the foreground color.
TYPE:
|
fonts
|
Font families to use in HTML output, in order of preference (empty tuple for browser default).
TYPE:
|
font_size
|
Font size in pixels for HTML output (None for browser default).
TYPE:
|
font_weight
|
Font weight for HTML output (None for browser default).
TYPE:
|
line_height
|
Line height multiplier for HTML output (None for browser default).
TYPE:
|
h_overflow
|
How to handle text that exceeds the width.
TYPE:
|
v_overflow
|
How to handle text that exceeds the height.
TYPE:
|
panel
|
Visual design of the panel used as container for the
output. Only
TYPE:
|
title_at_top
|
Whether panel titles will be displayed over the panel content (True) or below the content (False)
TYPE:
|
max_title_height
|
Maximum height of the panel title. If
TYPE:
|
min_panel_width
|
Minimum width in characters per panel.
TYPE:
|
min_crop_width
|
Minimum cropping width in characters for panels in
cases where more than one panel are to be displayed.
This is for instance used to calculate the number of
models to display in a Dataset peek(). Only applied if
TYPE:
|
use_min_crop_width
|
Whether the
TYPE:
|
max_panels_hor
|
Maximum number of panels to display horizontally
side-by-side at the top level. This value also acts as
a ceiling for nested panels; nested panels cannot
exceed this limit even if the constant
TYPE:
|
max_nesting_depth
|
Maximum levels of nested panels to display. If None, there is no limit.
TYPE:
|
justify
|
Justification mode for the panel if inside a layout panel. This is only used for the panel content. |
| RETURNS | DESCRIPTION |
|---|---|
Element | None
|
If the UI type is Jupyter running in browser, the method returns a ReactivelyResizingHtml element which is a Jupyter widget to display HTML output in the browser. Otherwise, the method returns None. |
Note
Any default argument value is overridden by the corresponding value in the relevant subsection of the UserInterfaceConfig.
Source code in src/omnipy/data/_mixins/display.py
3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 | |
load
classmethod
load(
paths_or_urls: IsPathsOrUrlsOneOrMoreOrNone = None,
by_file_suffix: bool = False,
as_mime_type: None | str = None,
**kwargs: IsPathOrUrl,
) -> Self | asyncio.Task[Self]
Create a dataset and load serialized contents into it.
| PARAMETER | DESCRIPTION |
|---|---|
paths_or_urls
|
Path, URL, iterable of paths or URLs, or dataset/model of HTTP URLs to load from.
TYPE:
|
by_file_suffix
|
Whether serializer lookup should prefer file-suffix detection.
TYPE:
|
as_mime_type
|
Optional MIME type hint for HTTP loading.
TYPE:
|
**kwargs
|
Alternate keyed path or URL arguments when
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
Self | asyncio.Task[Self]
|
A loaded dataset, or an |
Source code in src/omnipy/data/dataset.py
load_into
load_into(
paths_or_urls: IsPathsOrUrlsOneOrMoreOrNone = None,
by_file_suffix: bool = False,
as_mime_type: None | str = None,
**kwargs: IsPathOrUrl,
) -> Self | asyncio.Task[Self]
Load serialized contents into this dataset instance.
| PARAMETER | DESCRIPTION |
|---|---|
paths_or_urls
|
Path, URL, iterable of paths or URLs, or dataset/model of HTTP URLs to load from.
TYPE:
|
by_file_suffix
|
Whether serializer lookup should prefer file-suffix detection.
TYPE:
|
as_mime_type
|
Optional MIME type hint for HTTP loading.
TYPE:
|
**kwargs
|
Alternate keyed path or URL arguments when
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
Self | asyncio.Task[Self]
|
This dataset instance after loading, or an |
| RAISES | DESCRIPTION |
|---|---|
AssertionError
|
If the input forms are combined incorrectly. |
TypeError
|
If |
NotImplementedError
|
If keyed local-path loading is requested. |
Source code in src/omnipy/data/dataset.py
1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 | |
peek
peek(
*,
width: pyd.NonNegativeInt | None = None,
height: pyd.NonNegativeInt | None = None,
tab: pyd.NonNegativeInt = 4,
indent: pyd.NonNegativeInt = 2,
printer: PrettyPrinterLib.Literals = "auto",
syntax: SyntaxLanguageSpec.Literals | str = "auto",
freedom: pyd.NonNegativeFloat | None = 2.5,
debug: bool = False,
ui: UserInterfaceType.Literals = "auto",
system: DisplayColorSystem.Literals = "auto",
style: AllColorStyles.Literals | str = "auto",
dark: typing.Literal["auto", True, False] = "auto",
bg: bool = False,
fonts: tuple[str, ...] = ("Menlo", "DejaVu Sans Mono", "Consolas", "Courier New", "monospace"),
font_size: pyd.NonNegativeFloat | None = 14,
font_weight: pyd.NonNegativeInt | None = 400,
line_height: pyd.NonNegativeFloat | None = 1.25,
h_overflow: HorizontalOverflowMode.Literals = "ellipsis",
v_overflow: VerticalOverflowMode.Literals = "ellipsis_bottom",
panel: PanelDesign.Literals = "table",
title_at_top: bool = True,
max_title_height: MaxTitleHeight.Literals = -1,
min_panel_width: pyd.NonNegativeInt = 3,
min_crop_width: pyd.NonNegativeInt = 33,
use_min_crop_width: bool = False,
max_panels_hor: pyd.NonNegativeInt | None = 9,
max_nesting_depth: pyd.NonNegativeInt | None = 3,
justify: Justify.Literals = "left",
) -> Element | None
Display a preview of the Model or Dataset content.
For Model instances, peek() displays a preview of the
model's content. For Dataset instances, peek() displays a
side-by-side view of each model contained in the dataset. Both
views are automatically limited by the available display
dimensions.
| PARAMETER | DESCRIPTION |
|---|---|
width
|
Width in characters of the output area (None for auto-detect based on available display dimensions).
TYPE:
|
height
|
Height in lines of the output area (None for auto-detect based on available display dimensions).
TYPE:
|
tab
|
Number of spaces to use for each tab.
TYPE:
|
indent
|
Number of spaces to use for each indentation level.
TYPE:
|
printer
|
Library to use for pretty printing.
TYPE:
|
syntax
|
Syntax language for code highlighting. Supported lexers are defined in SyntaxLanguageSpec. For non-supported styles, the user can specify a string with the Pygments lexer name. For this to work, the lexer must be registered in the Pygments library.
TYPE:
|
freedom
|
Parameter that controls the level of freedom for formatted text to follow the geometry of the frame size (=total available area) in a proportional manner. If the proportional freedom is 0 (the lowest), then the output area must not in any case be proportionally wider that the frame (i.e. a 16/9 frame will only produce output that is 16/9 or narrower). Larger values of proportional freedom allow the output to be proportionally wider than the total available frame, to a degree that relates to the size difference between the frame and the content (larger difference gives more freedom). The default value of 2.5 is a good compromise between readability/aesthetics and good use of the screen estate. If None, the freedom is unlimited (i.e. proportionality is not taken into account at all).
TYPE:
|
debug
|
When True, enables additional debugging information in
the output, such as the hierarchy of the Model
objects. Currently, only Python pretty printers support
debug=True. Hence, enabling debug mode will
automatically set the printer to the default Python
pretty printer if the
TYPE:
|
ui
|
Type of user interface for which the output should being prepared. The user interface describes the technical solutions available for interacting with the user, encompassing the support available for displaying output as well as how the user interacts with the library (including the type of interactive interpreter used, if any).
TYPE:
|
system
|
Color system to use for terminal output. The default
is
TYPE:
|
style
|
Color style/theme for syntax highlighting and other
display elements. Supported styles are defined in
AllColorStyles. For non-supported styles, the user can
specify a string with the Pygments style name. For this to
work, the style must be registered in the Pygments
library. If style is
TYPE:
|
dark
|
Whether the background color of the output is dark. This is used to determine the appropriate color scheme for syntax highlighting. The default is AUTO, which automatically tries to detect whether the background is dark. Capability of auto-detection depends on the user interface.
TYPE:
|
bg
|
If False, uses transparent background for the output. In the case of terminal output, the background color will be the current background color of the terminal. For HTML output, the background color will be automatically set to pure black or pure white, depending on the luminosity of the foreground color.
TYPE:
|
fonts
|
Font families to use in HTML output, in order of preference (empty tuple for browser default).
TYPE:
|
font_size
|
Font size in pixels for HTML output (None for browser default).
TYPE:
|
font_weight
|
Font weight for HTML output (None for browser default).
TYPE:
|
line_height
|
Line height multiplier for HTML output (None for browser default).
TYPE:
|
h_overflow
|
How to handle text that exceeds the width.
TYPE:
|
v_overflow
|
How to handle text that exceeds the height.
TYPE:
|
panel
|
Visual design of the panel used as container for the
output. Only
TYPE:
|
title_at_top
|
Whether panel titles will be displayed over the panel content (True) or below the content (False)
TYPE:
|
max_title_height
|
Maximum height of the panel title. If
TYPE:
|
min_panel_width
|
Minimum width in characters per panel.
TYPE:
|
min_crop_width
|
Minimum cropping width in characters for panels in
cases where more than one panel are to be displayed.
This is for instance used to calculate the number of
models to display in a Dataset peek(). Only applied if
TYPE:
|
use_min_crop_width
|
Whether the
TYPE:
|
max_panels_hor
|
Maximum number of panels to display horizontally
side-by-side at the top level. This value also acts as
a ceiling for nested panels; nested panels cannot
exceed this limit even if the constant
TYPE:
|
max_nesting_depth
|
Maximum levels of nested panels to display. If None, there is no limit.
TYPE:
|
justify
|
Justification mode for the panel if inside a layout panel. This is only used for the panel content. |
| RETURNS | DESCRIPTION |
|---|---|
Element | None
|
If the UI type is Jupyter running in browser, the method returns a ReactivelyResizingHtml element which is a Jupyter widget to display HTML output in the browser. Otherwise, the method returns None. |
Note
Any default argument value is overridden by the corresponding value in the relevant subsection of the UserInterfaceConfig.
Source code in src/omnipy/data/_mixins/display.py
881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 | |
pending_task_details
pending_task_details() -> dict[str, IsPendingData]
Return pending task marker payloads keyed by dataset entry name.
Source code in src/omnipy/data/_mixins/task.py
save
Serialize the dataset to a .tar.gz archive and extract a directory copy.
| PARAMETER | DESCRIPTION |
|---|---|
path
|
Destination path with or without the
TYPE:
|
Source code in src/omnipy/data/dataset.py
to
Convert this dataset to another model or dataset class.
| PARAMETER | DESCRIPTION |
|---|---|
model_or_dataset_cls
|
Target model or dataset class that can be constructed from this dataset.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
_OtherModelOrDatasetT
|
An instance of the requested target class. |
Source code in src/omnipy/data/dataset.py
to_data
to_data() -> dict_t[str, Any]
Return the dataset as plain Python contents.
| RETURNS | DESCRIPTION |
|---|---|
dict_t[str, Any]
|
A mapping from data-file name to plain Python data extracted from each validated item. |
Source code in src/omnipy/data/dataset.py
to_json
to_json(pretty=True) -> dict_t[str, str]
Serialize each dataset item to JSON.
| PARAMETER | DESCRIPTION |
|---|---|
pretty
|
Whether to pretty-print the JSON for each item.
DEFAULT:
|
| RETURNS | DESCRIPTION |
|---|---|
dict_t[str, str]
|
A mapping from data-file name to JSON string. |
Source code in src/omnipy/data/dataset.py
to_json_schema
classmethod
to_json_schema(pretty: bool = True) -> str | dict_t[str, str]
Return a JSON schema for the dataset's serialized contents.
| PARAMETER | DESCRIPTION |
|---|---|
pretty
|
Whether to return pretty-printed JSON text instead of compact JSON text.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
str | dict_t[str, str]
|
A JSON schema string describing the dataset contents. |
Source code in src/omnipy/data/dataset.py
update_forward_refs
classmethod
update_forward_refs(
calling_module: str | None = None, prev_visited_classes: set[type] | None = None, **localns: Any
) -> None
Try to update ForwardRefs on fields based on this Model, globalns and localns.
Source code in src/omnipy/data/dataset.py
1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 | |
update_reactive_views
Source code in src/omnipy/data/_mixins/display.py
validate
classmethod
Validate arbitrary input as an instance of this dataset class.
This method is primarily part of the Pydantic integration layer and preserves dataset validation behavior when iterables are accepted as input.
| PARAMETER | DESCRIPTION |
|---|---|
value
|
The value to validate.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
Self
|
A validated dataset instance. |
Source code in src/omnipy/data/dataset.py
is_dataset_instance
is_dataset_instance(__obj: object) -> TypeIs[Dataset]
Return whether an object is a dataset instance.
| PARAMETER | DESCRIPTION |
|---|---|
__obj
|
Object to test.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
TypeIs[Dataset]
|
|
Source code in src/omnipy/data/dataset.py
is_dataset_subclass
cached
Return whether a type form is a dataset subclass.
| PARAMETER | DESCRIPTION |
|---|---|
__cls
|
Type or type-like form to test.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
TypeIs[type[Dataset]]
|
|