You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
579 B
19 lines
579 B
"""
|
|
Geolocation Package
|
|
|
|
A standalone package containing geolocation APIs for:
|
|
- IP-based geolocation (IPGeolocationAPIView)
|
|
- Reverse geocoding from coordinates (ReverseGeolocationAPIView)
|
|
- Region info with browser detection (RegionInfoView)
|
|
|
|
Models:
|
|
- GeoNamesCity: 5,115,708 cities worldwide
|
|
|
|
Data Files:
|
|
- GeoLite2-City.mmdb: MaxMind IP to City database
|
|
- GeoLite2-Country.mmdb: MaxMind IP to Country database
|
|
- geonames_city.sqlite: SQLite export of GeoNamesCity model
|
|
"""
|
|
|
|
__version__ = '1.0.0'
|
|
default_app_config = 'apps.geolocation_package.apps.GeolocationPackageConfig'
|