일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 태국
- 三井住友カード
- 아타미
- CSV
- 프라하
- vba
- documentdb
- Selenium
- 釜つる
- react.js
- 체코
- Python
- local
- 페이페이
- 메르페이
- javascript
- 뮌헨
- 카마츠루
- typescript
- 熱海
- codebuild
- 미츠이 스미토모
- duckdb
- PayPay
- pyenv
- PostgreSQL
- 방콕
- node.js
- terraform
- JenkinsFile
- Today
- Total
목록Tech/Azure (2)
도쿄사는 외노자
개요DynamoDB에서 30일 이상 경과한 데이터를 검색, 해당 데이터의 documentId를 통해 Azure AI Search Index에서 해당 데이터를 검색 및 삭제하는 스크립트상세준비poetry를 사용하여 환경 구축poetry initpoetry add boto3 requestspoetry installpoetry shell코드 본문연결 정보import boto3import requestsimport jsonfrom boto3.dynamodb.conditions import Keyfrom datetime import datetime, timedelta# Devservice_name = "search-ai-dev"index_name = "index-document"api_version = "2024..
개요Azure AI Search의 인덱스에 들어 있는 모든 데이터를 JSON으로 취득상세 내용REST API 버전(Azure AI Search)파이썬 스크립트import requestsimport json# Azure Search 설정service_name = ""api_key = ""index_name = ""api_version = "2024-05-01-Preview" # Azure Search 콘솔에서 검색할 때 쓰는 api version 을 지정file_name = "output.json"# Search API URLapi_url = f"https://{service_name}.search.windows.net/indexes/{index_name}/docs/search?api-version={ap..