Skip to content

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
def __init__(self, id, path, len, py_dtype) -> None:
    self.path = Path(path) / "pages" / f"{id}.npy"
    self.len = len
    self.dtype = py_dtype

    self._incr_refcount()
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
def __setstate__(self, 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
    """
    self.__dict__.update(state)

    self._incr_refcount()
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
@classmethod
def next_id(cls, path):
    path = Path(path)

    while True:
        _id = f"{os.getpid()}-{next(cls.ids)}"
        _path = path / "pages" / f"{_id}.npy"

        if not _path.exists():
            break  # make sure we don't override existing pages if they are created outside of main thread

    return _id
tablite.base.SimplePage.__len__()
Source code in tablite/base.py
107
108
def __len__(self):
    return self.len
tablite.base.SimplePage.__repr__() -> str
Source code in tablite/base.py
110
111
112
113
114
115
116
def __repr__(self) -> str:
    try:
        return f"{self.__class__.__name__}({self.path}, {self.get()})"
    except FileNotFoundError as e:
        return f"{self.__class__.__name__}({self.path}, <{type(e).__name__}>)"
    except Exception as e:
        return f"{self.__class__.__name__}({self.path}, <{e}>)"
tablite.base.SimplePage.__hash__() -> int
Source code in tablite/base.py
118
119
def __hash__(self) -> int:
    return hash(self.path)
tablite.base.SimplePage.owns()
Source code in tablite/base.py
121
122
123
124
def owns(self):
    parts = self.path.parts

    return all((p in parts for p in Path(Config.pid).parts))
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
def __del__(self):
    """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.
    """
    if not self.owns():
        return

    refcount = self.refcounts[self.path] = max(
        self.refcounts.get(self.path, 0) - 1, 0
    )

    if refcount > 0:
        return

    if self.autocleanup:
        self.path.unlink(True)

    del self.refcounts[self.path]
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
def get(self):
    """loads stored data

    Returns:
        np.ndarray: stored data.
    """
    array = load_numpy(self.path)
    return MetaArray(array, array.dtype, py_dtype=self.dtype)

tablite.base.Page(path, array)

Bases: SimplePage

PARAMETER DESCRIPTION
path

working directory.

TYPE: Path

array

data

TYPE: array

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
def __init__(self, path, array) -> None:
    """
    Args:
        path (Path): working directory.
        array (np.array): data
    """
    _id = self.next_id(path)

    type_check(array, np.ndarray)

    if Config.DISK_LIMIT <= 0:
        pass
    else:
        _, _, free = shutil.disk_usage(path)
        if free - array.nbytes < Config.DISK_LIMIT:
            msg = "\n".join(
                [
                    f"Disk limit reached: Config.DISK_LIMIT = {Config.DISK_LIMIT:,} bytes.",
                    f"array requires {array.nbytes:,} bytes, but only {free:,} bytes are free.",
                    "To disable this check, use:",
                    ">>> from tablite.config import Config",
                    ">>> Config.DISK_LIMIT = 0",
                    "To free space, clean up Config.workdir:",
                    f"{Config.workdir}",
                ]
            )
            raise OSError(msg)

    _len = len(array)
    # type_check(array, MetaArray)
    if not hasattr(array, "metadata"):
        raise ValueError
    _dtype = array.metadata["py_dtype"]

    super().__init__(_id, path, _len, _dtype)

    np.save(self.path, array, allow_pickle=True, fix_imports=False)
    log.debug(f"Page saved: {self.path}")
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
def __setstate__(self, 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
    """
    self.__dict__.update(state)

    self._incr_refcount()
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
@classmethod
def next_id(cls, path):
    path = Path(path)

    while True:
        _id = f"{os.getpid()}-{next(cls.ids)}"
        _path = path / "pages" / f"{_id}.npy"

        if not _path.exists():
            break  # make sure we don't override existing pages if they are created outside of main thread

    return _id
tablite.base.Page.__len__()
Source code in tablite/base.py
107
108
def __len__(self):
    return self.len
tablite.base.Page.__repr__() -> str
Source code in tablite/base.py
110
111
112
113
114
115
116
def __repr__(self) -> str:
    try:
        return f"{self.__class__.__name__}({self.path}, {self.get()})"
    except FileNotFoundError as e:
        return f"{self.__class__.__name__}({self.path}, <{type(e).__name__}>)"
    except Exception as e:
        return f"{self.__class__.__name__}({self.path}, <{e}>)"
tablite.base.Page.__hash__() -> int
Source code in tablite/base.py
118
119
def __hash__(self) -> int:
    return hash(self.path)
tablite.base.Page.owns()
Source code in tablite/base.py
121
122
123
124
def owns(self):
    parts = self.path.parts

    return all((p in parts for p in Path(Config.pid).parts))
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
def __del__(self):
    """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.
    """
    if not self.owns():
        return

    refcount = self.refcounts[self.path] = max(
        self.refcounts.get(self.path, 0) - 1, 0
    )

    if refcount > 0:
        return

    if self.autocleanup:
        self.path.unlink(True)

    del self.refcounts[self.path]
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
def get(self):
    """loads stored data

    Returns:
        np.ndarray: stored data.
    """
    array = load_numpy(self.path)
    return MetaArray(array, array.dtype, py_dtype=self.dtype)

tablite.base.Column(path, value=None)

Bases: object

Create Column

PARAMETER DESCRIPTION
path

path of table.yml (defaults: Config.pid_dir)

TYPE: Path

value

Data to store. Defaults to None.

TYPE: Iterable DEFAULT: None

Source code in tablite/base.py
200
201
202
203
204
205
206
207
208
209
210
def __init__(self, path, value=None) -> None:
    """Create Column

    Args:
        path (Path): path of table.yml (defaults: Config.pid_dir)
        value (Iterable, optional): Data to store. Defaults to None.
    """
    self.path = path
    self.pages = []  # keeps pointers to instances of Page
    if value is not None:
        self.extend(value)
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
def __len__(self):
    return sum(len(p) for p in self.pages)
tablite.base.Column.__repr__()
Source code in tablite/base.py
215
216
def __repr__(self):
    return f"{self.__class__.__name__}({self.path}, {self[:]})"
tablite.base.Column.repaginate()

resizes pages to Config.PAGE_SIZE

Source code in tablite/base.py
246
247
248
249
250
def repaginate(self):
    """resizes pages to Config.PAGE_SIZE"""
    from tablite.nimlite import repaginate as _repaginate

    _repaginate(self)
tablite.base.Column.extend(value)

extends the column.

PARAMETER DESCRIPTION
value

data

TYPE: ndarray

Source code in tablite/base.py
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
def extend(self, value):  # USER FUNCTION.
    """extends the column.

    Args:
        value (np.ndarray): data
    """
    if isinstance(value, Column):
        self.pages.extend(value.pages[:])
        return
    elif isinstance(value, np.ndarray):
        pass
    elif isinstance(value, (list, tuple)):
        value = list_to_np_array(value)
    else:
        raise TypeError(f"Cannot extend Column with {type(value)}")
    type_check(value, np.ndarray)
    for array in self._paginate(value):
        self.pages.append(Page(path=self.path, array=array))
tablite.base.Column.clear()

clears the column. Like list().clear()

Source code in tablite/base.py
271
272
273
274
275
def clear(self):
    """
    clears the column. Like list().clear()
    """
    self.pages.clear()
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: (int, slice)

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
def getpages(self, item):
    """public non-user function to identify any pages + slices
    of data to be retrieved given a slice (item)

    Args:
        item (int,slice): target slice of data

    Returns:
        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.
    """
    # internal function
    if isinstance(item, int):
        if item < 0:
            item = len(self) + item
        item = slice(item, item + 1, 1)

    type_check(item, slice)
    is_reversed = False if (item.step is None or item.step > 0) else True

    length = len(self)
    scan_item = slice(*item.indices(length))
    range_item = range(*item.indices(length))

    pages = []
    start, end = 0, 0
    for page in self.pages:
        start, end = end, end + page.len
        if is_reversed:
            if start > scan_item.start:
                break
            if end < scan_item.stop:
                continue
        else:
            if start > scan_item.stop:
                break
            if end < scan_item.start:
                continue
        ro = intercept(range(start, end), range_item)
        if len(ro) == 0:
            continue
        elif len(ro) == page.len:  # share the whole immutable page
            pages.append(page)
        else:  # fetch the slice and filter it.
            search_slice = slice(ro.start - start, ro.stop - start, ro.step)
            np_arr = load_numpy(page.path)
            match = np_arr[search_slice]
            pages.append(match)

    if is_reversed:
        pages.reverse()
        for ix, page in enumerate(pages):
            if isinstance(page, SimplePage):
                data = page.get()
                pages[ix] = np.flip(data)
            else:
                pages[ix] = np.flip(page)

    return pages
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
def iter_by_page(self):
    """iterates over the column, page by page.
    This method minimizes the number of reads.

    Returns:
        generator of tuple:
            start: int
            end: int
            data: np.ndarray
    """
    start, end = 0, 0
    for page in self.pages:
        start, end = end, end + page.len
        yield start, end, page
tablite.base.Column.__getitem__(item)

gets numpy array.

PARAMETER DESCRIPTION
item

slice of column

TYPE: int OR slice

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
def __getitem__(self, item):  # USER FUNCTION.
    """gets numpy array.

    Args:
        item (int OR slice): slice of column

    Returns:
        np.ndarray: results as numpy array.

    Remember:
    ```
    >>> R = np.array([0,1,2,3,4,5])
    >>> R[3]
    3
    >>> R[3:4]
    array([3])
    ```
    """
    result = []
    for element in self.getpages(item):
        if isinstance(element, SimplePage):
            result.append(element.get())
        else:
            result.append(element)

    if result:
        arr = np_type_unify(result)
    else:
        arr = np.array([])

    if isinstance(item, int):
        if len(arr) == 0:
            raise IndexError(
                f"index {item} is out of bounds for axis 0 with size {len(self)}"
            )
        return numpy_to_python(arr[0])
    else:
        return arr
tablite.base.Column.__setitem__(key, value)

sets values.

PARAMETER DESCRIPTION
key

selector

TYPE: (int, slice)

value

values to insert

TYPE: any

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
def __setitem__(self, key, value):  # USER FUNCTION.
    """sets values.

    Args:
        key (int,slice): selector
        value (any): values to insert

    Raises:
        KeyError: Following normal slicing rules
    """
    if isinstance(key, int):
        self._setitem_integer_key(key, value)

    elif isinstance(key, slice):
        if not isinstance(value, np.ndarray):
            value = list_to_np_array(value)
        type_check(value, np.ndarray)

        if key.start is None and key.stop is None and key.step in (None, 1):
            self._setitem_replace_all(key, value)
        elif key.start is not None and key.stop is None and key.step in (None, 1):
            self._setitem_extend(key, value)
        elif key.stop is not None and key.start is None and key.step in (None, 1):
            self._setitem_prextend(key, value)
        elif (
            key.step in (None, 1) and key.start is not None and key.stop is not None
        ):
            self._setitem_insert(key, value)
        elif key.step not in (None, 1):
            self._setitem_update(key, value)
        else:
            raise KeyError(f"bad key: {key}")
    else:
        raise KeyError(f"bad key: {key}")
tablite.base.Column.__delitem__(key)

deletes items selected by key

PARAMETER DESCRIPTION
key

selector

TYPE: (int, slice)

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
def __delitem__(self, key):  # USER FUNCTION
    """deletes items selected by key

    Args:
        key (int,slice): selector

    Raises:
        KeyError: following normal slicing rules.
    """
    if isinstance(key, int):
        self._del_by_int(key)
    elif isinstance(key, slice):
        self._del_by_slice(key)
    else:
        raise KeyError(f"bad key: {key}")
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: array

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
def get_by_indices(self, indices: Union[List[int], np.ndarray]) -> np.ndarray:
    """retrieves values from column given a set of indices.

    Args:
        indices (np.array): targets

    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)
    ```
    """
    type_check(indices, np.ndarray)

    dtypes = set()
    values = np.empty(
        indices.shape, dtype=object
    )  # placeholder for the indexed values.

    for start, end, page in self.iter_by_page():
        range_match = np.asarray(((indices >= start) & (indices < end)) | (indices == -1)).nonzero()[0]
        if len(range_match):
            # only fetch the data if there's a range match!
            data = page.get() 
            sub_index = np.take(indices, range_match)
            # sub_index2 otherwise will raise index error where len(data) > (-1 - start)
            # so the clause below is required:
            if len(data) > (-1 - start):
                sub_index = np.where(sub_index == -1, -1, sub_index - start)
            arr = np.take(data, sub_index)
            dtypes.add(arr.dtype)
            np.put(values, range_match, arr)

    if len(dtypes) == 1:  # simplify the datatype
        dtype = next(iter(dtypes))
        values = np.array(values, dtype=dtype)
    return values
tablite.base.Column.__iter__()
Source code in tablite/base.py
711
712
713
714
715
def __iter__(self):  # USER FUNCTION.
    for page in self.pages:
        data = page.get()
        for value in data:
            yield value
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
def __eq__(self, other):  # USER FUNCTION.
    """
    compares two columns. Like `list1 == list2`
    """
    if len(self) != len(other):  # quick cheap check.
        return False

    if isinstance(other, (list, tuple)):
        return all(a == b for a, b in zip(self[:], other))

    elif isinstance(other, Column):
        if self.pages == other.pages:  # special case.
            return True

        # are the pages of same size?
        if len(self.pages) == len(other.pages):
            if [p.len for p in self.pages] == [p.len for p in other.pages]:
                for a, b in zip(self.pages, other.pages):
                    if not (a.get() == b.get()).all():
                        return False
                return True
        # to bad. Element comparison it is then:
        for a, b in zip(iter(self), iter(other)):
            if a != b:
                return False
        return True

    elif isinstance(other, np.ndarray):
        start, end = 0, 0
        for p in self.pages:
            start, end = end, end + p.len
            if not (p.get() == other[start:end]).all():
                return False
        return True
    else:
        raise TypeError(f"Cannot compare {self.__class__} with {type(other)}")
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
def __ne__(self, other):  # USER FUNCTION
    """
    compares two columns. Like `list1 != list2`
    """
    if len(self) != len(other):  # quick cheap check.
        return True

    if isinstance(other, (list, tuple)):
        return any(a != b for a, b in zip(self[:], other))

    elif isinstance(other, Column):
        if self.pages == other.pages:  # special case.
            return False

        # are the pages of same size?
        if len(self.pages) == len(other.pages):
            if [p.len for p in self.pages] == [p.len for p in other.pages]:
                for a, b in zip(self.pages, other.pages):
                    if not (a.get() == b.get()).all():
                        return True
                return False
        # to bad. Element comparison it is then:
        for a, b in zip(iter(self), iter(other)):
            if a != b:
                return True
        return False

    elif isinstance(other, np.ndarray):
        start, end = 0, 0
        for p in self.pages:
            start, end = end, end + p.len
            if (p.get() != other[start:end]).any():
                return True
        return False
    else:
        raise TypeError(f"Cannot compare {self.__class__} with {type(other)}")
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
def copy(self):
    """returns deep=copy of Column

    Returns:
        Column
    """
    cp = Column(path=self.path)
    cp.pages = self.pages[:]
    return cp
tablite.base.Column.__copy__()

see copy

Source code in tablite/base.py
801
802
803
def __copy__(self):
    """see copy"""
    return self.copy()
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
def __imul__(self, 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]
    ```
    """
    if not (isinstance(other, int) and other > 0):
        raise TypeError(
            f"a column can be repeated an integer number of times, not {type(other)} number of times"
        )
    self.pages = self.pages[:] * other
    return self
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
def __mul__(self, 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]
    ```
    """
    if not isinstance(other, int):
        raise TypeError(
            f"a column can be repeated an integer number of times, not {type(other)} number of times"
        )
    cp = self.copy()
    cp *= other
    return cp
tablite.base.Column.__iadd__(other)
Source code in tablite/base.py
844
845
846
847
848
849
850
851
852
def __iadd__(self, other):
    if isinstance(other, (list, tuple)):
        other = list_to_np_array(other)
        self.extend(other)
    elif isinstance(other, Column):
        self.pages.extend(other.pages[:])
    else:
        raise TypeError(f"{type(other)} not supported.")
    return self
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: any

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
def __contains__(self, item):
    """determines if item is in the Column.
    Similar to `'x' in ['a','b','c']`
    returns boolean

    Args:
        item (any): value to search for

    Returns:
        bool: True if item exists in column.
    """
    for page in set(self.pages):
        if item in page.get():  # x in np.ndarray([...]) uses np.any(arr, value)
            return True
    return False
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
def remove_all(self, *values):
    """
    removes all values of `values`
    """
    type_check(values, tuple)
    if isinstance(values[0], tuple):
        values = values[0]
    to_remove = list_to_np_array(values)
    for index, page in enumerate(self.pages):
        data = page.get()
        bitmask = np.isin(data, to_remove)  # identify elements to remove.
        if bitmask.any():
            bitmask = np.invert(bitmask)  # turn bitmask around to keep.
            new_data = np.compress(bitmask, data)
            new_page = Page(self.path, new_data)
            self.pages[index] = new_page
tablite.base.Column.replace(mapping)

replaces values using a mapping.

PARAMETER DESCRIPTION
mapping

{value to replace: new value, ...}

TYPE: dict

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
def replace(self, mapping):
    """
    replaces values using a mapping.

    Args:
        mapping (dict): {value to replace: new value, ...}

    Example:
    ```
    >>> t = Table(columns={'A': [1,2,3,4]})
    >>> t['A'].replace({2:20,4:40})
    >>> t[:]
    np.ndarray([1,20,3,40])
    ```
    """
    type_check(mapping, dict)
    to_replace = np.array(list(mapping.keys()))
    for index, page in enumerate(self.pages):
        data = page.get()
        bitmask = np.isin(data, to_replace)  # identify elements to replace.
        if bitmask.any():
            warray = np.compress(bitmask, data)
            py_dtype = page.dtype
            for ix, v in enumerate(warray):
                old_py_val = numpy_to_python(v)
                new_py_val = mapping[old_py_val]
                old_dt = type(old_py_val)
                new_dt = type(new_py_val)

                warray[ix] = new_py_val

                py_dtype[new_dt] = py_dtype.get(new_dt, 0) + 1
                py_dtype[old_dt] = py_dtype.get(old_dt, 0) - 1

                if py_dtype[old_dt] <= 0:
                    del py_dtype[old_dt]

            data[bitmask] = warray
            self.pages[index] = Page(path=self.path, array=data)
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
def types(self):
    """
    returns dict with python datatypes

    Returns:
        dict: frequency of occurrence of python datatypes
    """
    d = Counter()
    for page in self.pages:
        assert isinstance(page.dtype, dict)
        d += page.dtype
    return dict(d)
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
def index(self):
    """
    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]}
    ```
    """
    d = defaultdict(list)
    for ix, v in enumerate(self.__iter__()):
        d[v].append(ix)
    return dict(d)
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
def unique(self):
    """
    returns unique list of values.

    example:
    ```
    >>> c = Column(data=['a','b','a','c','b'])
    >>> c.unqiue()
    ['a','b','c']
    ```
    """
    arrays = []
    for page in set(self.pages):
        try:  # when it works, numpy is fast...
            arrays.append(np.unique(page.get()))
        except TypeError:  # ...but np.unique cannot handle Nones.
            arrays.append(multitype_set(page.get()))
    union = np_type_unify(arrays)
    try:
        return np.unique(union)
    except MemoryError:
        return np.array(set(union))
    except TypeError:
        return multitype_set(union)
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
def histogram(self):
    """
    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}
    ```
    """
    d = defaultdict(int)
    for page in self.pages:
        try:
            uarray, carray = np.unique(page.get(), return_counts=True)
        except TypeError:
            uarray = page.get()
            carray = repeat(1, len(uarray))

        for i, c in zip(uarray, carray):
            v = numpy_to_python(i)
            d[(type(v), v)] += numpy_to_python(c)
    u = [v for _, v in d.keys()]
    c = list(d.values())
    return u, c  # unique, counts
tablite.base.Column.statistics()

provides summary statistics.

RETURNS DESCRIPTION
dict

returns dict with:

  • min (int/float, length of str, date)
  • max (int/float, length of str, date)
  • mean (int/float, length of str, date)
  • median (int/float, length of str, date)
  • stdev (int/float, length of str, date)
  • mode (int/float, length of str, date)
  • distinct (int/float, length of str, date)
  • iqr (int/float, length of str, date)
  • sum (int/float, length of str, date)
  • histogram (see .histogram)
Source code in tablite/base.py
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
def statistics(self):
    """provides summary statistics.

    Returns:
        dict: returns dict with:
        - min (int/float, length of str, date)
        - max (int/float, length of str, date)
        - mean (int/float, length of str, date)
        - median (int/float, length of str, date)
        - stdev (int/float, length of str, date)
        - mode (int/float, length of str, date)
        - distinct (int/float, length of str, date)
        - iqr (int/float, length of str, date)
        - sum (int/float, length of str, date)
        - histogram (see .histogram)
    """
    values, counts = self.histogram()
    return summary_statistics(values, counts)
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: Any

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
def count(self, 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
    ```

    Args:
        item (Any): target item

    Returns:
        int: number of occurrences of item.
    """
    result = 0
    for page in self.pages:
        data = page.get()
        if data.dtype != "O":
            result += np.nonzero(page.get() == item)[0].shape[0]
            # what happens here ---^ below:
            # arr = page.get()
            # >>> arr
            # array([1,2,3,4,3], int64)
            # >>> (arr == 3)
            # array([False, False,  True, False,  True])
            # >>> np.nonzero(arr==3)
            # (array([2,4], dtype=int64), )  <-- tuple!
            # >>> np.nonzero(page.get() == item)[0]
            # array([2,4])
            # >>> np.nonzero(page.get() == item)[0].shape
            # (2, )
            # >>> np.nonzero(page.get() == item)[0].shape[0]
            # 2
        else:
            result += sum(1 for i in data if type(i) == type(item) and i == item)
    return result

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: Path DEFAULT: None

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
def __init__(
    self,
    columns: [dict, None] = None,
    headers: [list, None] = None,
    rows: [list, None] = None,
    _path: [Path, None] = None,
) -> None:
    """creates Table

    Args:
        EITHER:
            columns (dict, optional): dict with column names as keys, values as lists.
            Example: t = Table(columns={"a": [1, 2], "b": [3, 4]})
        OR
            headers (list of strings, optional): list of column names.
            rows (list of tuples or lists, optional): values for columns
            Example: t = Table(headers=["a", "b"], rows=[[1,3], [2,4]])

        _path (pathlib.Path, optional): path to main process working directory.
    """
    if _path is None:
        if self._pid_dir is None:
            self._pid_dir = Path(Config.workdir) / Config.pid
            if not self._pid_dir.exists():
                self._pid_dir.mkdir()
                (self._pid_dir / "pages").mkdir()
            register(self._pid_dir)

        _path = Path(self._pid_dir)
        # if path exists under the given PID it will be overwritten.
        # this can only happen if the process previously was SIGKILLed.
    type_check(_path, Path)
    self.path = _path  # filename used during multiprocessing.
    self.columns = {}  # maps colunn names to instances of Column.

    # user friendly features.
    if columns and any((headers, rows)):
        raise ValueError("Either columns as dict OR headers and rows. Not both.")

    if headers and rows:
        rotated = list(zip(*rows))
        columns = {k: v for k, v in zip(headers, rotated)}

    if columns:
        type_check(columns, dict)
        for k, v in columns.items():
            self.__setitem__(k, v)
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
def __str__(self):  # USER FUNCTION.
    return f"{self.__class__.__name__}({len(self.columns):,} columns, {len(self):,} rows)"
