Metadata-Version: 2.4
Name: tabledata
Version: 1.3.4
Summary: tabledata is a Python library to represent tabular data. Used for pytablewriter/pytablereader/SimpleSQLite/etc.
Home-page: https://github.com/thombashi/tabledata
Author: Tsuyoshi Hombashi
Author-email: tsuyoshi.hombashi@gmail.com
License: MIT License
Project-URL: Changelog, https://github.com/thombashi/tabledata/releases
Project-URL: Documentation, https://tabledata.rtfd.io/
Project-URL: Source, https://github.com/thombashi/tabledata
Project-URL: Tracker, https://github.com/thombashi/tabledata/issues
Keywords: table
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Python: >=3.9
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: DataProperty<2,>=1.0.1
Requires-Dist: typepy<2,>=1.2.0
Provides-Extra: logging
Requires-Dist: loguru<1,>=0.4.1; extra == "logging"
Provides-Extra: test
Requires-Dist: pytablewriter>=0.46; extra == "test"
Requires-Dist: pytest; extra == "test"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: project-url
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

.. contents:: **tabledata**
   :backlinks: top
   :depth: 2

Summary
---------
`tabledata <https://github.com/thombashi/tabledata>`__ is a Python library to represent tabular data. Used for pytablewriter/pytablereader/SimpleSQLite/etc.

.. image:: https://badge.fury.io/py/tabledata.svg
    :target: https://badge.fury.io/py/tabledata
    :alt: PyPI package version

.. image:: https://img.shields.io/pypi/pyversions/tabledata.svg
    :target: https://pypi.org/project/tabledata
    :alt: Supported Python versions

.. image:: https://img.shields.io/pypi/implementation/tabledata.svg
    :target: https://pypi.org/project/tabledata
    :alt: Supported Python implementations

.. image:: https://github.com/thombashi/tabledata/actions/workflows/ci.yml/badge.svg
    :target: https://github.com/thombashi/tabledata/actions/workflows/ci.yml
    :alt: Linux/macOS/Windows CI status

.. image:: https://coveralls.io/repos/github/thombashi/tabledata/badge.svg?branch=master
    :target: https://coveralls.io/github/thombashi/tabledata?branch=master
    :alt: Test coverage

Installation
============

Install from PyPI
------------------------------
::

    pip install tabledata

Install from PPA (for Ubuntu)
------------------------------
::

    sudo add-apt-repository ppa:thombashi/ppa
    sudo apt update
    sudo apt install python3-tabledata


Dependencies
============
- Python 3.9+
- `Mandatory Python package dependencies (automatically installed) <https://github.com/thombashi/tabledata/network/dependencies>`__

Optional Python packages
------------------------------------------------
- `loguru <https://github.com/Delgan/loguru>`__
    - Used for logging if the package installed
- `pandas <https://pandas.pydata.org/>`__
    - required to get table data as a pandas data frame

Documentation
===============
https://tabledata.rtfd.io/

