Skip to content

Instantly share code, notes, and snippets.

View aplz's full-sized avatar
🍄

Anja Pilz aplz

🍄
View GitHub Profile
@aplz
aplz / scroll.py
Created October 16, 2019 09:16 — forked from hmldd/scroll.py
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"