airtable-pg-sync


Nameairtable-pg-sync JSON
Version 0.0.36 PyPI version JSON
download
home_page
SummarySync Airtable bases to a Postgres schemas in real time
upload_time2024-01-12 11:27:10
maintainer
docs_urlNone
author
requires_python>=3.9
licenseCopyright 2023 Benjamin Urwin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Join Us
keywords airtable postgres sync realtime webhook
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Airtable Postgres Sync

The goal of this library is to provide an out-of-the-box solution for replicating
an entire Airtable base in a Postgres schema. There are two modes of operation:

- **One-off-sync**: This mode will replicate the Airtable base in the specified Postgres schema
  and then exit. This is useful for creating snapshots of the base for analysis or for storage as a backup.
- **Perpetual sync**: This mode will replicate the Airtable base in the specified Postgres schema
  and then continue to watch for changes in the base. When a change is detected, the
  change will be applied to the Postgres schema. This is useful for creating a
  replica of the base that can be used for analysis in real time.


This library will produce a Postgres table and view for each of the tables in the specified Airtable base.
The table will take the Airtable table id for its name and the field ids for its column names. The view will have the 
same name as the Airtable table and the column names will be the same as the Airtable column names.
For most analysis use cases it makes sense to use the view as it is more readable, but for applications requiring 
robustness with respect to column name changes the table should be used.


## Installation

To install the library, run the following command:

```bash
pip install airtable-postgres-sync
```

## Permissions

To use this library, you will need to create a personal access token in Airtable. This
token will need to have the following scopes:

- data.records:read
- schema.bases:read
- webhook:manage

You will also need to give the Postgres user that you are using read and write access to the schema
you are syncing to.

## Usage

To use the library, you will need to create a config file. The config file defines
all the parameters that are needed to connect to Airtable and Postgres, as well as how
your program will listen for changes. The file must be in YAML format and must contain
the following fields:

```yaml
AIRTABLE_PG_SYNC:
  DB_INFO:
    HOST: # Postgres host
    PORT: # Postgres port
    USER: # Postgres user
    PASSWORD: # Postgres password
    DB_NAME: # Postgres database name
    SCHEMA_NAME: # Postgres schema name
  AIRTABLE_INFO:
    BASE_ID: # Airtable base id to sync
    PAT: # Airtable personal access token
  LISTENER_INFO:
    WEBHOOK_URL: # The url that Airtable will send change notifications to
    PORT: # The port to listen for change notifications on
```

The library can be used in two ways:

1. As a command line tool

To trigger a one-time sync, run the following command:

```bash
airtable-pg-sync one-time-sync --config /path/to/config.yml
```

To trigger a perpetual sync, run the following command:

```bash
airtable-pg-sync perpetual-sync --config /path/to/config.yml
```

2. As a python library

To trigger a sync from within a python program, run the following code:

```python
from airtable_pg_sync import Sync

Sync(config_path="/path/to/config.yml", perpetual=True / False).run()
```


## Testing and Deployment

