India Data Center Review 2026 — India's most comprehensive infrastructure analysis to support the A.I. era. 250+ pages, 14 chapters, 100+ illustrations, free to download.
Read NowIndia Data Center Review 2026 — India's most comprehensive infrastructure analysis to support the A.I. era. 250+ pages, 14 chapters, 100+ illustrations, free to download.
Read NowApache 2.0 · On PyPI
Open Python library for engineers building IES-shaped systems. Apache 2.0. On PyPI.
ies-ingest is the orchestration and contract layer we wrote for ourselves while building energymap.in on top of the India Energy Stack. We donated it under Apache 2.0 because the next DISCOM, startup, or regulator implementing IES will want the same plumbing — and should not have to write it twice.
Three copy-runnable steps from empty terminal to a record written back into your stack.
pip install ies-ingestfrom ies_ingest import Client
client = Client(api_key="your_key")
record = client.read("urn:in:meter:DL-PRPL-001:0042")
print(record.sanctioned_load_kw, record.discom)client.write("your_db_handle", record)Apache 2.0 — read or fork ies-ingest on GitHub.