Skip to content

Instantly share code, notes, and snippets.

@bhoitea
bhoitea / AzureAISearchtoYugabyteDBsync.py
Created March 18, 2025 06:22
Syncing Data from Azure AI Search to YugabyteDB
import requests
import psycopg2
import re
# 🔹 Azure AI Search Configuration
AZURE_SEARCH_ENDPOINT = "https://your-endpoint.search.windows.net"
AZURE_SEARCH_INDEX = "insurance-claims-index-v2"
AZURE_SEARCH_API_KEY = "your-search-key"
# 🔹 YugabyteDB Connection Configuration