Skip to main content

Simple interface for tabulated data and .csv files

Project description

https://travis-ci.org/axevalley/tabler.svg?branch=master

Simple interaction with tabulated data

What is tabler?

The tabler package provides the Table class which makes the creation and maniplulation of tabulated data intuitive.

It can:
  • Open various spreadsheet files from a relative path, absolute path or url.

  • Update text in cells.

  • Write files in various formats.

Compatible formats:
  • .csv

  • Open Spreadsheet Format .ods

  • Microsoft Excel .xlsx

  • HTML (Write only)

  • Other filetypes can be added by subclassing the BaseTableType class.

Quick Start

Creating a Table (Basic)

Import the Tabler class from the tabler package and instanciate it with a header and data:

from tabler import Table

table = Tabler(
    header=['SKU', 'Item Title', 'Price'],
    data=[[009, 'Item 1', 5.00], [010, 'Item 2', 9.99]])

Or pass the path to a file to open:

from tabler import Table

Table('path/to/some/file.csv')
This will recognise filetypes with the following extensions:
  • .csv (UTF-8 encoded and comma delimited).

  • .txt (UTF-8 encoded and comma delimited).

  • .xlsx

  • .ods

To explicitly open a file of a specifict type a Table Type object must be provided.:

from tabler import Table
from tabler.tabletypes import CSV

Table('path/to/some/file.csv', table_type=CSV(delimiter='\t'))

These are subclasses of BaseTableType and allow the method of reading the file to be customised.

Reading a Table (Basic)

At its base, Tabler is a two dimensional list. Therefore the simplest way to access a cell is by providing two indexes:

first_cell = table[0][0]

Rows can be indexed by row number (zero based) Tabler will always treat the first line of any supplied data as column headers. This means that a column can be specified by index number or title:

first_item_title = table[0]["Item Title"]

Editing a Table (Basic)

A cell can be edited using the equals = operator:

table[2]["Item Title"] = 'USB Hub'

Cell content can be string, int or float.

Loading Data into a Table (Basic)

Data can be loaded into an empty Tabler object by passing a list of rows in the form of lists of cell data using the Tabler().load_from_array(data, header) method. A list of column headers must be passed as the second argument:

header = ["SKU", "Item Title", "Price"]

data = [
    ["001", "USB Hub", 7.00],
    ["002", "Raspberry Pi 3", 29.99],
    ["003", Arduino Uno", 20.00]
]

table = Tabler()
table.load_from_array(data, header)

Writing a Table to a File (Basic)

Writing a file is similar to reading a file. Table Types are used in the same way to manage writing files:

table.write('path/to/save.csv', table_type=CSV(delimiter='\t')

The table type will be set automatically for reconised file extensions if not explicitly set.

Contact

All comments and queries can be sent to Luke Shiner at luke@lukeshiner.com

License

Distributed with MIT License.

Credits

Created by Luke Shiner (luke@lukeshiner.com)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tabler-2.1.2.tar.gz (23.9 kB view details)

Uploaded Source

Built Distribution

tabler-2.1.2-py3-none-any.whl (27.1 kB view details)

Uploaded Python 3

File details

Details for the file tabler-2.1.2.tar.gz.

File metadata

  • Download URL: tabler-2.1.2.tar.gz
  • Upload date:
  • Size: 23.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for tabler-2.1.2.tar.gz
Algorithm Hash digest
SHA256 0d40dcd73740ce057b9d0b168e14e5a76ac3c3731f645787cb87c65b36e7db0f
MD5 5578aac0f9418251c502e8ec6487f348
BLAKE2b-256 45a910fdf026192a5b1496cc9776b612b66ebe3e5de7d0e05da6ba18d9cd5064

See more details on using hashes here.

File details

Details for the file tabler-2.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for tabler-2.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 53f638f84fe7840834cdc3c4319ff340bac09115bb8dbd9063676ca8be259096
MD5 2b12ac95fd5c993a90308424779e22ec
BLAKE2b-256 e5c991d498705b360075d78e52b8ea46342d77af5340f023b721135fd570cda9

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page