Skip to content

Tools

tablite.tools

Attributes

tablite.tools.guess = DataTypes.guess module-attribute

tablite.tools.xround = DataTypes.round module-attribute

Classes

Functions

tablite.tools.head(path, linecount=5, delimiter=None)

Gets the head of any supported file format.

Source code in tablite/tools.py
32
33
34
35
36
def head(path, linecount=5, delimiter=None):
    """
    Gets the head of any supported file format.
    """
    return get_headers(path, linecount=linecount, delimiter=delimiter)