tablite.base.BaseTable.__repr__()
Source code in tablite/base.py
1131
1132
def __repr__(self):
    return self.__str__()
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
def nbytes(self):  # USER FUNCTION.
    """finds the total bytes of the table on disk

    Returns:
        tuple:
            int: real bytes used on disk
            int: total bytes used if flattened
    """
    real = {}
    total = 0
    for column in self.columns.values():
        for page in set(column.pages):
            real[page] = page.path.stat().st_size
        for page in column.pages:
            total += real[page]
    return sum(real.values()), total
tablite.base.BaseTable.items()

returns table as dict

RETURNS DESCRIPTION
dict

Table as dict {column_name: [values], ...}

Source code in tablite/base.py
1151
1152
1153
1154
1155
1156
1157
1158
1159
def items(self):  # USER FUNCTION.
    """returns table as dict

    Returns:
        dict: Table as dict `{column_name: [values], ...}`
    """
    return {
        name: column[:].tolist() for name, column in self.columns.items()
    }.items()
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
def __delitem__(self, key):  # USER FUNCTION.
    """
    Examples:
    ```
    >>> del table['a']  # removes column 'a'
    >>> del table[-3:]  # removes last 3 rows from all columns.
    ```
    """
    if isinstance(key, (int, slice)):
        for column in self.columns.values():
            del column[key]
    elif key in self.columns:
        del self.columns[key]
    else:
        raise KeyError(f"Key not found: {key}")
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
def __setitem__(self, key, value):  # USER FUNCTION
    """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.
    """
    if value is None:
        self.columns[key] = Column(self.path, value=None)
    elif isinstance(value, (list, tuple)):
        value = list_to_np_array(value)
        self.columns[key] = Column(self.path, value)
    elif isinstance(value, (np.ndarray)):
        self.columns[key] = Column(self.path, value)
    elif isinstance(value, Column):
        self.columns[key] = value
    else:
        raise TypeError(f"{type(value)} not supported.")
