usse/funda-scraper/venv/lib/python3.10/site-packages/geopy/geocoders/googlev3.py

14 lines
294 B
Python
Raw Normal View History

2023-02-20 22:38:24 +00:00
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,
)