Country-State-City Database Package
A high-performance Dart package for efficient handling of country, state, and city data.
Data Statistics
- Last Updated: 2024-11-10
- Total Countries: 0
- Total States: 0
- Total Cities: 0
Performance Benchmarks
Metric | Value |
---|---|
Data Load Time | 0 ms |
Memory Usage | 184.9453125 MB |
Average Query Time | 3.653 µs |
Last benchmark run: 2024-11-10T18:23:30.736346
... (rest of the README content)
Why Choose This Package?
Unlike other packages that use static JSON data, our Country-State-City Database Package utilizes Protocol Buffers (protobuf) for data storage and retrieval. This approach offers several advantages:
-
Reduced Memory Footprint: Protobuf serialization is more compact than JSON, resulting in smaller data size and lower memory usage.
-
Faster Parsing: Protobuf is designed for efficient serialization and deserialization, leading to quicker data loading times.
-
Type Safety: Protobuf provides strong typing, reducing the likelihood of runtime errors due to data inconsistencies.
-
Backward Compatibility: Protobuf allows for easy schema evolution, ensuring your code remains compatible with future data updates.
-
Cross-Platform Consistency: The use of protobuf ensures consistent data representation across different platforms and languages.
Installation
Add this to your package's pubspec.yaml
file:
dependencies:
country_state_city_v1: ^1.0.0
Then run:
dart pub get
Usage
Here's a quick example of how to use the Country-State-City Database Package:
import 'package:country_state_city_v1/country_state_city_v1.dart';
void main() async {
final provider = ServerDataProvider();
await provider.initialize();
// Get all countries
final countries = provider.getAllCountries();
print('Total countries: ${countries.length}');
// Get states for a specific country (e.g., USA)
final usaStates = provider.getStatesForCountry(840); // 840 is the country code for USA
print('Total states in USA: ${usaStates.length}');
// Get cities for a specific state (e.g., California)
final californiaCities = provider.getCitiesForState(1439); // 1439 is the state code for California
print('Total cities in California: ${californiaCities.length}');
// Get a country by ISO2 code
final usa = provider.getCountryByIso2('US');
print('Country name: ${usa?.name}');
}
For more detailed usage instructions and API documentation, please refer to the API Reference.
Data Updates
This package is automatically updated on the first day of each month to ensure data accuracy. The update process includes:
- Checking for changes in the source data repository
- Downloading and processing new CSV files if changes are detected
- Generating updated protobuf files
- Running benchmarks and updating this README
- Publishing the new version to pub.dev
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
This project is licensed under the MIT License - see the LICENSE file for details.