Metadata-Version: 2.1
Name: sqlite-diffable
Version: 0.1
Summary: Tools for dumping/loading a SQLite database to diffable directory structure
Home-page: https://github.com/simonw/sqlite-diffable
Author: Simon Willison
License: Apache License, Version 2.0
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: End Users/Desktop
Classifier: Topic :: Database
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: click
Requires-Dist: sqlite-utils
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: black ; extra == 'test'

# sqlite-diffable

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

Tools for dumping/loading a SQLite database to diffable directory structure

Usage:

    $ sqlite-diffable dump fixtures.db out/ facetable

This dumps the table called "facetable" from fixtures.db into the out/ directory.

