Skip to main content

Verifying telegram user token.

Project description

NocoDB Updater Library

A Python library for synchronizing data with NocoDB.

Features

  • Synchronize data from external sources to NocoDB tables
  • Support for custom data mapping
  • Automatic handling of record creation and updates
  • Link records between tables based on relationships in external data
  • Support for both v1 and v2 NocoDB API versions

Installation

pip install shops-nocodb-updater

For development:

pip install -e .

Usage

Basic Usage

import asyncio
from shops_nocodb_updater import NocodbClient, synchronize_records

async def main():
    # Initialize the client
    client = NocodbClient(
        nocodb_host="https://your-nocodb-instance.com",
        api_key="your-api-key",
        project_id="your-project-id",
        api_version="v1"  # or "v2" for newer NocoDB instances
    )
    
    # Sync data to a table
    data = [
        {"id": "1", "name": "Item 1", "price": 10.99},
        {"id": "2", "name": "Item 2", "price": 20.99}
    ]
    
    # Sync the data
    id_map = await synchronize_records(
        client, 
        "your-table-id", 
        data, 
        external_id_field="external_id"
    )
    
    print(f"Synchronized {len(id_map)} records")

if __name__ == "__main__":
    asyncio.run(main())

Using Models

import asyncio
from pydantic import BaseModel
from typing import Optional
from shops_nocodb_updater import NocodbClient

# Define your models
class Product(BaseModel):
    __tableid__ = "your-product-table-id"
    __external_id_field__ = "external_id"
    
    id: str
    name: str
    price: float
    description: Optional[str] = None
    
    @staticmethod
    def __mapper__(data: dict) -> dict:
        """Map product data to NocoDB format"""
        return {
            "name": data.get("name", ""),
            "price": data.get("price", 0),
            "description": data.get("description", "")
        }

async def main():
    # Initialize the client
    client = NocodbClient(
        nocodb_host="https://your-nocodb-instance.com",
        api_key="your-api-key",
        project_id="your-project-id"
    )
    
    # Your data
    products_data = [
        {"id": "1", "name": "Product 1", "price": 10.99},
        {"id": "2", "name": "Product 2", "price": 20.99}
    ]
    
    # Sync products
    product_id_map = await client.sync_records(Product, products_data)
    
    print(f"Synchronized {len(product_id_map)} products")

if __name__ == "__main__":
    asyncio.run(main())

Linking Records

import asyncio
from pydantic import BaseModel
from typing import Optional
from shops_nocodb_updater import NocodbClient

# Define your models
class Category(BaseModel):
    __tableid__ = "your-category-table-id"
    __external_id_field__ = "external_id"
    
    id: str
    name: str

class Product(BaseModel):
    __tableid__ = "your-product-table-id"
    __external_id_field__ = "external_id"
    
    id: str
    name: str
    category_id: str

async def main():
    # Initialize the client
    client = NocodbClient(
        nocodb_host="https://your-nocodb-instance.com",
        api_key="your-api-key",
        project_id="your-project-id"
    )
    
    # Your data
    categories_data = [
        {"id": "cat1", "name": "Category 1"},
        {"id": "cat2", "name": "Category 2"}
    ]
    
    products_data = [
        {"id": "prod1", "name": "Product 1", "category_id": "cat1"},
        {"id": "prod2", "name": "Product 2", "category_id": "cat2"}
    ]
    
    # Sync categories and products
    category_id_map = await client.sync_records(Category, categories_data)
    product_id_map = await client.sync_records(Product, products_data)
    
    # Link products to categories
    await client.link_synced_records(
        model=Product,
        link_column="Category",  # The column name in NocoDB that links to categories
        target_model=Category,
        external_data=products_data,
        source_id_map=product_id_map,
        target_id_map=category_id_map,
        link_field="category_id"  # The field in products_data that contains the category ID
    )
    
    print("Sync and linking completed")

if __name__ == "__main__":
    asyncio.run(main())

API Version Support

This library supports both v1 and v2 of the NocoDB API:

  • v1 API: Used in older NocoDB instances (default)
  • v2 API: Used in newer NocoDB instances

You can specify the API version when initializing the client:

client = NocodbClient(
    nocodb_host="https://your-nocodb-instance.com",
    api_key="your-api-key",
    project_id="your-project-id",
    api_version="v2"  # Use "v1" for older instances
)

Examples

See the examples directory for more detailed examples:

  • examples/all_in_one_sync.py: Complete example of syncing categories and products and linking them together
  • examples/real_sync/data/: Contains sample JSON data for testing

License

MIT

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

shops_nocodb_updater-2.3.1.dev34087.tar.gz (23.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

shops_nocodb_updater-2.3.1.dev34087-py2.py3-none-any.whl (26.1 kB view details)

Uploaded Python 2Python 3

File details

Details for the file shops_nocodb_updater-2.3.1.dev34087.tar.gz.

File metadata

  • Download URL: shops_nocodb_updater-2.3.1.dev34087.tar.gz
  • Upload date:
  • Size: 23.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.2 CPython/3.12.12 Linux/5.4.0-146-generic

File hashes

Hashes for shops_nocodb_updater-2.3.1.dev34087.tar.gz
Algorithm Hash digest
SHA256 d7487efa57a25b3a52439393344623868ae2fbae9b7ebb04640fb1cef2267037
MD5 8ea733a974c9b507fee83353958f3b8c
BLAKE2b-256 8b88b3d9be958870f33ad2ceb62f1809b8ac68581c7c6eba71e03689ecaa5a5b

See more details on using hashes here.

File details

Details for the file shops_nocodb_updater-2.3.1.dev34087-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for shops_nocodb_updater-2.3.1.dev34087-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 6e65ace0e74267471a09a4d7311a6668223775d2d8680b65e3518b243db3cc97
MD5 624a4d71c2624accc242c8b28e66ab1a
BLAKE2b-256 8d4db4671bdb61d9fbcdb66c28c747c48b0a3a1a8621572de2dd9cf8012abfeb

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page