Skip to content

turicas/rows

Folders and files

NameName
Last commit message
Last commit date

Latest commit

50c734c · Mar 8, 2025
Mar 8, 2025
Mar 8, 2025
Mar 8, 2025
Mar 8, 2025
Feb 9, 2019
Aug 3, 2018
Feb 13, 2019
Jun 23, 2018
Jul 8, 2020
Oct 11, 2017
Feb 3, 2022
Oct 28, 2019
May 13, 2024
May 12, 2020
Apr 4, 2020
Sep 2, 2015
Feb 9, 2019
Feb 18, 2023
Jun 6, 2017

Repository files navigation

rows

Join the chat at https://gitter.im/turicas/rows Current version at PyPI Downloads per month on PyPI Supported Python Versions Software status License: LGPLv3

No matter in which format your tabular data is: rows will import it, automatically detect types and give you high-level Python objects so you can start working with the data instead of trying to parse it. It is also locale-and-unicode aware. :)

Want to learn more? Read the documentation (or build and browse the docs locally by running make docs-serve after installing requirements-development.txt).

Installation

The easiest way to getting the hands dirty is install rows, using pip.

pip install rows

For another ways to instal refer to the Installation section documentation.

Contribution start guide

The preferred way to start contributing for the project is creating a virtualenv (you can do by using virtualenv, virtualenvwrapper, pyenv or whatever tool you'd like).

Create the virtualenv:

mkvirtualenv rows

Install all plugins' dependencies:

pip install --editable .[all]

Install development dependencies:

pip install -r requirements-development.txt