tablite.base.BaseTable.__getitem__(keys)

Enables selection of columns and rows

PARAMETER DESCRIPTION
keys

TYPE: column name, integer or slice

Examples

>>>

10] selects first 10 rows from all columns

TYPE: table[

>>>

20:3] selects column 'b' and 'c' and 'a' twice for a slice.

TYPE: table['b', 'a', 'a', 'c', 2

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
def __getitem__(self, keys):  # USER FUNCTION
    """
    Enables selection of columns and rows

    Args:
        keys (column name, integer or slice):
        Examples:
        ```
        >>> table['a']                        selects column 'a'
        >>> table[3]                          selects row 3 as a tuple.
        >>> table[:10]                        selects first 10 rows from all columns
        >>> table['a','b', slice(3,20,2)]     selects a slice from columns 'a' and 'b'
        >>> table['b', 'a', 'a', 'c', 2:20:3] selects column 'b' and 'c' and 'a' twice for a slice.
        >>> table[('b', 'a', 'a', 'c')]       selects columns 'b', 'a', 'a', and 'c' using a tuple.
        ```
    Raises:
        KeyError: if key is not found.
        TypeError: if key is not a string, integer or slice.

    Returns:
        Table: returns columns in same order as selection.
    """

    if not isinstance(keys, tuple):
        if isinstance(keys, list):
            keys = tuple(keys)
        else:
            keys = (keys,)
    if isinstance(keys[0], tuple):
        keys = tuple(list(chain(*keys)))

    integers = [i for i in keys if isinstance(i, int)]
    if len(integers) == len(keys) == 1:  # return a single tuple.
        keys = [slice(keys[0])]

    column_names = [i for i in keys if isinstance(i, str)]
    column_names = list(self.columns) if not column_names else column_names
    not_found = [name for name in column_names if name not in self.columns]
    if not_found:
        raise KeyError(f"keys not found: {', '.join(not_found)}")

    slices = [i for i in keys if isinstance(i, slice)]
    slc = slice(0, len(self)) if not slices else slices[0]

    if (
        len(slices) == 0 and len(column_names) == 1
    ):  # e.g. tbl['a'] or tbl['a'][:10]
        col = self.columns[column_names[0]]
        if slices:
            return col[slc]  # return slice from column as list of values
        else:
            return col  # return whole column

    elif len(integers) == 1:  # return a single tuple.
        row_no = integers[0]
        slc = slice(row_no, row_no + 1)
        return tuple(self.columns[name][slc].tolist()[0] for name in column_names)

    elif not slices:  # e.g. new table with N whole columns.
        return self.__class__(
            columns={name: self.columns[name] for name in column_names}
        )

    else:  # e.g. new table from selection of columns and slices.
        t = self.__class__()
        for name in column_names:
            column = self.columns[name]

            new_column = Column(t.path)  # create new Column.
            for item in column.getpages(slc):
                if isinstance(item, np.ndarray):
                    new_column.extend(item)  # extend subslice (expensive)
                elif isinstance(item, SimplePage):
                    new_column.pages.append(item)  # extend page (cheap)
                else:
                    raise TypeError(f"Bad item: {item}")

            # below:
            # set the new column directly on t.columns.
            # Do not use t[name] as that triggers __setitem__ again.
            t.columns[name] = new_column

        return t
tablite.base.BaseTable.__len__()
Source code in tablite/base.py
1289
1290
1291
1292
def __len__(self):  # USER FUNCTION.
    if not self.columns:
        return 0
    return max(len(c) for c in self.columns.values())
tablite.base.BaseTable.__eq__(other) -> bool

Determines if two tables have identical content.

PARAMETER DESCRIPTION
other

table for comparison

TYPE: Table

RETURNS DESCRIPTION
bool

True if tables are identical.

TYPE: bool

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
def __eq__(self, other) -> bool:  # USER FUNCTION.
    """Determines if two tables have identical content.

    Args:
        other (Table): table for comparison

    Returns:
        bool: True if tables are identical.
    """
    if isinstance(other, dict):
        return self.items() == other.items()
    if not isinstance(other, BaseTable):
        return False
    if id(self) == id(other):
        return True
    if len(self) != len(other):
        return False
    if len(self) == len(other) == 0:
        return True
    if self.columns.keys() != other.columns.keys():
        return False
    for name, col in self.columns.items():
        if not (col == other.columns[name]):
            return False
    return True
tablite.base.BaseTable.clear()

clears the table. Like dict().clear()

Source code in tablite/base.py
1346
1347
1348
def clear(self):  # USER FUNCTION.
    """clears the table. Like dict().clear()"""
    self.columns.clear()
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: Path

compression_method

See zipfile compression methods. Defaults to ZIP_DEFLATED.

DEFAULT: ZIP_DEFLATED

compression_level

See zipfile compression levels. Defaults to 1.

DEFAULT: 1

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
def save(
    self, path, compression_method=zipfile.ZIP_DEFLATED, compression_level=1
):  # USER FUNCTION.
    """saves table to compressed tpz file.

    Args:
        path (Path): file destination.
        compression_method: See zipfile compression methods. Defaults to ZIP_DEFLATED.
        compression_level: See zipfile compression levels. Defaults to 1.
        The default settings produce 80% compression at 10% slowdown.

    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.
    ----------------------------------------
    ```
    """
    if isinstance(path, str):
        path = Path(path)
    type_check(path, Path)
    if path.is_dir():
        raise TypeError(f"filename needed: {path}")
    if path.suffix != ".tpz":
        path = path.parent / (path.parts[-1] + ".tpz")

    # create yaml document
    _page_counter = 0
    d = {}
    cols = {}
    for name, col in self.columns.items():
        type_check(col, Column)
        cols[name] = {"pages": [p.path.name for p in col.pages]}
        _page_counter += len(col.pages)
    d["columns"] = cols
    yml = yaml.safe_dump(
        d, sort_keys=False, allow_unicode=True, default_flow_style=None
    )

    _file_counter = 0
    with zipfile.ZipFile(
        path, "w", compression=compression_method, compresslevel=compression_level
    ) as f:
        log.debug(f"writing .tpz to {path} with\n{yml}")
        f.writestr("table.yml", yml)
        for name, col in self.columns.items():
            for page in set(
                col.pages
            ):  # set of pages! remember t *= 1000 repeats t 1000x
                with open(page.path, "rb", buffering=0) as raw_io:
                    f.writestr(page.path.name, raw_io.read())
                _file_counter += 1
                log.debug(f"adding Page {page.path}")

        _fields = len(self) * len(self.columns)
        _avg = _fields // _page_counter
        log.debug(
            f"Wrote {_fields:,} on {_page_counter:,} pages in {_file_counter} files: {_avg} fields/page"
        )
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: Path

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
@classmethod
def load(cls, path, tqdm=_tqdm):  # USER FUNCTION.
    """loads a table from .tpz file.
    See also Table.save for details on the file format.

    Args:
        path (Path): source file

    Returns:
        Table: table in read-only mode.
    """
    path = Path(path)
    log.debug(f"loading {path}")
    with zipfile.ZipFile(path, "r") as f:
        yml = f.read("table.yml")
        metadata = yaml.safe_load(yml)
        t = cls()

        page_count = sum([len(c["pages"]) for c in metadata["columns"].values()])

        with tqdm(
            total=page_count,
            desc=f"loading '{path.name}' file",
            disable=Config.TQDM_DISABLE,
        ) as pbar:
            for name, d in metadata["columns"].items():
                column = Column(t.path)
                for page in d["pages"]:
                    bytestream = io.BytesIO(f.read(page))
                    data = np.load(bytestream, allow_pickle=True, fix_imports=False)
                    column.extend(data)
                    pbar.update(1)
                t.columns[name] = column
    update_access_time(path)
    return t
tablite.base.BaseTable.copy()
Source code in tablite/base.py
1455
1456
1457
1458
1459
1460
1461
1462
def copy(self):
    cls = type(self)
    t = cls()
    for name, column in self.columns.items():
        new = Column(t.path)
        new.pages = column.pages[:]
        t.columns[name] = new
    return t
tablite.base.BaseTable.__imul__(other)

Repeats instance of table N times.

Like list: t = t * N

PARAMETER DESCRIPTION
other

multiplier

TYPE: int

Source code in tablite/base.py
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
def __imul__(self, other):
    """Repeats instance of table N times.

    Like list: `t = t * N`

    Args:
        other (int): multiplier
    """
    if not (isinstance(other, int) and other > 0):
        raise TypeError(
            f"a table can be repeated an integer number of times, not {type(other)} number of times"
        )
    for col in self.columns.values():
        col *= other
    return self
tablite.base.BaseTable.__mul__(other)

Repeat table N times. Like list: new = old * N

PARAMETER DESCRIPTION
other

multiplier

TYPE: int

RETURNS DESCRIPTION

Table

Source code in tablite/base.py
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
def __mul__(self, other):
    """Repeat table N times.
    Like list: `new = old * N`

    Args:
        other (int): multiplier

    Returns:
        Table
    """
    new = self.copy()
    return new.__imul__(other)
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
def __iadd__(self, other):
    """Concatenates tables with same column names.

    Like list: `table_1 += table_2`

    Args:
        other (Table)

    Raises:
        ValueError: If column names don't match.

    Returns:
        None: self is updated.
    """
    type_check(other, BaseTable)
    for name in self.columns.keys():
        if name not in other.columns:
            raise ValueError(f"{name} not in other")
    for name in other.columns.keys():
        if name not in self.columns:
            raise ValueError(f"{name} missing from self")

    for name, column in self.columns.items():
        other_col = other.columns.get(name, None)
        column.pages.extend(other_col.pages[:])
    return self
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
def __add__(self, other):
    """Concatenates tables with same column names.

    Like list: `table_3 = table_1 + table_2`

    Args:
        other (Table)

    Raises:
        ValueError: If column names don't match.

    Returns:
        Table
    """
    type_check(other, BaseTable)
    cp = self.copy()
    cp += other
    return cp
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
def add_rows(self, *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
    ```

    """
    if not BaseTable._add_row_slow_warning:
        warnings.warn(
            "add_rows is slow. Consider using add_columns and then assigning values to the columns directly."
        )
        BaseTable._add_row_slow_warning = True

    if args:
        if not all(isinstance(i, (list, tuple, dict)) for i in args):  # 1,4
            args = [args]

        if all(isinstance(i, (list, tuple, dict)) for i in args):  # 2,3,7,8
            # 1. turn the data into columns:

            d = {n: [] for n in self.columns}
            for arg in args:
                if len(arg) != len(self.columns):
                    raise ValueError(
                        f"len({arg})== {len(arg)}, but there are {len(self.columns)} columns"
                    )

                if isinstance(arg, dict):
                    for k, v in arg.items():  # 7,8
                        d[k].append(v)

                elif isinstance(arg, (list, tuple)):  # 2,3
                    for n, v in zip(self.columns, arg):
                        d[n].append(v)

                else:
                    raise TypeError(f"{arg}?")
            # 2. extend the columns
            for n, values in d.items():
                col = self.columns[n]
                col.extend(list_to_np_array(values))

    if kwargs:
        if isinstance(kwargs, dict):
            if all(isinstance(v, (list, tuple)) for v in kwargs.values()):
                for k, v in kwargs.items():
                    col = self.columns[k]
                    col.extend(list_to_np_array(v))
            else:
                for k, v in kwargs.items():
                    col = self.columns[k]
                    col.extend(np.array([v]))
        else:
            raise ValueError(f"format not recognised: {kwargs}")

    return
tablite.base.BaseTable.add_columns(*names)

Adds column names to table.

Source code in tablite/base.py
1618
1619
1620
1621
def add_columns(self, *names):
    """Adds column names to table."""
    for name in names:
        self.columns[name] = Column(self.path)
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: str

data

values. Defaults to None.

TYPE: list,tuple) DEFAULT: None

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
def add_column(self, name, data=None):
    """verbose alias for table[name] = data, that checks if name already exists

    Args:
        name (str): column name
        data ((list,tuple), optional): values. Defaults to None.

    Raises:
        TypeError: name isn't string
        ValueError: name already exists
    """
    if not isinstance(name, str):
        raise TypeError("expected name as string")
    if name in self.columns:
        raise ValueError(f"{name} already in {self.columns}")
    self.__setitem__(name, data)
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
def stack(self, 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|
    ```
    """
    if not isinstance(other, BaseTable):
        raise TypeError(f"stack only works for Table, not {type(other)}")

    cp = self.copy()
    for name, col2 in other.columns.items():
        if name not in cp.columns:
            cp[name] = [None] * len(self)
        cp[name].pages.extend(col2.pages[:])

    for name in self.columns:
        if name not in other.columns:
            if len(cp) > 0:
                cp[name].extend(np.array([None] * len(other)))
    return cp
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
def types(self):
    """
    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}
    }
    ```
    """
    d = {}
    for name, col in self.columns.items():
        assert isinstance(col, Column)
        d[name] = col.types()
    return d
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: slice DEFAULT: None

blanks

fill value for None. Defaults to None.

TYPE: optional DEFAULT: None

dtype

Adds datatype to each column. Defaults to False.

TYPE: bool DEFAULT: False

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
def display_dict(self, slice_=None, blanks=None, dtype=False):
    """helper for creating dict for display.

    Args:
        slice_ (slice, optional): python slice. Defaults to None.
        blanks (optional): fill value for `None`. Defaults to None.
        dtype (bool, optional): Adds datatype to each column. Defaults to False.

    Raises:
        TypeError: slice_ must be None or slice.

    Returns:
        dict: from Table.
    """
    if not self.columns:
        print("Empty Table")
        return

    def datatype(col):  # PRIVATE
        """creates label for column datatype."""
        types = col.types()
        if len(types) == 0:
            typ = "empty"
        elif len(types) == 1:
            dt, _ = types.popitem()
            typ = dt.__name__
        else:
            typ = "mixed"
        return typ

    row_count_tags = ["#", "~", "*"]
    cols = set(self.columns)
    for n, tag in product(range(1, 6), row_count_tags):
        if n * tag not in cols:
            tag = n * tag
            break

    if not isinstance(slice_, (slice, type(None))):
        raise TypeError(f"slice_ must be None or slice, not {type(slice_)}")
    if isinstance(slice_, slice):
        slc = slice_
    if slice_ is None:
        if len(self) <= 20:
            slc = slice(0, 20, 1)
        else:
            slc = None

    n = len(self)
    if slc:  # either we want slc or we want everything.
        row_no = list(range(*slc.indices(len(self))))
        data = {tag: [f"{i:,}".rjust(2) for i in row_no]}
        for name, col in self.columns.items():
            data[name] = list(chain(iter(col), repeat(blanks, times=n - len(col))))[
                slc
            ]
    else:
        data = {}
        j = int(math.ceil(math.log10(n)) / 3) + len(str(n))
        row_no = (
            [f"{i:,}".rjust(j) for i in range(7)]
            + ["..."]
            + [f"{i:,}".rjust(j) for i in range(n - 7, n)]
        )
        data = {tag: row_no}

        for name, col in self.columns.items():
            if len(col) == n:
                row = col[:7].tolist() + ["..."] + col[-7:].tolist()
            else:
                empty = [blanks] * 7
                head = (col[:7].tolist() + empty)[:7]
                tail = (col[n - 7 :].tolist() + empty)[-7:]
                row = head + ["..."] + tail
            data[name] = row

    if dtype:
        for name, values in data.items():
            if name in self.columns:
                col = self.columns[name]
                values.insert(0, datatype(col))
            else:
                values.insert(0, "row")

    return data
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: slice DEFAULT: None

blanks

value for whitespace. Defaults to None.

TYPE: str DEFAULT: None

dtype

adds subheader with datatype for column. Defaults to False.

TYPE: bool DEFAULT: False

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
def to_ascii(self, slice_=None, blanks=None, dtype=False):
    """returns ascii view of table as string.

    Args:
        slice_ (slice, optional): slice to determine table snippet.
        blanks (str, optional): value for whitespace. Defaults to None.
        dtype (bool, optional): adds subheader with datatype for column. Defaults to False.
    """

    def adjust(v, length):  # PRIVATE FUNCTION
        """whitespace justifies field values based on datatype"""
        if v is None:
            return str(blanks).ljust(length)
        elif isinstance(v, str):
            return v.ljust(length)
        else:
            return str(v).rjust(length)

    if not self.columns:
        return str(self)

    d = {}
    for name, values in self.display_dict(
        slice_=slice_, blanks=blanks, dtype=dtype
    ).items():
        as_text = [str(v) for v in values] + [str(name)]
        width = max(len(i) for i in as_text)
        new_name = name.center(width, " ")
        if dtype:
            values[0] = values[0].center(width, " ")
        d[new_name] = [adjust(v, width) for v in values]

    rows = dict_to_rows(d)
    s = []
    s.append("+" + "+".join(["=" * len(n) for n in rows[0]]) + "+")
    s.append("|" + "|".join(rows[0]) + "|")  # column names
    start = 1
    if dtype:
        s.append("|" + "|".join(rows[1]) + "|")  # datatypes
        start = 2

    s.append("+" + "+".join(["-" * len(n) for n in rows[0]]) + "+")
    for row in rows[start:]:
        s.append("|" + "|".join(row) + "|")
    s.append("+" + "+".join(["=" * len(n) for n in rows[0]]) + "+")

    if len(set(len(c) for c in self.columns.values())) != 1:
        warning = f"Warning: Columns have different lengths. {blanks} is used as fill value."
        s.append(warning)

    return "\n".join(s)
tablite.base.BaseTable.show(slice_=None, blanks=None, dtype=False)

prints ascii view of table.

PARAMETER DESCRIPTION
slice_

slice to determine table snippet.

TYPE: slice DEFAULT: None

blanks

value for whitespace. Defaults to None.

TYPE: str DEFAULT: None

dtype

adds subheader with datatype for column. Defaults to False.

TYPE: bool DEFAULT: False

Source code in tablite/base.py
1822
1823
1824
1825
1826
1827
1828
1829
1830
def show(self, slice_=None, blanks=None, dtype=False):
    """prints ascii view of table.

    Args:
        slice_ (slice, optional): slice to determine table snippet.
        blanks (str, optional): value for whitespace. Defaults to None.
        dtype (bool, optional): adds subheader with datatype for column. Defaults to False.
    """
    print(self.to_ascii(slice_=slice_, blanks=blanks, dtype=dtype))
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
def to_dict(self, 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]}
    ```

    """
    if slice_ is None:
        slice_ = slice(0, len(self))
    assert isinstance(slice_, slice)

    if columns is None:
        columns = list(self.columns.keys())
    if not isinstance(columns, list):
        raise TypeError("expected columns as list of strings")

    return {name: list(self.columns[name][slice_]) for name in columns}
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: str DEFAULT: 'row id'

start_on

row counts starts by default on 1.

TYPE: int DEFAULT: 1

columns

Column names. Defaults to None which returns all columns.

TYPE: list of str DEFAULT: None

slice_

selector. Defaults to None which returns [:]

TYPE: slice DEFAULT: None

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
def as_json_serializable(
    self, row_count="row id", start_on=1, columns=None, slice_=None
):
    """provides a JSON compatible format of the table.

    Args:
        row_count (str, optional): Label for row counts. Defaults to "row id".
        start_on (int, optional): row counts starts by default on 1.
        columns (list of str, optional): Column names.
            Defaults to None which returns all columns.
        slice_ (slice, optional): selector. Defaults to None which returns [:]

    Returns:
        JSON serializable dict: All python datatypes have been converted to JSON compliant data.
    """
    if slice_ is None:
        slice_ = slice(0, len(self))

    assert isinstance(slice_, slice)
    new = {"columns": {}, "total_rows": len(self)}
    if row_count is not None:
        new["columns"][row_count] = [
            i + start_on for i in range(*slice_.indices(len(self)))
        ]

    d = self.to_dict(columns, slice_=slice_)
    for k, data in d.items():
        new_k = unique_name(
            k, new["columns"]
        )  # used to avoid overwriting the `row id` key.
        new["columns"][new_k] = [
            DataTypes.to_json(v) for v in data
        ]  # deal with non-json datatypes.
    return new
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
def index(self, *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]})
        ```

    """
    idx = defaultdict(list)
    iterators = [iter(self.columns[c]) for c in args]
    for ix, key in enumerate(zip(*iterators)):
        key = tuple(numpy_to_python(k) for k in key)
        idx[key].append(ix)
    return idx
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: any DEFAULT: ()

