AttributeError: module 'serpapi' has no attribute 'Client'
SerpApi ships two Python packages that collide: the old deprecated `google-search-results` and the new recommended `serpapi`. Having both installed shadows the new `Client` class. Fix: `pip uninstall google-search-results`, remove `google-search-results==2.4.2` from requirements.txt, and keep only `…