Skip to content

Instantly share code, notes, and snippets.

View niteshrawat1995's full-sized avatar
🏠
Working from home

Nitesh Rawat niteshrawat1995

🏠
Working from home
View GitHub Profile
@hmldd
hmldd / scroll.py
Last active October 6, 2023 14:59
Example of Elasticsearch scrolling using Python client
# coding:utf-8
from elasticsearch import Elasticsearch
import json
# Define config
host = "127.0.0.1"
port = 9200
timeout = 1000
index = "index"