Breaking Changes 🚨
This release simplifies the API by renaming the main client class from GeocodioClient
to Geocodio
, making it more consistent with other Geocodio SDKs and easier to use.
Migration Guide
Update your imports:
# Old
from geocodio import GeocodioClient
client = GeocodioClient(api_key="...")
# New
from geocodio import Geocodio
client = Geocodio(api_key="...")
What's Changed
- BREAKING: Renamed main client class from
GeocodioClient
toGeocodio
for simplicity and consistency with other SDKs- All functionality remains the same
- Only the class name has changed
- Update imports and instantiation as shown above
Installation
pip install geocodio-library-python==0.2.0