//! # pypinindia
//!
//! A Rust library for Indian pincode lookup and geographical information.
//!
//! ## Features
//!
//! - Complete Indian pincode database with office information
//! - Multiple lookup methods: by pincode, state, district, taluk, or office name
//! - Fast lookups with efficient data structures
//! - Comprehensive error handling
//! - Type-safe API
//!
//! ## Quick Start
//!
//! ```rust
//! use pypinindia::{PincodeData, get_state};
//!
//! // Quick lookup using convenience functions
//! let state = get_state("110001").unwrap();
//! println!("State: {}", state);
//!
//! // Using PincodeData for more operations
//! let data = PincodeData::new(None).unwrap();
//! let district = data.get_district("110001").unwrap();
//! println!("District: {}", district);
//! ```
pub use ;
pub use ;
pub use ;