diff --git a/00-is-it-a-bird-creating-a-model-from-your-own-data.ipynb b/00-is-it-a-bird-creating-a-model-from-your-own-data.ipynb index 9f7e7cf1d..000c148a1 100644 --- a/00-is-it-a-bird-creating-a-model-from-your-own-data.ipynb +++ b/00-is-it-a-bird-creating-a-model-from-your-own-data.ipynb @@ -86,8 +86,8 @@ "metadata": {}, "outputs": [], "source": [ - "# Skip this cell if you already have duckduckgo_search installed\n", - "!pip install -Uqq duckduckgo_search" + "# Skip this cell if you already have ddgs installed\n", + "!pip install -Uqq ddgs" ] }, { @@ -96,7 +96,7 @@ "metadata": {}, "outputs": [], "source": [ - "from duckduckgo_search import DDGS \n", + "from ddgs import DDGS \n", "from fastcore.all import *\n", "\n", "def search_images(keywords, max_images=200): return L(DDGS().images(keywords, max_results=max_images)).itemgot('image')"