Metadata-Version: 2.4
Name: indiapost-geocode
Version: 1.0.0
Summary: DIGIPIN encoder/decoder for India Post geocoding
Author-email: Divyansh Pandey <your.email@example.com>
License: MIT
Project-URL: Homepage, https://github.com/divyanshpandey/digipin
Project-URL: Repository, https://github.com/divyanshpandey/digipin
Keywords: digipin,geocoding,india-post,geolocation
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# indiapost-geocode

DIGIPIN encoder/decoder for India Post geocoding system.

## Installation
```bash
pip install indiapost-geocode
```

## Usage
```python
from indiapost_geocode import get_digipin, get_lat_lng_from_digipin

# Encode coordinates to DIGIPIN
pin = get_digipin(28.6139, 77.2090)
print(pin)  # Output: FFF-3MF-34F8

# Decode DIGIPIN to coordinates
coords = get_lat_lng_from_digipin('FFF-3MF-34F8')
print(coords)  # Output: {'latitude': 28.613900, 'longitude': 77.209000}
```

## License

MIT
