Metadata-Version: 2.1
Name: sqlite-transform
Version: 0.1
Summary: Tool for running transformations on columns in a SQLite database.
Home-page: https://github.com/simonw/sqlite-transform
Author: Simon Willison
License: Apache License, Version 2.0
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: dateutils
Requires-Dist: tqdm
Requires-Dist: click
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: sqlite-utils ; extra == 'test'

# sqlite-transform

[![PyPI](https://img.shields.io/pypi/v/sqlite-transform.svg)](https://pypi.org/project/sqlite-transform/)
[![CircleCI](https://circleci.com/gh/dogsheep/sqlite-transform.svg?style=svg)](https://circleci.com/gh/dogsheep/sqlite-transform)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/dogsheep/sqlite-transform/blob/master/LICENSE)

Tool for running transformations on columns in a SQLite database.

## How to install

    $ pip install sqlite-transform

## How to use

    $ sqlite-transform parsedatetime my.db mytable column1 column2

There are only one subcommand at the moment: `parsedatetime`.

These will run all values in the specified column through `dateutils.parser.parse()` and replace them with the result, formatted as an ISO timestamp.