When testing this library for your use case the [ngrok](https://ngrok.com/) service is very useful. It allows you to listen 
for requests sent over the internet to your PC (ie the webhook POST requests).

For deployment it is recommended that you run the library in an AWS EC2 type service. A t2.micro instance should suffice.

## Bugs, Feature Requests, and Contributions

If you find a bug or have a feature request, please open an issue
on [GitHub](https://github.com/benurwin/airtable_pg_sync/issues).
Any contributions are welcome and appreciated. If you would like to
contribute, please open a pull request on [GitHub](https://github.com/benurwin/airtable_pg_sync/pulls).

### Ideas for contributions:

- Add support for other databases
- Add support for Postgres -> Airtable sync

## License

This library is licensed under the MIT License. See the
[LICENSE](https://github.com/benurwin/airtable_pg_sync/blob/main/LICENSE) file

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "airtable-pg-sync",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "",
    "keywords": "airtable,postgres,sync,realtime,webhook",
    "author": "",
    "author_email": "Benjamin Urwin <benurwin@outlook.com>",
    "download_url": "https://files.pythonhosted.org/packages/00/03/9ab32ba41399390151d725fa5c29ede9e085fa4e163af86d116172cceabb/airtable_pg_sync-0.0.36.tar.gz",
    "platform": null,
    "description": "# Airtable Postgres Sync\n\nThe goal of this library is to provide an out-of-the-box solution for replicating\nan entire Airtable base in a Postgres schema. There are two modes of operation:\n\n- **One-off-sync**: This mode will replicate the Airtable base in the specified Postgres schema\n  and then exit. This is useful for creating snapshots of the base for analysis or for storage as a backup.\n- **Perpetual sync**: This mode will replicate the Airtable base in the specified Postgres schema\n  and then continue to watch for changes in the base. When a change is detected, the\n  change will be applied to the Postgres schema. This is useful for creating a\n  replica of the base that can be used for analysis in real time.\n\n\nThis library will produce a Postgres table and view for each of the tables in the specified Airtable base.\nThe table will take the Airtable table id for its name and the field ids for its column names. The view will have the \nsame name as the Airtable table and the column names will be the same as the Airtable column names.\nFor most analysis use cases it makes sense to use the view as it is more readable, but for applications requiring \nrobustness with respect to column name changes the table should be used.\n\n\n## Installation\n\nTo install the library, run the following command:\n\n```bash\npip install airtable-postgres-sync\n```\n\n## Permissions\n\nTo use this library, you will need to create a personal access token in Airtable. This\ntoken will need to have the following scopes:\n\n- data.records:read\n- schema.bases:read\n- webhook:manage\n\nYou will also need to give the Postgres user that you are using read and write access to the schema\nyou are syncing to.\n\n## Usage\n\nTo use the library, you will need to create a config file. The config file defines\nall the parameters that are needed to connect to Airtable and Postgres, as well as how\nyour program will listen for changes. The file must be in YAML format and must contain\nthe following fields:\n\n```yaml\nAIRTABLE_PG_SYNC:\n  DB_INFO:\n    HOST: # Postgres host\n    PORT: # Postgres port\n    USER: # Postgres user\n    PASSWORD: # Postgres password\n    DB_NAME: # Postgres database name\n    SCHEMA_NAME: # Postgres schema name\n  AIRTABLE_INFO:\n    BASE_ID: # Airtable base id to sync\n    PAT: # Airtable personal access token\n  LISTENER_INFO:\n    WEBHOOK_URL: # The url that Airtable will send change notifications to\n    PORT: # The port to listen for change notifications on\n```\n\nThe library can be used in two ways:\n\n1. As a command line tool\n\nTo trigger a one-time sync, run the following command:\n\n```bash\nairtable-pg-sync one-time-sync --config /path/to/config.yml\n```\n\nTo trigger a perpetual sync, run the following command:\n\n```bash\nairtable-pg-sync perpetual-sync --config /path/to/config.yml\n```\n\n2. As a python library\n\nTo trigger a sync from within a python program, run the following code:\n\n```python\nfrom airtable_pg_sync import Sync\n\nSync(config_path=\"/path/to/config.yml\", perpetual=True / False).run()\n```\n\n\n## Testing and Deployment\n\nWhen testing this library for your use case the [ngrok](https://ngrok.com/) service is very useful. It allows you to listen \nfor requests sent over the internet to your PC (ie the webhook POST requests).\n\nFor deployment it is recommended that you run the library in an AWS EC2 type service. A t2.micro instance should suffice.\n\n## Bugs, Feature Requests, and Contributions\n\nIf you find a bug or have a feature request, please open an issue\non [GitHub](https://github.com/benurwin/airtable_pg_sync/issues).\nAny contributions are welcome and appreciated. If you would like to\ncontribute, please open a pull request on [GitHub](https://github.com/benurwin/airtable_pg_sync/pulls).\n\n### Ideas for contributions:\n\n- Add support for other databases\n- Add support for Postgres -> Airtable sync\n\n## License\n\nThis library is licensed under the MIT License. See the\n[LICENSE](https://github.com/benurwin/airtable_pg_sync/blob/main/LICENSE) file\n",
    "bugtrack_url": null,
    "license": "Copyright 2023 Benjamin Urwin  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \u201cSoftware\u201d), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \u201cAS IS\u201d, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  Join Us ",
    "summary": "Sync Airtable bases to a Postgres schemas in real time",
    "version": "0.0.36",
    "project_urls": {
        "Homepage": "https://github.com/benurwin/airtable_pg_sync"
    },
    "split_keywords": [
        "airtable",
        "postgres",
        "sync",
        "realtime",
        "webhook"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "699a6d34ee44fd1d1857223507f6e050d10b87dede5a0c1bedcd081d6c210236",
                "md5": "c339d6c6a89e649784eaa460c5493851",
                "sha256": "90de3b61bea12b73e7b7717570da14ebe819f38c5c384bae3811d8814529a9b1"
            },
            "downloads": -1,
            "filename": "airtable_pg_sync-0.0.36-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c339d6c6a89e649784eaa460c5493851",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 34169,
            "upload_time": "2024-01-12T11:26:59",
            "upload_time_iso_8601": "2024-01-12T11:26:59.087465Z",
            "url": "https://files.pythonhosted.org/packages/69/9a/6d34ee44fd1d1857223507f6e050d10b87dede5a0c1bedcd081d6c210236/airtable_pg_sync-0.0.36-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00039ab32ba41399390151d725fa5c29ede9e085fa4e163af86d116172cceabb",
                "md5": "5d71d55ea1cb5066bd591e68018ae17b",
                "sha256": "d0bd9f8646a7232455ce352b0e373426ef5ca2525f01f79690e2d29346329d38"
            },
            "downloads": -1,
            "filename": "airtable_pg_sync-0.0.36.tar.gz",
            "has_sig": false,
            "md5_digest": "5d71d55ea1cb5066bd591e68018ae17b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 27901,
            "upload_time": "2024-01-12T11:27:10",
            "upload_time_iso_8601": "2024-01-12T11:27:10.859423Z",
            "url": "https://files.pythonhosted.org/packages/00/03/9ab32ba41399390151d725fa5c29ede9e085fa4e163af86d116172cceabb/airtable_pg_sync-0.0.36.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-12 11:27:10",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "benurwin",
    "github_project": "airtable_pg_sync",
    "github_not_found": true,
    "lcname": "airtable-pg-sync"
}
        
Elapsed time: 0.16177s