Base
tablite.base
Attributes
tablite.base.log = logging.getLogger(__name__)
module-attribute
tablite.base.file_registry = set()
module-attribute
Classes
tablite.base.SimplePage(id, path, len, py_dtype)
Bases: object
Source code in tablite/base.py
72 73 74 75 76 77 |
|
Attributes
tablite.base.SimplePage.ids = count(start=1)
class-attribute
instance-attribute
tablite.base.SimplePage.refcounts = {}
class-attribute
instance-attribute
tablite.base.SimplePage.autocleanup = True
class-attribute
instance-attribute
tablite.base.SimplePage.path = Path(path) / 'pages' / f'{id}.npy'
instance-attribute
tablite.base.SimplePage.len = len
instance-attribute
tablite.base.SimplePage.dtype = py_dtype
instance-attribute
Functions
tablite.base.SimplePage.__setstate__(state)
when an object is unpickled, say in a case of multi-processing, object.setstate(state) is called instead of init, this means we need to update page refcount as if constructor had been called
Source code in tablite/base.py
84 85 86 87 88 89 90 91 92 |
|
tablite.base.SimplePage.next_id(path)
classmethod
Source code in tablite/base.py
94 95 96 97 98 99 100 101 102 103 104 105 |
|
tablite.base.SimplePage.__len__()
Source code in tablite/base.py
107 108 |
|
tablite.base.SimplePage.__repr__() -> str
Source code in tablite/base.py
110 111 112 113 114 115 116 |
|
tablite.base.SimplePage.__hash__() -> int
Source code in tablite/base.py
118 119 |
|
tablite.base.SimplePage.owns()
Source code in tablite/base.py
121 122 123 124 |
|
tablite.base.SimplePage.__del__()
When python's reference count for an object is 0, python uses it's garbage collector to remove the object and free the memory. As tablite tables have columns and columns have page and pages have data stored on disk, the space on disk must be freed up as well. This del override assures the cleanup of stored data.
Source code in tablite/base.py
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
|
tablite.base.SimplePage.get()
loads stored data
RETURNS | DESCRIPTION |
---|---|
np.ndarray: stored data. |
Source code in tablite/base.py
148 149 150 151 152 153 154 155 |
|
tablite.base.Page(path, array)
Bases: SimplePage
PARAMETER | DESCRIPTION |
---|---|
path |
working directory.
TYPE:
|
array |
data
TYPE:
|
Source code in tablite/base.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 |
|
Attributes
tablite.base.Page.ids = count(start=1)
class-attribute
instance-attribute
tablite.base.Page.refcounts = {}
class-attribute
instance-attribute
tablite.base.Page.autocleanup = True
class-attribute
instance-attribute
tablite.base.Page.path = Path(path) / 'pages' / f'{id}.npy'
instance-attribute
tablite.base.Page.len = len
instance-attribute
tablite.base.Page.dtype = py_dtype
instance-attribute
Functions
tablite.base.Page.__setstate__(state)
when an object is unpickled, say in a case of multi-processing, object.setstate(state) is called instead of init, this means we need to update page refcount as if constructor had been called
Source code in tablite/base.py
84 85 86 87 88 89 90 91 92 |
|
tablite.base.Page.next_id(path)
classmethod
Source code in tablite/base.py
94 95 96 97 98 99 100 101 102 103 104 105 |
|
tablite.base.Page.__len__()
Source code in tablite/base.py
107 108 |
|
tablite.base.Page.__repr__() -> str
Source code in tablite/base.py
110 111 112 113 114 115 116 |
|
tablite.base.Page.__hash__() -> int
Source code in tablite/base.py
118 119 |
|
tablite.base.Page.owns()
Source code in tablite/base.py
121 122 123 124 |
|
tablite.base.Page.__del__()
When python's reference count for an object is 0, python uses it's garbage collector to remove the object and free the memory. As tablite tables have columns and columns have page and pages have data stored on disk, the space on disk must be freed up as well. This del override assures the cleanup of stored data.
Source code in tablite/base.py
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
|
tablite.base.Page.get()
loads stored data
RETURNS | DESCRIPTION |
---|---|
np.ndarray: stored data. |
Source code in tablite/base.py
148 149 150 151 152 153 154 155 |
|
tablite.base.Column(path, value=None)
Bases: object
Create Column
PARAMETER | DESCRIPTION |
---|---|
path |
path of table.yml (defaults: Config.pid_dir)
TYPE:
|
value |
Data to store. Defaults to None.
TYPE:
|
Source code in tablite/base.py
200 201 202 203 204 205 206 207 208 209 210 |
|
Attributes
tablite.base.Column.path = path
instance-attribute
tablite.base.Column.pages = []
instance-attribute
Functions
tablite.base.Column.__len__()
Source code in tablite/base.py
212 213 |
|
tablite.base.Column.__repr__()
Source code in tablite/base.py
215 216 |
|
tablite.base.Column.repaginate()
resizes pages to Config.PAGE_SIZE
Source code in tablite/base.py
246 247 248 249 250 |
|
tablite.base.Column.extend(value)
extends the column.
PARAMETER | DESCRIPTION |
---|---|
value |
data
TYPE:
|
Source code in tablite/base.py
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 |
|
tablite.base.Column.clear()
clears the column. Like list().clear()
Source code in tablite/base.py
271 272 273 274 275 |
|
tablite.base.Column.getpages(item)
public non-user function to identify any pages + slices of data to be retrieved given a slice (item)
PARAMETER | DESCRIPTION |
---|---|
item |
target slice of data
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
list of pages/np.ndarrays. |
Example: [Page(1), Page(2), np.ndarray([4,5,6], int64)] This helps, for example when creating a copy, as the copy can reference the pages 1 and 2 and only need to store the np.ndarray that is unique to it.
Source code in tablite/base.py
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 |
|
tablite.base.Column.iter_by_page()
iterates over the column, page by page. This method minimizes the number of reads.
RETURNS | DESCRIPTION |
---|---|
generator of tuple: start: int end: int data: np.ndarray |
Source code in tablite/base.py
341 342 343 344 345 346 347 348 349 350 351 352 353 354 |
|
tablite.base.Column.__getitem__(item)
gets numpy array.
PARAMETER | DESCRIPTION |
---|---|
item |
slice of column
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
np.ndarray: results as numpy array. |
Remember:
>>> R = np.array([0,1,2,3,4,5])
>>> R[3]
3
>>> R[3:4]
array([3])
Source code in tablite/base.py
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 |
|
tablite.base.Column.__setitem__(key, value)
sets values.
PARAMETER | DESCRIPTION |
---|---|
key |
selector
TYPE:
|
value |
values to insert
TYPE:
|
RAISES | DESCRIPTION |
---|---|
KeyError
|
Following normal slicing rules |
Source code in tablite/base.py
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 |
|
tablite.base.Column.__delitem__(key)
deletes items selected by key
PARAMETER | DESCRIPTION |
---|---|
key |
selector
TYPE:
|
RAISES | DESCRIPTION |
---|---|
KeyError
|
following normal slicing rules. |
Source code in tablite/base.py
604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 |
|
tablite.base.Column.get_by_indices(indices: Union[List[int], np.ndarray]) -> np.ndarray
retrieves values from column given a set of indices.
PARAMETER | DESCRIPTION |
---|---|
indices |
targets
TYPE:
|
This method uses np.take, is faster than iterating over rows. Examples:
>>> indices = np.array(list(range(3,700_700, 426)))
>>> arr = np.array(list(range(2_000_000)))
Pythonic:
>>> [v for i,v in enumerate(arr) if i in indices]
Numpyionic:
>>> np.take(arr, indices)
Source code in tablite/base.py
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 |
|
tablite.base.Column.__iter__()
Source code in tablite/base.py
711 712 713 714 715 |
|
tablite.base.Column.__eq__(other)
compares two columns. Like list1 == list2
Source code in tablite/base.py
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 |
|
tablite.base.Column.__ne__(other)
compares two columns. Like list1 != list2
Source code in tablite/base.py
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 |
|
tablite.base.Column.copy()
returns deep=copy of Column
RETURNS | DESCRIPTION |
---|---|
Column |
Source code in tablite/base.py
791 792 793 794 795 796 797 798 799 |
|
tablite.base.Column.__copy__()
see copy
Source code in tablite/base.py
801 802 803 |
|
tablite.base.Column.__imul__(other)
Repeats instance of column N times. Like list() * N
Example:
>>> one = Column(data=[1,2])
>>> one *= 5
>>> one
[1,2, 1,2, 1,2, 1,2, 1,2]
Source code in tablite/base.py
805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 |
|
tablite.base.Column.__mul__(other)
Repeats instance of column N times. Like list() * N
Example:
>>> one = Column(data=[1,2])
>>> two = one * 5
>>> two
[1,2, 1,2, 1,2, 1,2, 1,2]
Source code in tablite/base.py
824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 |
|
tablite.base.Column.__iadd__(other)
Source code in tablite/base.py
844 845 846 847 848 849 850 851 852 |
|
tablite.base.Column.__contains__(item)
determines if item is in the Column.
Similar to 'x' in ['a','b','c']
returns boolean
PARAMETER | DESCRIPTION |
---|---|
item |
value to search for
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
bool
|
True if item exists in column. |
Source code in tablite/base.py
854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 |
|
tablite.base.Column.remove_all(*values)
removes all values of values
Source code in tablite/base.py
870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 |
|
tablite.base.Column.replace(mapping)
replaces values using a mapping.
PARAMETER | DESCRIPTION |
---|---|
mapping |
{value to replace: new value, ...}
TYPE:
|
Example:
>>> t = Table(columns={'A': [1,2,3,4]})
>>> t['A'].replace({2:20,4:40})
>>> t[:]
np.ndarray([1,20,3,40])
Source code in tablite/base.py
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 |
|
tablite.base.Column.types()
returns dict with python datatypes
RETURNS | DESCRIPTION |
---|---|
dict
|
frequency of occurrence of python datatypes |
Source code in tablite/base.py
927 928 929 930 931 932 933 934 935 936 937 938 |
|
tablite.base.Column.index()
returns dict with { unique entry : list of indices }
example:
>>> c = Column(data=['a','b','a','c','b'])
>>> c.index()
{'a':[0,2], 'b': [1,4], 'c': [3]}
Source code in tablite/base.py
940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 |
|
tablite.base.Column.unique()
returns unique list of values.
example:
>>> c = Column(data=['a','b','a','c','b'])
>>> c.unqiue()
['a','b','c']
Source code in tablite/base.py
956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 |
|
tablite.base.Column.histogram()
returns 2 arrays: unique elements and count of each element
example:
>>> c = Column(data=['a','b','a','c','b'])
>>> c.histogram()
{'a':2,'b':2,'c':1}
Source code in tablite/base.py
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 |
|
tablite.base.Column.statistics()
provides summary statistics.
RETURNS | DESCRIPTION |
---|---|
dict
|
returns dict with: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Source code in tablite/base.py
1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 |
|
tablite.base.Column.count(item)
counts appearances of item in column.
Note that in python, True == 1
and False == 0
,
whereby the following difference occurs:
in python:
>>> L = [1, True]
>>> L.count(True)
2
in tablite:
>>> t = Table({'L': [1,True]})
>>> t['L'].count(True)
1
PARAMETER | DESCRIPTION |
---|---|
item |
target item
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
int
|
number of occurrences of item. |
Source code in tablite/base.py
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 |
|
tablite.base.BaseTable(columns: [dict, None] = None, headers: [list, None] = None, rows: [list, None] = None, _path: [Path, None] = None)
Bases: object
creates Table
PARAMETER | DESCRIPTION |
---|---|
EITHER |
columns (dict, optional): dict with column names as keys, values as lists. Example: t = Table(columns={"a": [1, 2], "b": [3, 4]})
|
_path |
path to main process working directory.
TYPE:
|
Source code in tablite/base.py
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 |
|
Attributes
tablite.base.BaseTable.path = _path
instance-attribute
tablite.base.BaseTable.columns = {}
instance-attribute
tablite.base.BaseTable.rows
property
enables row based iteration in python types.
Example:
for row in Table.rows:
print(row)
Yields: tuple: values is same order as columns.
Functions
tablite.base.BaseTable.__str__()
Source code in tablite/base.py
1128 1129 |
|
tablite.base.BaseTable.__repr__()
Source code in tablite/base.py
1131 1132 |
|
tablite.base.BaseTable.nbytes()
finds the total bytes of the table on disk
RETURNS | DESCRIPTION |
---|---|
tuple
|
int: real bytes used on disk int: total bytes used if flattened |
Source code in tablite/base.py
1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 |
|
tablite.base.BaseTable.items()
returns table as dict
RETURNS | DESCRIPTION |
---|---|
dict
|
Table as dict |
Source code in tablite/base.py
1151 1152 1153 1154 1155 1156 1157 1158 1159 |
|
tablite.base.BaseTable.__delitem__(key)
Examples:
>>> del table['a'] # removes column 'a'
>>> del table[-3:] # removes last 3 rows from all columns.
Source code in tablite/base.py
1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 |
|
tablite.base.BaseTable.__setitem__(key, value)
table behaves like a dict. Args: key (str or hashable): column name value (iterable): list, tuple or nd.array with values.
As Table now accepts the keyword columns
as a dict:
>>> t = Table(columns={'b':[4,5,6], 'c':[7,8,9]})
and the header/data combinations:
>>> t = Table(header=['b','c'], data=[[4,5,6],[7,8,9]])
This has the side-benefit that tuples now can be used as headers.
Source code in tablite/base.py
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 |
|
tablite.base.BaseTable.__getitem__(keys)
Enables selection of columns and rows
PARAMETER | DESCRIPTION |
---|---|
keys |
TYPE:
|
Examples |
|
>>> |
10] selects first 10 rows from all columns
TYPE:
|
>>> |
20:3] selects column 'b' and 'c' and 'a' twice for a slice.
TYPE:
|
Raises: KeyError: if key is not found. TypeError: if key is not a string, integer or slice.
RETURNS | DESCRIPTION |
---|---|
Table
|
returns columns in same order as selection. |
Source code in tablite/base.py
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 |
|
tablite.base.BaseTable.__len__()
Source code in tablite/base.py
1289 1290 1291 1292 |
|
tablite.base.BaseTable.__eq__(other) -> bool
Determines if two tables have identical content.
PARAMETER | DESCRIPTION |
---|---|
other |
table for comparison
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
bool
|
True if tables are identical.
TYPE:
|
Source code in tablite/base.py
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 |
|
tablite.base.BaseTable.clear()
clears the table. Like dict().clear()
Source code in tablite/base.py
1346 1347 1348 |
|
tablite.base.BaseTable.save(path, compression_method=zipfile.ZIP_DEFLATED, compression_level=1)
saves table to compressed tpz file.
PARAMETER | DESCRIPTION |
---|---|
path |
file destination.
TYPE:
|
compression_method |
See zipfile compression methods. Defaults to ZIP_DEFLATED.
DEFAULT:
|
compression_level |
See zipfile compression levels. Defaults to 1.
DEFAULT:
|
The file format is as follows: .tpz is a gzip archive with table metadata captured as table.yml and the necessary set of pages saved as .npy files.
The zip contains table.yml which provides an overview of the data:
--------------------------------------
%YAML 1.2 yaml version
columns: start of columns section.
name: “列 1” name of column 1.
pages: [p1b1, p1b2] list of pages in column 1.
name: “列 2” name of column 2
pages: [p2b1, p2b2] list of pages in column 2.
----------------------------------------
Source code in tablite/base.py
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 |
|
tablite.base.BaseTable.load(path, tqdm=_tqdm)
classmethod
loads a table from .tpz file. See also Table.save for details on the file format.
PARAMETER | DESCRIPTION |
---|---|
path |
source file
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Table
|
table in read-only mode. |
Source code in tablite/base.py
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 |
|
tablite.base.BaseTable.copy()
Source code in tablite/base.py
1455 1456 1457 1458 1459 1460 1461 1462 |
|
tablite.base.BaseTable.__imul__(other)
Repeats instance of table N times.
Like list: t = t * N
PARAMETER | DESCRIPTION |
---|---|
other |
multiplier
TYPE:
|
Source code in tablite/base.py
1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 |
|
tablite.base.BaseTable.__mul__(other)
Repeat table N times.
Like list: new = old * N
PARAMETER | DESCRIPTION |
---|---|
other |
multiplier
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Table |
Source code in tablite/base.py
1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 |
|
tablite.base.BaseTable.__iadd__(other)
Concatenates tables with same column names.
Like list: table_1 += table_2
RAISES | DESCRIPTION |
---|---|
ValueError
|
If column names don't match. |
RETURNS | DESCRIPTION |
---|---|
None
|
self is updated. |
Source code in tablite/base.py
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 |
|
tablite.base.BaseTable.__add__(other)
Concatenates tables with same column names.
Like list: table_3 = table_1 + table_2
RAISES | DESCRIPTION |
---|---|
ValueError
|
If column names don't match. |
RETURNS | DESCRIPTION |
---|---|
Table |
Source code in tablite/base.py
1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 |
|
tablite.base.BaseTable.add_rows(*args, **kwargs)
its more efficient to add many rows at once.
if both args and kwargs, then args are added first, followed by kwargs.
supported cases:
>>> t = Table()
>>> t.add_columns('row','A','B','C')
>>> t.add_rows(1, 1, 2, 3) # (1) individual values as args
>>> t.add_rows([2, 1, 2, 3]) # (2) list of values as args
>>> t.add_rows((3, 1, 2, 3)) # (3) tuple of values as args
>>> t.add_rows(*(4, 1, 2, 3)) # (4) unpacked tuple becomes arg like (1)
>>> t.add_rows(row=5, A=1, B=2, C=3) # (5) kwargs
>>> t.add_rows(**{'row': 6, 'A': 1, 'B': 2, 'C': 3}) # (6) dict / json interpreted a kwargs
>>> t.add_rows((7, 1, 2, 3), (8, 4, 5, 6)) # (7) two (or more) tuples as args
>>> t.add_rows([9, 1, 2, 3], [10, 4, 5, 6]) # (8) two or more lists as rgs
>>> t.add_rows(
{'row': 11, 'A': 1, 'B': 2, 'C': 3},
{'row': 12, 'A': 4, 'B': 5, 'C': 6}
) # (9) two (or more) dicts as args - roughly comma sep'd json.
>>> t.add_rows( *[
{'row': 13, 'A': 1, 'B': 2, 'C': 3},
{'row': 14, 'A': 1, 'B': 2, 'C': 3}
]) # (10) list of dicts as args
>>> t.add_rows(row=[15,16], A=[1,1], B=[2,2], C=[3,3]) # (11) kwargs with lists as values
Source code in tablite/base.py
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 |
|
tablite.base.BaseTable.add_columns(*names)
Adds column names to table.
Source code in tablite/base.py
1618 1619 1620 1621 |
|
tablite.base.BaseTable.add_column(name, data=None)
verbose alias for table[name] = data, that checks if name already exists
PARAMETER | DESCRIPTION |
---|---|
name |
column name
TYPE:
|
data |
values. Defaults to None.
TYPE:
|
RAISES | DESCRIPTION |
---|---|
TypeError
|
name isn't string |
ValueError
|
name already exists |
Source code in tablite/base.py
1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 |
|
tablite.base.BaseTable.stack(other)
returns the joint stack of tables with overlapping column names. Example:
| Table A| + | Table B| = | Table AB |
| A| B| C| | A| B| D| | A| B| C| -|
| A| B| -| D|
Source code in tablite/base.py
1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 |
|
tablite.base.BaseTable.types()
returns nested dict of data types in the form:
{column name: {python type class: number of instances }, ... }
example:
>>> t.types()
{
'A': {<class 'str'>: 7},
'B': {<class 'int'>: 7}
}
Source code in tablite/base.py
1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 |
|
tablite.base.BaseTable.display_dict(slice_=None, blanks=None, dtype=False)
helper for creating dict for display.
PARAMETER | DESCRIPTION |
---|---|
slice_ |
python slice. Defaults to None.
TYPE:
|
blanks |
fill value for
TYPE:
|
dtype |
Adds datatype to each column. Defaults to False.
TYPE:
|
RAISES | DESCRIPTION |
---|---|
TypeError
|
slice_ must be None or slice. |
RETURNS | DESCRIPTION |
---|---|
dict
|
from Table. |
Source code in tablite/base.py
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 |
|
tablite.base.BaseTable.to_ascii(slice_=None, blanks=None, dtype=False)
returns ascii view of table as string.
PARAMETER | DESCRIPTION |
---|---|
slice_ |
slice to determine table snippet.
TYPE:
|
blanks |
value for whitespace. Defaults to None.
TYPE:
|
dtype |
adds subheader with datatype for column. Defaults to False.
TYPE:
|
Source code in tablite/base.py
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 |
|
tablite.base.BaseTable.show(slice_=None, blanks=None, dtype=False)
prints ascii view of table.
PARAMETER | DESCRIPTION |
---|---|
slice_ |
slice to determine table snippet.
TYPE:
|
blanks |
value for whitespace. Defaults to None.
TYPE:
|
dtype |
adds subheader with datatype for column. Defaults to False.
TYPE:
|
Source code in tablite/base.py
1822 1823 1824 1825 1826 1827 1828 1829 1830 |
|
tablite.base.BaseTable.to_dict(columns=None, slice_=None)
columns: list of column names. Default is None == all columns. slice_: slice. Default is None == all rows.
returns: dict with columns as keys and lists of values.
Example:
>>> t.show()
+===+===+===+
| # | a | b |
|row|int|int|
+---+---+---+
| 0 | 1| 3|
| 1 | 2| 4|
+===+===+===+
>>> t.to_dict()
{'a':[1,2], 'b':[3,4]}
Source code in tablite/base.py
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 |
|
tablite.base.BaseTable.as_json_serializable(row_count='row id', start_on=1, columns=None, slice_=None)
provides a JSON compatible format of the table.
PARAMETER | DESCRIPTION |
---|---|
row_count |
Label for row counts. Defaults to "row id".
TYPE:
|
start_on |
row counts starts by default on 1.
TYPE:
|
columns |
Column names. Defaults to None which returns all columns.
TYPE:
|
slice_ |
selector. Defaults to None which returns [:]
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
JSON serializable dict: All python datatypes have been converted to JSON compliant data. |
Source code in tablite/base.py
1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 |
|
tablite.base.BaseTable.index(*args)
param: *args: column names returns multikey index on the columns as d[(key tuple, )] = {index1, index2, ...}
Examples:
>>> table6 = Table()
>>> table6['A'] = ['Alice', 'Bob', 'Bob', 'Ben', 'Charlie', 'Ben','Albert']
>>> table6['B'] = ['Alison', 'Marley', 'Dylan', 'Affleck', 'Hepburn', 'Barnes', 'Einstein']
>>> table6.index('A') # single key.
{('Alice',): [0],
('Bob',): [1, 2],
('Ben',): [3, 5],
('Charlie',): [4],
('Albert',): [6]})
>>> table6.index('A', 'B') # multiple keys.
{('Alice', 'Alison'): [0],
('Bob', 'Marley'): [1],
('Bob', 'Dylan'): [2],
('Ben', 'Affleck'): [3],
('Charlie', 'Hepburn'): [4],
('Ben', 'Barnes'): [5],
('Albert', 'Einstein'): [6]})
Source code in tablite/base.py
1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 |
|
tablite.base.BaseTable.unique_index(*args, tqdm=_tqdm)
generates the index of unique rows given a list of column names
PARAMETER | DESCRIPTION |
---|---|
*args |
columns names
TYPE:
|
tqdm |
Defaults to _tqdm.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
np.array(int64): indices of unique records. |
Source code in tablite/base.py
1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 |
|
Functions
tablite.base.register(path)
registers path in file_registry
The method is used by Table during init when the working directory path is set, so that python can clean all temporary files up at exit.
PARAMETER | DESCRIPTION |
---|---|
path |
typically tmp/tablite-tmp/PID-{os.getpid()}
TYPE:
|
Source code in tablite/base.py
43 44 45 46 47 48 49 50 51 52 53 |
|
tablite.base.shutdown()
method to clean up temporary files triggered at shutdown.
Source code in tablite/base.py
56 57 58 59 60 61 |
|