Metadata-Version: 2.4
Name: airtable-db-export
Version: 0.2.1
Summary: Download data from Airtable to a SQL database.
Author-email: Steve Ivy <steveivy@gmail.com>
License-File: LICENSE.md
Requires-Python: >=3.12
Requires-Dist: click>=8.1.8
Requires-Dist: duckdb>=1.3.0
Requires-Dist: pandas>=2.2.3
Requires-Dist: pyairtable>=3.1.1
Requires-Dist: pytest>=8.4.1
Requires-Dist: python-dotenv>=1.1.0
Requires-Dist: pyyaml>=6.0.2
Requires-Dist: toml>=0.10.2
Description-Content-Type: text/markdown

# Airtable DB Export (ADBE)

Export Airtable tables to a SQL database.

## Background

## Install



## Usage



```
Usage: adbe [OPTIONS] COMMAND [ARGS]...

  Main entry point for the CLI.

Options:
  -c, --config TEXT
  --base-dir TEXT
  --schemas-file TEXT
  --data-dir TEXT
  --sql-dir TEXT
  --db-file TEXT
  --help               Show this message and exit.

Commands:
  all
  create-db            Generate database definitions
  create-sql           Generate database definitions
  download-json
  generate-schema-map
  load-db
```

## Similar  projects

- Simon WIllison's [Airtable Export](https://github.com/simonw/airtable-export), but only exports to SQLite, with little support for customizing the database structure.