- Data source 1: Blinkit MCP exploration with pagination.
- Data source 2: Local API
POST /api/search. - Queries used:
epigamia greek yogurt,greek yogurt,flavoured yogurt,yogurt. - Location:
lat=12.83784525,lon=77.65048250. - Session/model:
sess_epigamia_qcomm_20260508/codex-5.3.
Date: 2026-05-08
Method: Blinkit MCP exploration + localhost Blinkit API (/api/search) with pagination, strict Greek/Skyr filtering, and deduplication by group_id.
- Bangalore (BLR): uses the second/corrected run with
group_iddedup. - Delhi: uses the first run.
- Mumbai: uses the first run.
Date: 2026-05-08
Market snapshot: Blinkit Bangalore defaults (lat=12.83784525, lon=77.6504825)
Objective: Determine whether Epigamia is still category leader in q-comm, or whether another brand has closed the gap on flavor breadth and ratings velocity.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Simplified curl | |
| function kurl() { | |
| local delimiter=$'\x1E' # ASCII record separator | |
| local response=$(curl -s "$@" -w "${delimiter}%{http_code}") | |
| IFS="$delimiter" read -r body http_code <<< "$response" | |
| export HTTP_CODE="$http_code" | |
| echo $body |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # jq REPL (jq + fzf = jf) | |
| function jf() { | |
| if [ $# -eq 0 ]; then | |
| # pipe input | |
| tempfile=$(mktemp) | |
| cat > "$tempfile" | |
| echo '' | fzf --print-query --preview "jq {q} $tempfile" | |
| rm "$tempfile" | |
| else | |
| # filename arg input |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -x | |
| # Install important packages | |
| sudo apt update | |
| sudo apt install -y zsh fzf autojump tmux jq | |
| # Change the default shell to zsh | |
| # chsh -s $(which zsh) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from flask import Flask, render_template, request | |
| from flask_socketio import SocketIO, emit | |
| import json | |
| from backend import config | |
| from supertokens_python import init | |
| from flask import jsonify, g | |
| from supertokens_python.framework.flask import Middleware | |
| from supertokens_python.recipe.session.syncio import get_session, get_session_without_request_response |