Skip to main content

High-performance Indian Pincode library with offline-first lookup, validation, and geospatial search

Project description

Indian Pincode

The Ultimate High-Performance, Offline-First Indian Pincode Library.

License: MIT Python Node.js

🚀 Why This is Better Than an API

Most developers rely on external APIs for pincode lookups. This is often slow, unreliable, and subject to rate limits. Indian Pincode solves this by embedding the entire dataset directly into your application with highly optimized indexing.

Feature External API Indian Pincode Library
Latency 200ms - 1000ms (Network dependent) < 1ms (In-memory/Local DB)
Reliability Can go down, rate limits 100% Uptime (It's in your code)
Privacy Sends user location/query to 3rd party Zero Data Leakage (All local)
Cost Often paid or freemium Free & Open Source
Offline No Yes

📦 Libraries

We provide native, zero-dependency (where possible) libraries for the most popular backend languages.

🐍 Python

Package: indian-pincode

  • Backend: SQLite (Embedded, Fast, Robust)
  • Installation: pip install src/python/ (Coming to PyPI as indian-pincode)
import indian_pincode as pincode

# 1. Validate a Pincode
print(pincode.validate("110001")) 
# Output: True

# 2. Get Details (State, District, Office)
details = pincode.lookup("110001")
print(details[0]['office_name']) 
# Output: "Connaught Place SO"
print(details[0]['district'])    
# Output: "NEW DELHI"
print(details[0]['state_name'])  
# Output: "DELHI"

# 3. Geospatial Search (Find nearby post offices)
# Find offices within 5km of Connaught Place (28.63, 77.21)
nearby = pincode.find_nearby(28.63, 77.21, radius_km=5)
print(nearby[0]['pincode']) 
# Output: "110001"

🟢 Node.js

Package: indian-pincode

  • Backend: Pure JavaScript with Optimized JSON Chunks (Lazy Loaded)
  • Installation: npm install ./src/node (Coming to NPM as @devzoy/indian-pincode)
const pincode = require('indian-pincode');

// 1. Validate
console.log(pincode.validate("560095")); 
// Output: true

// 2. Lookup
pincode.lookup("560095").then(details => {
    console.log(details[0].office);   
    // Output: "Koramangala VI Bk SO"
    console.log(details[0].district); 
    // Output: "BANGALORE"
});

// 3. Find Nearby
pincode.findNearby(12.93, 77.62).then(res => {
    console.log(res[0].pincode); 
    // Output: "560095"
});

🔍 Accuracy & Confidence

We source our data directly from processed official India Post records. Here are some examples of what you get:

Query: 110001 Result:

  • District: NEW DELHI
  • State: DELHI
  • Offices: Connaught Place SO, Parliament House SO, etc.

Query: 500081 Result:

  • District: HYDERABAD
  • State: TELANGANA
  • Offices: Madhapur SO, Cyberabad SO

Query: 700001 Result:

  • District: KOLKATA
  • State: WEST BENGAL
  • Offices: Kolkata GPO, Lalbazar SO

🛠 Contributing

We welcome contributions! Whether it's fixing a bug, adding a feature, or updating the data.

  1. Fork the repository.
  2. Clone your fork: git clone https://github.com/YOUR_USERNAME/indian-pincode.git
  3. Create a Branch: git checkout -b feature/amazing-feature
  4. Commit your changes: git commit -m "Add amazing feature"
  5. Push to the branch: git push origin feature/amazing-feature
  6. Open a Pull Request: Go to the original repository and click "New Pull Request".

Data Updates

If you find missing or incorrect pincode data, please open an Issue with the details, or submit a PR updating the raw data processing scripts.

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

📊 Data Source

Data is processed from open government datasets provided by India Post (Department of Posts, Ministry of Communications, Government of India).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

indian_pincode-1.0.2.tar.gz (15.6 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

indian_pincode-1.0.2-py3-none-any.whl (9.8 MB view details)

Uploaded Python 3

File details

Details for the file indian_pincode-1.0.2.tar.gz.

File metadata

  • Download URL: indian_pincode-1.0.2.tar.gz
  • Upload date:
  • Size: 15.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for indian_pincode-1.0.2.tar.gz
Algorithm Hash digest
SHA256 361071daa8e6dd62a3e9c184dc9da13ebbb3908ceb634fe27e7d41dbb6785386
MD5 25c75c4a5c2b62d7a6ab41f6f26f43ca
BLAKE2b-256 3214b9134c160e6db91e7f4ada06903f5753bb9da37b81f0b0f0f3da4d7da3c0

See more details on using hashes here.

File details

Details for the file indian_pincode-1.0.2-py3-none-any.whl.

File metadata

  • Download URL: indian_pincode-1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 9.8 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for indian_pincode-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 6cf7bd71d99129029e39fe43ac960bb8fc77c4cbc9da67c985e7dd3c8a54aeed
MD5 31f4e75268b211dc04c628c4d84dc5b8
BLAKE2b-256 fff70bc0d678ada8615f44e51837e0e2d3952486d2c00fbf50f53ca00434c268

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page