usse/scrape/venv/lib/python3.10/site-packages/geopy/geocoders/googlev3.py
2023-12-22 15:26:01 +01:00

14 lines
294 B
Python

import warnings
from geopy.geocoders.google import GoogleV3
__all__ = ("GoogleV3",)
warnings.warn(
"`geopy.geocoders.googlev3` module is deprecated. "
"Use `geopy.geocoders.google` instead. "
"In geopy 3 this module will be removed.",
DeprecationWarning,
stacklevel=2,
)