tqdm

Defaults to _tqdm.

TYPE: tqdm DEFAULT: tqdm

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
def unique_index(self, *args, tqdm=_tqdm):
    """generates the index of unique rows given a list of column names

    Args:
        *args (any): columns names
        tqdm (tqdm, optional): Defaults to _tqdm.

    Returns:
        np.array(int64): indices of unique records.
    """
    if not args:
        raise ValueError("*args (column names) is required")
    seen = set()
    unique = set()
    iterators = [iter(self.columns[c]) for c in args]
    for ix, key in tqdm(enumerate(zip(*iterators)), disable=Config.TQDM_DISABLE):
        key_hash = hash(tuple(numpy_to_python(k) for k in key))
        if key_hash in seen:
            continue
        else:
            seen.add(key_hash)
            unique.add(ix)
    return np.array(sorted(unique))

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: Path

Source code in tablite/base.py
43
44
45
46
47
48
49
50
51
52
53
def 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.

    Args:
        path (Path): typically tmp/tablite-tmp/PID-{os.getpid()}
    """
    global file_registry
    file_registry.add(path)

tablite.base.shutdown()

method to clean up temporary files triggered at shutdown.

Source code in tablite/base.py
56
57
58
59
60
61
def shutdown():
    """method to clean up temporary files triggered at shutdown."""
    for path in file_registry:
        if Config.pid in str(path):  # safety feature to prevent rm -rf /
            log.debug(f"shutdown: running rmtree({path})")
            shutil.rmtree(path)