目录
1 DuckDuckGo API说明
DuckDuckGo API 允许开发者将 DuckDuckGo 的搜索功能集成到自己的应用程序中,与大多数搜索引擎(如Google)API的区别在于:
-
隐私优先: DuckDuckGo 的核心价值是保护用户隐私,API 调用不会追踪用户行为,也不会收集或存储用户的个人信息(如 IP 地址、搜索历史等)。
-
无个性化搜索: 搜索结果不会基于用户的历史行为或偏好进行个性化调整,所有用户看到的搜索结果是一致的。
-
无广告追踪: DuckDuckGo 不会通过 API 返回的搜索结果嵌入广告追踪器。
除了注重隐私之外,DuckDuckGo API是一个完全免费的项目。
DuckDuckGo API:
无需 API 密钥: 目前使用 DuckDuckGo API 无需注册或获取 API 密钥,可以直接调用。
无明确调用限制: 官方没有明确说明调用频率限制,但建议合理使用以避免滥用。
免费使用: 完全免费,无需支付费用。
Google API:
需要 API 密钥: 使用 Google Search API 需要注册 Google Cloud 账号并获取 API 密钥。
调用限制: 有明确的每日调用限额,超出限额需要付费。
付费模式: 免费额度有限,超出部分按调用次数收费。
但是,鱼和熊掌不可兼得,DuckDuckGo API在保证完全免费的基础上,搜索结果质量可能不如 Google 精准,尤其是在需要个性化推荐的场景下。
值得注意的是,DuckDuckGo API 实际上是一个非官方项目,DuckDuckGo 官方并没有提供正式的 API 服务。我们通常提到的 "DuckDuckGo API" 是基于 DuckDuckGo 搜索引擎的非官方接口,通过模拟请求或解析 DuckDuckGo 的搜索结果来实现功能。
2 Github开源项目链接及官网链接
Github链接:deedy5/duckduckgo_search
AI chat and search for text, news, images and videos using the DuckDuckGo.com search engine.
项目声明如下:
This library is not affiliated with DuckDuckGo and is for educational purposes only. It is not intended for commercial use or any purpose that violates DuckDuckGo's Terms of Service. By using this library, you acknowledge that you will not use it in a way that infringes on DuckDuckGo's terms. The official DuckDuckGo website can be found at https://duckduckgo.com.
浏览器官网:DuckDuckGo - 保护你的隐私是我们的首要任务。
3 使用说明
3.1 Step1:安装第三方库
pip install -U duckduckgo_search
3.2 Step2:搜索运算符
搜索运算符是一些特殊的符号或关键词,可以添加到搜索查询中,以过滤或调整搜索结果。它们类似于其他搜索引擎(如 Google)的高级搜索功能,但 DuckDuckGo 的运算符更注重隐私和简洁性。
运算符详解
(1)基础运算符
运算符示例 | 作用 |
---|---|
cats dogs | 搜索包含 cats 或 dogs 的结果(默认是“或”关系)。 |
"cats and dogs" | 搜索包含 精确短语 "cats and dogs" 的结果。 |
cats -dogs | 搜索包含 cats 但不包含 dogs 的结果(排除 dogs)。 |
cats +dogs | 搜索包含 cats 并且 dogs 必须出现的结果(强调 dogs)。 |
(2)文件类型过滤
运算符示例 | 作用 |
---|---|
cats filetype:pdf | 搜索关于 cats 的 PDF 文件。支持的文件类型包括:pdf , doc(x) , xls(x) , ppt(x) , html 等。 |
(3)网站过滤
运算符示例 | 作用 |
---|---|
dogs site:example.com | 搜索来自 example.com 网站的关于 dogs 的结果。 |
cats -site:example.com | 搜索关于 cats 的结果,但排除来自 example.com 的页面。 |
(4)标题和 URL 过滤
运算符示例 | 作用 |
---|---|
intitle:dogs | 搜索 标题 中包含 dogs 的页面。 |
inurl:cats | 搜索 URL 中包含 cats 的页面。 |
3.3 Step3:DDGS类介绍
DDGS
类是一个用于从 DuckDuckGo 获取搜索结果的 Python 类,来自第三方库(duckduckgo-search
)。这个类封装了与 DuckDuckGo 搜索引擎的交互逻辑,使得开发者可以方便地通过代码获取搜索结果。
在初始化 DDGS
类时,可以传递以下参数:
参数名 | 类型 | 说明 |
---|---|---|
headers | dict | 自定义 HTTP 请求头,用于模拟浏览器请求。默认值为 None 。 |
proxy | str | 代理服务器地址,支持 http /https /socks5 协议。默认值为 None 。 |
timeout | int | HTTP 请求的超时时间(秒)。默认值为 10 。 |
verify | bool | 是否启用 SSL 证书验证。默认值为 True 。 |
下面是一个demo:
from duckduckgo_search import DDGS
results = DDGS().text("python programming", max_results=5)
print(results)
# 以 JSON 格式打印结果,indent=2 表示缩进 2 个空格
print(json.dumps(results, indent=2))
[{'title': 'Welcome to Python.org', 'href': 'https://www.python.org/', 'body': "Python is a programming language that lets you work quickly and integrate systems more effectively. Learn More. Get Started. Whether you're new to programming or an experienced developer, it's easy to learn and use Python. Start with our Beginner's Guide. Download."}, {'title': 'Python For Beginners', 'href': 'https://www.python.org/about/gettingstarted/', 'body': 'Learn how to get started with Python, a popular and easy-to-use programming language. Find out how to install, edit, and use Python, and explore its libraries, documentation, and community resources.'}, {'title': 'Python Tutorial - W3Schools', 'href': 'https://www.w3schools.com/python/', 'body': 'Python is a popular programming language. Python can be used on a server to create web applications. Start learning Python now » ...'}, {'title': 'Python Tutorial | Learn Python Programming Language', 'href': 'https://www.geeksforgeeks.org/python-programming-language-tutorial/', 'body': 'Python Programming Language - FAQs What is Python? Python is a high-level, general-purpose and very popular programming language which was created by Guido van Rassum and released in 1991. Python programming language (latest Python 3) is being used in web development and Machine Learning, Mathematics and System Scripting.'}, {'title': 'Python (programming language) - Wikipedia', 'href': 'https://en.wikipedia.org/wiki/Python_(programming_language)', 'body': 'Python is a high-level, general-purpose programming language.Its design philosophy emphasizes code readability with the use of significant indentation. [33]Python is dynamically type-checked and garbage-collected.It supports multiple programming paradigms, including structured (particularly procedural), object-oriented and functional programming.It is often described as a "batteries included ...'}]
[
{
"title": "Welcome to Python.org",
"href": "https://www.python.org/",
"body": "Python is a programming language that lets you work quickly and integrate systems more effectively. Learn More. Get Started. Whether you're new to programming or an experienced developer, it's easy to learn and use Python. Start with our Beginner's Guide. Download."
},
{
"title": "Python For Beginners",
"href": "https://www.python.org/about/gettingstarted/",
"body": "Learn how to get started with Python, a popular and easy-to-use programming language. Find out how to install, edit, and use Python, and explore its libraries, documentation, and community resources."
},
{
"title": "Python Tutorial - W3Schools",
"href": "https://www.w3schools.com/python/",
"body": "Python is a popular programming language. Python can be used on a server to create web applications. Start learning Python now \u00bb ..."
},
{
"title": "Python Tutorial | Learn Python Programming Language",
"href": "https://www.geeksforgeeks.org/python-programming-language-tutorial/",
"body": "Python Programming Language - FAQs What is Python? Python is a high-level, general-purpose and very popular programming language which was created by Guido van Rassum and released in 1991. Python programming language (latest Python 3) is being used in web development and Machine Learning, Mathematics and System Scripting."
},
{
"title": "Python (programming language) - Wikipedia",
"href": "https://en.wikipedia.org/wiki/Python_(programming_language)",
"body": "Python is a high-level, general-purpose programming language.Its design philosophy emphasizes code readability with the use of significant indentation. [33]Python is dynamically type-checked and garbage-collected.It supports multiple programming paradigms, including structured (particularly procedural), object-oriented and functional programming.It is often described as a \"batteries included ..."
}
]
3.4 Step4:代理(Proxy)
1. 为什么使用代理?
-
隐藏 IP 地址:通过代理服务器发送请求,可以隐藏你的真实 IP 地址。
-
绕过限制:某些网站可能会根据 IP 地址限制访问,使用代理可以绕过这些限制。
-
提高匿名性:代理可以增加请求的匿名性,尤其是在需要保护隐私的场景中。
-
分布式请求:使用多个代理可以分散请求负载,避免被目标网站封禁。
2. DDGS 类支持的代理类型
DDGS
类支持以下代理协议:
-
HTTP 代理:例如
http://user:pass@example.com:3128
-
HTTPS 代理:例如
https://user:pass@example.com:3128
-
SOCKS 代理:例如
socks5://user:pass@example.com:32325
3. 使用代理的四种方式
(1)使用 Tor 浏览器代理
Tor 是一个匿名网络,通过 Tor 浏览器可以隐藏你的 IP 地址。DDGS
类提供了一个简化的方式来使用 Tor 代理。
from duckduckgo_search import DDGS
# 使用 Tor 代理("tb" 是 "socks5://127.0.0.1:9150" 的别名)
ddgs = DDGS(proxy="tb", timeout=20)
# 搜索 "something you need",最多返回 50 条结果
results = ddgs.text("something you need", max_results=50)
# 打印结果
for result in results:
print(result)
说明:
-
proxy="tb"
是 Tor 代理的别名,等价于socks5://127.0.0.1:9150
。 -
使用前需要确保 Tor 浏览器已启动,并且代理端口为
9150
。
(2)使用自定义代理服务器
你可以使用任何支持 HTTP/HTTPS/SOCKS 协议的代理服务器。以下是一个使用 iproyal 旋转住宅代理 的示例:
from duckduckgo_search import DDGS
# 使用 SOCKS5 代理
ddgs = DDGS(proxy="socks5h://user:password@geo.iproyal.com:32325", timeout=20)
# 搜索 "something you need",最多返回 50 条结果
results = ddgs.text("something you need", max_results=50)
# 打印结果
for result in results:
print(result)
说明:
-
socks5h://
表示 SOCKS5 代理,并支持域名解析。 -
user:password
是代理服务器的认证信息。 -
geo.iproyal.com:32325
是代理服务器的地址和端口。
(3)通过环境变量设置代理
你可以通过设置 DDGS_PROXY
环境变量来指定代理服务器,而不需要在代码中显式传递 proxy
参数。
# 在终端中设置环境变量
export DDGS_PROXY="socks5h://user:password@geo.iproyal.com:32325"
然后在代码中直接使用 DDGS
类,无需指定 proxy
参数:
# 无需指定 proxy 参数,会自动使用环境变量中的代理
ddgs = DDGS(timeout=20)
# 搜索 "something you need",最多返回 50 条结果
results = ddgs.text("something you need", max_results=50)
# 打印结果
for result in results:
print(result)
(4)使用旋转代理
旋转代理是一种动态切换 IP 地址的代理服务,适合需要频繁切换 IP 的场景(如爬虫)。以下是一个使用旋转代理的示例:
from duckduckgo_search import DDGS
# 使用旋转代理
ddgs = DDGS(proxy="socks5h://user:password@geo.iproyal.com:32325", timeout=20)
# 搜索 "something you need",最多返回 50 条结果
results = ddgs.text("something you need", max_results=50)
# 打印结果
for result in results:
print(result)
说明:
-
旋转代理会自动切换 IP 地址,因此每次请求可能使用不同的 IP。
-
如果你不使用旋转代理,可以在每次初始化
DDGS
类时手动更换代理。
4. 注意事项
代理服务器的可用性:确保代理服务器可用且稳定,否则可能导致请求失败。
代理的匿名性:选择高匿名代理(如住宅代理)可以更好地保护隐私。
法律和道德问题:使用代理时请遵守相关法律法规,避免滥用。
3.5 Step5: Regions说明
xa-ar for Arabia xa-en for Arabia (en) ar-es for Argentina au-en for Australia at-de for Austria be-fr for Belgium (fr) be-nl for Belgium (nl) br-pt for Brazil bg-bg for Bulgaria ca-en for Canada ca-fr for Canada (fr) ct-ca for Catalan cl-es for Chile cn-zh for China co-es for Colombia hr-hr for Croatia cz-cs for Czech Republic dk-da for Denmark ee-et for Estonia fi-fi for Finland fr-fr for France de-de for Germany gr-el for Greece hk-tzh for Hong Kong hu-hu for Hungary in-en for India id-id for Indonesia id-en for Indonesia (en) ie-en for Ireland il-he for Israel it-it for Italy jp-jp for Japan kr-kr for Korea lv-lv for Latvia lt-lt for Lithuania xl-es for Latin America my-ms for Malaysia my-en for Malaysia (en) mx-es for Mexico nl-nl for Netherlands nz-en for New Zealand no-no for Norway pe-es for Peru ph-en for Philippines ph-tl for Philippines (tl) pl-pl for Poland pt-pt for Portugal ro-ro for Romania ru-ru for Russia sg-en for Singapore sk-sk for Slovak Republic sl-sl for Slovenia za-en for South Africa es-es for Spain se-sv for Sweden ch-de for Switzerland (de) ch-fr for Switzerland (fr) ch-it for Switzerland (it) tw-tzh for Taiwan th-th for Thailand tr-tr for Turkey ua-uk for Ukraine uk-en for United Kingdom us-en for United States ue-es for United States (es) ve-es for Venezuela vn-vi for Vietnam wt-wt for No region
4 具体使用demo
注:以下demo不对DDGS类中的各个函数定义进行展开介绍,涉及到传参问题等可以查看Github项目的Readme
4.1 AI对话
results = DDGS().chat(
"summarize Daniel Defoe's The Consolidator",
model="claude-3-haiku",
)
print(json.dumps(results, indent=2))
# model (str): The model to use: "gpt-4o-mini", "llama-3.3-70b", "claude-3-haiku",
# "o3-mini", "mixtral-8x7b". Defaults to "gpt-4o-mini".
"Here is a summary of Daniel Defoe's novel The Consolidator:\n\nThe Consolidator is a satirical work of science fiction written by Daniel Defoe and published in 1705. The story follows a narrator who travels to the moon on a device called the Consolidator. On the moon, the narrator observes the lunar society and government, which Defoe uses as a metaphor to critique the political and social conditions in England at the time.\n\nThe lunar society is divided into two main factions - the Lunarians and the Mooners. The Lunarians represent the Whig party in England, while the Mooners represent the Tories. Defoe uses this lunar political divide to comment on the bitter partisan conflicts happening in English politics.\n\nThe narrator also observes the lunar legal system, education, and other social institutions, all of which Defoe uses to make pointed commentary about the corresponding institutions in England. For example, the lunar legal system is portrayed as overly complex and corrupt, mirroring Defoe's criticisms of the English legal system.\n\nOverall, The Consolidator is a work of political satire that uses the imaginary lunar setting to offer a critical perspective on English society and politics in the early 18th century. Defoe uses the fantastical premise of lunar travel to provide an outsider's view that allows him to more freely critique the flaws and shortcomings of his own country."
4.2 文本检索
results = DDGS().text(
"live free or die", region="wt-wt", safesearch="off", timelimit="y", max_results=10
)
print(json.dumps(results, indent=2))
[
{
"title": "'Live Free or Die': The History of New Hampshire's State Motto - 97.5 WOKQ",
"href": "https://wokq.com/new-hampshire-state-motto-history/",
"body": "Live Free Or Die; Death Is Not The Worst of Evils. Although Stark's words were written in the early 19th century, it wasn't until 1945 when the phrase became New Hampshire's official state motto, according to NewEngland.com. And they continue to withstand the test of time to this day."
},
{
"title": "The story behind New Hampshire's 'Live Free or Die' motto",
"href": "https://granitepostnews.com/2024/07/31/the-story-behind-new-hampshires-live-free-or-die-motto/",
"body": "New Hampshire's motto, \"Live Free or Die,\" was penned 215 years ago today, July 31. The motto, debatably one of the most memorable slogans in the country, dates back to July 31, 1809, when Gen. John Stark made a toast to his wartime comrades. In a letter, after a long-fought battle during the American Revolution, he emphasized that freedom is paramount."
},
{
"title": "A Look Back: The Upper Valley fight over NH's 'Live Free or Die' motto",
"href": "https://www.vnews.com/a-look-back-nh-live-free-or-die-license-plates-58100013",
"body": "The message was the New Hampshire state motto \"Live Free or Die\" that began being embossed on automobile ..."
},
{
"title": "The Meaning Behind Every U.S. State Motto | Reader's Digest",
"href": "https://www.rd.com/list/meaning-behind-every-state-motto/",
"body": "New Hampshire: Live Free or Die. No, the Die Hard franchise did not coin this phrase. These words were written by General John Stark way back in 1809 and became the official motto of New Hampshire ..."
},
{
"title": "Live Free or Die: The Contested History of the Words on Your License Plate",
"href": "http://madisonlibrary-nh.org/WP/2024/09/19/live-free-or-die-the-contested-history-of-the-words-on-your-license-plate/",
"body": "The Friends of Madison will be hosting a New Hampshire Humanities program, Live Free or Die, presented by Dan Billin, on Thursday, September 19 at 7pm in the Chick Room. In 1969, when New Hampshire officials decided to put the state's motto - \"live free or die\" - on its license plates, many citizens viewed the act as an endorsement of the deeply unpopular war being waged in Vietnam ..."
},
{
"title": "Live Free or Die: The Contested History of the Words on your License ...",
"href": "https://kimballlibrary.com/live-free-or-die-the-contested-history-of-the-words-on-your-license-plate-630-pm-on-thursday-4-25-24/",
"body": "In 1969, when New Hampshire officials decided to put the state's motto - \"live free or die\" \u2014 on its license plates, many citizens viewed the act as an endorsement of the unpopular war being waged in Vietnam and protested by covering up or altering the motto. In response, authorities cracked down by arresting, fining and sometimes ..."
},
{
"title": "This Day in History: John Stark, the \"Hero of Bennington\" - Taraross",
"href": "https://www.taraross.com/post/tdih-john-stark",
"body": "On this day in 1822, a Revolutionary War hero passes away. John Stark is perhaps best known for coining the motto, \"Live Free or Die!\"Okay, so technically he wasn't the first to use the phrase, but his usage was certainly memorable. \"Live Free or Die,\" he wrote in 1809. \"Death is not the greatest of evils.\" He hoped the line would be used as a toast at an anniversary celebration ..."
},
{
"title": "General John Stark - American History Central",
"href": "https://www.americanhistorycentral.com/entries/john-stark/",
"body": "The words, \"Live Free or Die,\" were adopted by the state of New Hampshire as its motto in 1945. Stark lived to see the United States defeat Britain again in the War of 1812. In 1822, he died at the age of 94. He was buried on his farm, on the banks of the Merrimack River. When Stark passed, it left General Thomas Sumter as the last living ..."
},
{
"title": "Live Free or Die: The Contested History of the Words on Your License ...",
"href": "https://www.nhpr.org/community-calendar/event/live-free-or-die-the-contested-history-of-the-words-on-your-license-plate-03-05-2024-11-11-04",
"body": "In 1969, when New Hampshire officials decided to put the state's motto - \"live free or die\" - on its license plates, many citizens viewed the act as an endorsement of the deeply ..."
},
{
"title": "Wooley v. Maynard (1977) | The First Amendment Encyclopedia",
"href": "https://firstamendment.mtsu.edu/article/wooley-v-maynard/",
"body": "In Wooley v.Maynard, 430 U.S. 705 (1977), the U.S. Supreme Court reaffirmed the principle that the government cannot compel individuals to subscribe to certain beliefs.. The case involved a New Hampshire law that required license plates to contain the state motto \"Live Free or Die\" and prohibited individuals from obscuring the motto. Jehovah's Witness fined for covering state motto on ..."
}
]
# Searching for pdf files
results = DDGS().text(
"russia filetype:pdf",
region="wt-wt",
safesearch="off",
timelimit="y",
max_results=10,
)
print(json.dumps(results, indent=2))
[
{
"title": "Ukraine Can Improve Its Campaign Against Russia's Infrastructure. Here ...",
"href": "https://www.themoscowtimes.com/2025/02/12/ukraine-can-improve-its-campaign-against-russias-infrastructure-heres-how-a87966/pdf",
"body": "Russia's overloaded railway system is in the throes of a full upgrade \u2014 the BAM line in the east and the Trans-Siberian, both of which are the key routes for export to China, are under"
},
{
"title": "Russia's War Against Ukraine: U.S. Policy and the Role of Congress",
"href": "https://crsreports.congress.gov/product/pdf/IF/IF12277/11",
"body": "Russia's central bank from drawing on its U.S. -dollar denominated reserves, prohibit most major Russian banks from conducting most transactions in U.S. dollars or with U.S. persons, and bar new U.S. investment in Russia. The United States has expanded export controls intended to limit Russia's access to sensitive or desired U.S.-origin"
},
{
"title": "North Korea-Russia Relations: Current Developments - CRS Reports",
"href": "https://crsreports.congress.gov/product/pdf/IN/IN12355",
"body": "UNSC sanctions resolutions. Russia also participated in past talks meant to persuade North Korea to denuclearize. Since at least 2022, however, Russia has reversed course. During 2022 and 2023, China and Russia blocked U.S.-led efforts at the UNSC to adopt stricter sanctions on Pyongyang following DPRK ballistic missile tests."
},
{
"title": "B COUNCIL DECISION 2014/512/CFSP of 31 July 2014 - EUR-Lex",
"href": "https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:02014D0512-20250129",
"body": "Russia, or by legal persons, entities or bodies established in Russia, including if jointly filed by a Russian national or natural persons residing in Russia, legal persons, entities or bodies established in Russia with one or more non-Russian natural or legal person resident or established outside of Russia. 5."
},
{
"title": "Statement by the High Representative on behalf of the EU on the ...",
"href": "https://www.consilium.europa.eu/en/press/press-releases/2025/02/12/statement-by-the-high-representative-on-behalf-of-the-eu-on-the-alignment-of-certain-countries-concerning-restrictive-measures-in-view-of-russia-s-actions-destabilising-the-situation-in-ukraine/pdf/",
"body": "The Council renewed Decision 2014/512/CFSP concerning sectoral restrictive measures in view of Russia's actions destabilising the situation in Ukraine for a further six months. This Decision shall apply until 31 July 2025. Albania, Bosnia and Herzegovina, Iceland, Liechtenstein, Montenegro, North Macedonia, Norway and Ukraine align themselves ..."
},
{
"title": "Book Review: War in Ukraine: Conflict, Strategy, and the Return of a ...",
"href": "https://press.armywarcollege.edu/cgi/viewcontent.cgi?article=1059&context=parameters_bookshelf",
"body": "Russia and the West\u2014including over NATO\u2014was a . variable, not a growing constant, one whose variation bears little temporal relation to Russia's hostile actions toward Ukraine\" (48). Anne Applebaum's chapter, \"How the War Will End,\" similarly critiques Mearsheimer by grouping him with MIT Professor Emeritus"
},
{
"title": " Charitable Giving in Wartime: Evidence from Donations during Russia's ...",
"href": "https://bank.gov.ua/admin_uploads/article/ORS_2024.11.01_presentation.pdf?v=9",
"body": "Annexation of Crimea by Russia and further Russian-sponsored \"separatist\" movements in Eastern Ukraine in 2014. These events led to the formation of civil society organizations supporting defense efforts (e.g. Come Back Alive). Full-scale invasion began on February 24, 2022 \u2192 huge resistance from Ukrainian military and civilians."
},
{
"title": "Mondel\u0113z International Reports Q4 and FY 2024 Results",
"href": "https://ir.mondelezinternational.com/static-files/7d10e99b-cbe1-4213-8e26-44686c161b0d",
"body": "In February 2022, Russia began a military invasion of Ukraine and the company closed its operations and facilities in Ukraine. In March 2022, the company's two Ukrainian manufacturing facilities in Trostyanets and Vyshhorod were significantly damaged. In the second quarter of 2024, the company fully resumed production at both facilities after"
},
{
"title": "Loyola of Los Angeles International and Comparative Law Review",
"href": "https://digitalcommons.lmu.edu/cgi/viewcontent.cgi?article=1832&context=ilr",
"body": "In 2010, Russia entered the race to win the bid to host the World Cup. 91. Like many others, Russia saw this as an opportunity to reframe the country's political power. The approximate cost of hosting the World Cup is estimated at $10 to $20 billion. 92. Such a large cost will presumably cause economic effects that will be felt for several ..."
},
{
"title": " Gender disparities in Russian academia: a bibliometric analysis",
"href": "https://www.hse.ru/data/2024/06/24/2120081995/Article+2+Gender+Disparities+in+Russian+academia.pdf?ysclid=m6vy1ew3aj278180198",
"body": "of unique authors from Russia and overall. Among 156,620, there are 98,037 men authors (63%) and 58,583 women authors (37%). This indicates that women are less represented among academics from Russia who publish papers in journals indexed in the WoS database. The disparity is more evident among the 543,363 authorships from Russia. The share of"
}
]
4.3 输入文本-检索相关图片
results = DDGS().images(
keywords="butterfly",
region="wt-wt",
safesearch="off",
size=None,
color="Monochrome",
type_image=None,
layout=None,
license_image=None,
max_results=100,
)
print(json.dumps(results, indent=2))
[
{
"title": "Monarch Butterfly Flying Sketch",
"image": "https://cdn4.vectorstock.com/i/1000x1000/05/78/monarch-butterfly-flying-silhouette-high-quality-vector-42890578.jpg",
"thumbnail": "https://tse2.mm.bing.net/th?id=OIP.Z3UOWqSINbHEOTXM4HiKZQHaH_&pid=Api",
"url": "https://proper-cooking.info/monarch-butterfly-flying-sketch",
"height": 1080,
"width": 1000,
"source": "Bing"
},
{
"title": "Mono patterns hi-res stock photography and images - Alamy",
"image": "https://c8.alamy.com/comp/S086Y2/butterfly-S086Y2.jpg",
"thumbnail": "https://tse4.mm.bing.net/th?id=OIP.Qh2KTUgpmJ7f7WADQdWuQgHaJ8&pid=Api",
"url": "https://www.alamy.com/stock-photo/mono-patterns.html",
"height": 1390,
"width": 1035,
"source": "Bing"
},
{
"title": "Fauna Cut Out Stock Images & Pictures - Alamy",
"image": "https://c8.alamy.com/comp/2CCER0X/butterfly-x-ray-2CCER0X.jpg",
"thumbnail": "https://tse4.mm.bing.net/th?id=OIP.yKemdZa-ij07qn_ucJmGKQHaH6&pid=Api",
"url": "https://www.alamy.com/stock-photo/fauna.html?cutout=1&sortBy=relevant",
"height": 1390,
"width": 1300,
"source": "Bing"
},
{
"title": "Fauna Cut Out Stock Images & Pictures - Alamy",
"image": "https://c8.alamy.com/comp/2CCER1E/butterfly-x-ray-2CCER1E.jpg",
"thumbnail": "https://tse2.mm.bing.net/th?id=OIP.YWMLB2u95IhVg5UpFm-RaQHaH6&pid=Api",
"url": "https://www.alamy.com/stock-photo/fauna.html?cutout=1&sortBy=relevant",
"height": 1390,
"width": 1300,
"source": "Bing"
},
{
"title": "silueta de mariposa monarca, vista lateral. ilustraci\u00f3n vectorial aislado sobre fondo blanco ...",
"image": "https://static.vecteezy.com/system/resources/previews/010/595/052/original/monarch-butterfly-silhouette-side-view-illustration-isolated-on-white-background-vector.jpg",
"thumbnail": "https://tse4.mm.bing.net/th?id=OIP.BqQ6_qIxZXBfAc0mY48lEwHaHa&pid=Api",
"url": "https://es.vecteezy.com/arte-vectorial/10595052-monarca-mariposa-silueta-vista-lateral-vector-ilustracion-aislado-sobre-fondo-blanco",
"height": 1920,
"width": 1920,
"source": "Bing"
},
{
"title": "a black and white butterfly on a transparent background",
"image": "https://i.pinimg.com/736x/74/22/86/742286059a4d6d1955d670f23b9ce2ef.jpg",
"thumbnail": "https://tse2.mm.bing.net/th?id=OIP.zq8xdJonQo6aT6tVMdt9ugHaGl&pid=Api",
"url": "https://www.pinterest.de/pin/black-butterfly-butterfly-stencil-silhouette-drawing-macaron-template-brush-footed-butterfly-png--560205641157656526/",
"height": 654,
"width": 736,
"source": "Bing"
},
{
"title": "Download Cute Black And White Aesthetic Butterfly On Palm Wallpaper | Wallpapers.com",
"image": "https://wallpapers.com/images/hd/cute-black-and-white-aesthetic-butterfly-on-palm-3csxhvstjkf8v1it.jpg",
"thumbnail": "https://tse1.mm.bing.net/th?id=OIP.oBgI1giTlBDL07QSY3axOgHaNK&pid=Api",
"url": "https://wallpapers.com/wallpapers/cute-black-and-white-aesthetic-butterfly-on-palm-3csxhvstjkf8v1it.html",
"height": 1920,
"width": 1080,
"source": "Bing"
},
{
"title": "Monarch butterfly Drawing Insect , butterfly transparent - Clip Art Library",
"image": "https://clipart-library.com/2023/Vintage-Butterfly-Image-GraphicsFairy.jpg",
"thumbnail": "https://tse3.mm.bing.net/th?id=OIP.4iIkFwQevGWtW8CqWZ2s3QHaGK&pid=Api",
"url": "https://clipart-library.com/clipart/butterfly-sketch-cliparts-20.htm",
"height": 1498,
"width": 1800,
"source": "Bing"
},
{
"title": "Butterfly Life Cycle Coloring Page - ColoringBay",
"image": "https://coloringbay.com/wp-content/uploads/butterfly-life-cycle-coloring-page.jpg",
"thumbnail": "https://tse2.mm.bing.net/th?id=OIP.mo_0TgYQZE34Alg1UyIQIwHaFW&pid=Api",
"url": "https://coloringbay.com/butterfly-coloring-pages/butterfly-life-cycle-coloring-page",
"height": 1376,
"width": 1904,
"source": "Bing"
},
{
"title": "Download Elegant Black Butterfly Shining Plain White Wallpaper | Wallpapers.com",
"image": "https://wallpapers.com/images/hd/elegant-black-butterfly-shining-plain-white-2wueee7jcvtw6cpo.jpg",
"thumbnail": "https://tse4.mm.bing.net/th?id=OIP.nJcE1OhVQDlPu3DlC5az5wHaNL&pid=Api",
"url": "https://wallpapers.com/wallpapers/elegant-black-butterfly-shining-plain-white-2wueee7jcvtw6cpo.html",
"height": 1272,
"width": 715,
"source": "Bing"
},
{
"title": "SVG > butterfly insect - Free SVG Image & Icon. | SVG Silh",
"image": "https://svgsilh.com/svg/3244177.svg",
"thumbnail": "https://tse4.mm.bing.net/th?id=OIP.xa_bafMhP0wAFrgnOqwBvwHaEr&pid=Api",
"url": "https://svgsilh.com/image/3275004.html",
"height": 810,
"width": 1280,
"source": "Bing"
},
{
"title": "Butterfly Silhouette Sticker - Free PNG Image",
"image": "https://i.pinimg.com/736x/58/e0/40/58e0402a12f84e45640a261ea021f138.jpg",
"thumbnail": "https://tse2.mm.bing.net/th?id=OIP.Y8JvaW12YzisRqqPm_pB-gHaHa&pid=Api",
"url": "https://www.pinterest.com/pin/butterfly-silhouette-sticker-free-png-image--293508100729864822/",
"height": 736,
"width": 736,
"source": "Bing"
},
{
"title": "How to Draw a Butterfly | Design School",
"image": "https://bi.fbcd.co/posts/outline-butterfly-sketch-free-drawing-tutorial-63624369b11d2524454607.jpg",
"thumbnail": "https://tse4.mm.bing.net/th?id=OIP.cy4PsykDd106tvIvJ7LNeQHaFL&pid=Api",
"url": "https://designbundles.net/design-school/how-to-draw-a-butterfly",
"height": 1050,
"width": 1500,
"source": "Bing"
},
{
"title": "Details 186+ butterfly line drawing - nanoginkgobiloba.vn",
"image": "https://png.pngtree.com/png-clipart/20230607/original/pngtree-free-line-drawings-of-butterflies-png-image_9181556.png",
"thumbnail": "https://tse2.mm.bing.net/th?id=OIP.ZIQwJ3mEiuMDZATnyU1RKAHaHa&pid=Api",
"url": "https://www.nanoginkgobiloba.vn/butterfly-line-drawing-xrx22dgy/",
"height": 1200,
"width": 1200,
"source": "Bing"
},
{
"title": "Butterfly Liner Vector, Butterfly Drawing, Butterfly Sketch, Butterfly Line PNG and Vector with ...",
"image": "https://png.pngtree.com/png-clipart/20230405/original/pngtree-butterfly-liner-png-image_9028153.png",
"thumbnail": "https://tse2.mm.bing.net/th?id=OIP.xDLvOWXsykhg7AdENJRqdAHaHa&pid=Api",
"url": "https://pngtree.com/freepng/butterfly-liner-vector_9028153.html",
"height": 1200,
"width": 1200,
"source": "Bing"
},
{
"title": "Free Butterfly Wings Cliparts, Download Free Butterfly Wings Cliparts png images, Free ClipArts ...",
"image": "https://clipart-library.com/img/1651771.png",
"thumbnail": "https://tse4.mm.bing.net/th?id=OIP.55AgnrPcnvXnzADoOpY90wHaHa&pid=Api",
"url": "https://clipart-library.com/butterfly-wings-cliparts.html",
"height": 1400,
"width": 1400,
"source": "Bing"
},
{
"title": "Free Butterfly Silhouette Clip Art, Download Free Butterfly Silhouette Clip Art png images, Free ...",
"image": "https://clipart-library.com/img/1077930.png",
"thumbnail": "https://tse1.mm.bing.net/th?id=OIP.y-Yx6bTH-OTx81uQcYAyHQHaGM&pid=Api",
"url": "https://clipart-library.com/free/butterfly-silhouette-clip-art.html",
"height": 1946,
"width": 2326,
"source": "Bing"
},
{
"title": "Butterfly Outline Clipart | Free Printable Butterfly Templates",
"image": "https://clipart-library.com/images/AibjGBXbT.gif",
"thumbnail": "https://tse3.mm.bing.net/th?id=OIP.7Z8sgoltGA3dOQYA1KGQdQHaG6&pid=Api",
"url": "https://clipart-library.com/butterfly-outline.html",
"height": 956,
"width": 1024,
"source": "Bing"
},
{
"title": "Butterfly Svg Monarch Butterfly Png Butterfly Clip Art. - Etsy UK",
"image": "https://i.etsystatic.com/22467704/r/il/ea4f3c/3922777498/il_fullxfull.3922777498_jmio.jpg",
"thumbnail": "https://tse3.mm.bing.net/th?id=OIP.X3FwV4Kmi2wUxA5CXedbFwHaGH&pid=Api",
"url": "https://www.etsy.com/uk/listing/1232154138/butterfly-svg-monarch-butterfly-png",
"height": 1960,
"width": 2376,
"source": "Bing"
},
{
"title": "Printable Butterfly Outline Templates",
"image": "https://colormadehappy.com/wp-content/uploads/2022/09/Butterfly-Outline-2-e1662744313347.jpg.webp",
"thumbnail": "https://tse4.mm.bing.net/th?id=OIP.vb7ISOH0-dQrQ8SowUzgrAHaFu&pid=Api",
"url": "https://colormadehappy.com/printable-butterfly-outline-templates/",
"height": 612,
"width": 792,
"source": "Bing"
},
{
"title": "Butterfly Pattern PNG Transparent, Butterfly Pattern, Butterfly Drawing, Butterfly Sketch ...",
"image": "https://png.pngtree.com/png-clipart/20190705/original/pngtree-butterfly-pattern-png-image_4364940.jpg",
"thumbnail": "https://tse3.mm.bing.net/th?id=OIP.Klk-yYjUQUO-dbzXq9jGTgHaHa&pid=Api",
"url": "https://pngtree.com/freepng/butterfly-pattern_4364940.html",
"height": 1200,
"width": 1200,
"source": "Bing"
},
{
"title": "Black And White Butterfly Artwork",
"image": "https://illustoon.com/photo/10810.png",
"thumbnail": "https://tse4.mm.bing.net/th?id=OIP.jNkbEbO06hQGT8tOYssAJQHaHa&pid=Api",
"url": "https://animalia-life.club/qa/pictures/black-and-white-butterfly-artwork",
"height": 960,
"width": 960,
"source": "Bing"
},
{
"title": "butterfly clipart black and white - Clip Art Library",
"image": "https://clipart-library.com/new_gallery/butterfly-clipart-73.png",
"thumbnail": "https://tse4.mm.bing.net/th?id=OIP.r4sDgFOuntDouC2DSpLZwAHaHp&pid=Api",
"url": "https://clipart-library.com/clipart/butterfly-clipart-73.htm",
"height": 2045,
"width": 1979,
"source": "Bing"
},
{
"title": "Free Black Butterfly Cliparts, Download Free Black Butterfly Cliparts png images, Free ClipArts ...",
"image": "https://clipart-library.com/img/924600.png",
"thumbnail": "https://tse1.mm.bing.net/th?id=OIP._cNrOAzdB_g6xpkgA_UcGQHaHY&pid=Api",
"url": "https://clipart-library.com/black-butterfly-cliparts.html",
"height": 1017,
"width": 1021,
"source": "Bing"
},
{
"title": "free printable butterfly coloring pages for kids butterfly printable butterfly clip art ...",
"image": "https://i0.wp.com/timvandevall.com/wp-content/uploads/2014/06/butterfly-stencil.jpg",
"thumbnail": "https://tse1.mm.bing.net/th?id=OIP.QNY_l09oF3o4rt2iyTZwswHaHa&pid=Api",
"url": "https://islameldar.blogspot.com/2022/08/free-printable-butterfly-coloring-pages.html",
"height": 1500,
"width": 1500,
"source": "Bing"
},
{
"title": "Free Butterfly Clip Art Black And White, Download Free Butterfly Clip Art Black And White png ...",
"image": "https://clipart-library.com/newimages/butterfly-clip-art-black-and-white-20.png",
"thumbnail": "https://tse2.mm.bing.net/th?id=OIP.Xb8gIQc3jyTWZ2CJXFrpNwHaFe&pid=Api",
"url": "https://clipart-library.com/butterfly-clip-art-black-and-white.html",
"height": 1757,
"width": 2374,
"source": "Bing"
},
{
"title": "Free Black And White Butterfly, Download Free Black And White Butterfly png images, Free ...",
"image": "https://clipart-library.com/images/pcq84X8Ei.gif",
"thumbnail": "https://tse2.mm.bing.net/th?id=OIP.-UnMQkXUh_qVWXd5j8J55AHaFS&pid=Api",
"url": "https://clipart-library.com/black-and-white-butterfly.html",
"height": 731,
"width": 1023,
"source": "Bing"
},
{
"title": "Free Black Butterfly Cliparts, Download Free Black Butterfly Cliparts png images, Free ClipArts ...",
"image": "https://clipart-library.com/img/924689.png",
"thumbnail": "https://tse2.mm.bing.net/th?id=OIP.AIxhn9qHDABfUhqvNG5HAQHaGH&pid=Api",
"url": "https://clipart-library.com/black-butterfly-cliparts.html",
"height": 1626,
"width": 1969,
"source": "Bing"
},
{
"title": "Free Butterfly Drawing Black And White, Download Free Butterfly Drawing Black And White png ...",
"image": "https://clipart-library.com/images/kT85bk6nc.png",
"thumbnail": "https://tse3.mm.bing.net/th?id=OIP.YS5ZGOLt2nZlN4sRC59uogHaEt&pid=Api",
"url": "https://clipart-library.com/free/butterfly-drawing-black-and-white.html",
"height": 1624,
"width": 2555,
"source": "Bing"
},
{
"title": "Butterfly Tattoo Clipart Free Stock Photo - Public Domain Pictures",
"image": "https://publicdomainpictures.net/pictures/60000/velka/butterfly-tattoo-clipart.jpg",
"thumbnail": "https://tse3.mm.bing.net/th?id=OIP.D3iCgEUM6S6hobjoVKMYfwHaHa&pid=Api",
"url": "https://www.publicdomainpictures.net/view-image.php?image=50565&picture=butterfly-tattoo-clipart",
"height": 1920,
"width": 1920,
"source": "Bing"
},
{
"title": "butterfly - Clip Art Library",
"image": "https://clipart-library.com/images/pcqKALbLi.jpg",
"thumbnail": "https://tse3.mm.bing.net/th?id=OIP.PEJtS8lfd6fClbg1QR7aggHaHa&pid=Api",
"url": "https://clipart-library.com/clipart/pcqKALbLi.htm",
"height": 1500,
"width": 1500,
"source": "Bing"
},
{
"title": "Butterfly Coloring Pages | Team colors",
"image": "https://1.bp.blogspot.com/-eY_UWp-XnTY/UYk_hHKeFxI/AAAAAAAAE8A/3Q0uWLsSrgs/s1600/monarch-butterfly-coloring-pages.jpg",
"thumbnail": "https://tse2.mm.bing.net/th?id=OIP.NeT-B8RfHY7AuVeVAeynSwHaG5&pid=Api",
"url": "https://teamcolors.blogspot.com/2013/05/butterfly-coloring-pages.html",
"height": 932,
"width": 1000,
"source": "Bing"
},
{
"title": "Butterflies And Flower Coloring Pages",
"image": "https://momlovesbest.com/wp-content/uploads/2023/06/butterfly-coloring-pages-1.webp",
"thumbnail": "https://tse4.mm.bing.net/th?id=OIP.NJFO5VQlsdjEx5RA75ZKrAHaJo&pid=Api",
"url": "https://animalia-life.club/qa/pictures/butterflies-and-flower-coloring-pages",
"height": 1248,
"width": 960,
"source": "Bing"
},
{
"title": "cigarette cards butterflies - Clip Art Library",
"image": "https://clipart-library.com/img/1714017.png",
"thumbnail": "https://tse2.mm.bing.net/th?id=OIP.rVWwbEJR9o2cJ6sRsjOamgHaHZ&pid=Api",
"url": "https://clipart-library.com/clipart/1714017.htm",
"height": 1418,
"width": 1420,
"source": "Bing"
},
{
"title": "Free Butterfly Silhouette Cliparts, Download Free Butterfly Silhouette Cliparts png images, Free ...",
"image": "https://clipart-library.com/img/1077945.png",
"thumbnail": "https://tse3.mm.bing.net/th?id=OIP.uV0mATpyr5xDhOH0Ct9p5wHaGn&pid=Api",
"url": "https://clipart-library.com/butterfly-silhouette-cliparts.html",
"height": 2142,
"width": 2400,
"source": "Bing"
},
{
"title": "Butterfly with pretty patterns to color - Butterflies & insects Adult Coloring Pages",
"image": "https://www.justcolor.net/wp-content/uploads/sites/1/nggallery/insectes/coloring-butterfly-beautiful-patterns-3.jpg",
"thumbnail": "https://tse3.mm.bing.net/th?id=OIP.7-KDpLcsYp6ypqd8jBmfwAHaKe&pid=Api",
"url": "https://www.justcolor.net/nature/coloring-animals-insects/nggallery/coloring-egypt-hieroglyphs/page/2/?image=insectes__coloring-butterfly-beautiful-patterns-3__1",
"height": 1684,
"width": 1191,
"source": "Bing"
},
{
"title": "Butterfly. Clipart Transparent PNG Hd, Vector Butterfly Icon, Butterfly Drawing, Butterfly ...",
"image": "https://png.pngtree.com/png-clipart/20190924/original/pngtree-vector-butterfly-icon-png-image_4868975.jpg",
"thumbnail": "https://tse4.mm.bing.net/th?id=OIP.uHJggCKDUeiKflsotKf9owHaHa&pid=Api",
"url": "https://pngtree.com/freepng/vector-butterfly-icon_4868975.html",
"height": 1200,
"width": 1200,
"source": "Bing"
},
{
"title": "Free Butterfly Outline Clipart Template - Edit Online & Download | Template.net",
"image": "https://images.template.net/433956/Butterfly-Outline-Clipart-edit-online.png",
"thumbnail": "https://tse4.mm.bing.net/th?id=OIP.QaJwq5GY9lcA7hi0Pg51sQHaHa&pid=Api",
"url": "https://www.template.net/edit-online/433956/butterfly-outline-clipart",
"height": 1200,
"width": 1200,
"source": "Bing"
},
{
"title": "Simple Symmetry: Butterfly Coloring Page for Preschoolers",
"image": "https://i.pinimg.com/736x/a0/e5/a6/a0e5a6a8ccbffd1db24aefd60073ec84.jpg",
"thumbnail": "https://tse2.mm.bing.net/th?id=OIP.WLfdAdvN9TV_7INxHPsyRQHaJo&pid=Api",
"url": "https://www.pinterest.com.au/pin/4996249581580311/",
"height": 956,
"width": 735,
"source": "Bing"
},
{
"title": "Butterfly Hard Coloring Page || COLORING-PAGES-PRINTABLE.COM",
"image": "https://coloring-pages-printable.com/wp-content/uploads/Adults/Butterflies/butterfly-coloring-pages-for-adults-25.GIF",
"thumbnail": "https://tse2.mm.bing.net/th?id=OIP.dAatYRi20YnOSV50Z-L3HAHaId&pid=Api",
"url": "https://coloring-pages-printable.com/print/adult-butterflies/butterfly-coloring-pages-for-adults.php?id=25",
"height": 1023,
"width": 895,
"source": "Bing"
},
{
"title": "Premium Vector | Drawing black silhouettes of butterflies on a white background",
"image": "https://img.freepik.com/premium-vector/drawing-black-silhouettes-butterflies-white-background_422871-511.jpg?w=2000",
"thumbnail": "https://tse1.mm.bing.net/th?id=OIP.TM2nZeTXOfYGURk8erVLVAHaDt&pid=Api",
"url": "https://www.freepik.com/premium-vector/drawing-black-silhouettes-butterflies-white-background_40677693.htm",
"height": 1000,
"width": 2000,
"source": "Bing"
},
{
"title": "Adorable Butterfly Coloring Page - Free Printable Coloring Pages for Kids",
"image": "https://coloringonly.com/images/imgcolor/Adorable-Butterfly-coloring-page.jpg",
"thumbnail": "https://tse2.mm.bing.net/th?id=OIP.JHDFaJhfhwfJrwxCvz0_swHaJS&pid=Api",
"url": "https://coloringonly.com/pages/adorable-butterfly-coloring-page/",
"height": 979,
"width": 780,
"source": "Bing"
},
{
"title": "Ala de mariposa SVG / Silueta de mariposa / Imagen de espejo dividida por la mitad / Svg Png Dxf ...",
"image": "https://i.etsystatic.com/35940007/r/il/09277a/4350933110/il_fullxfull.4350933110_kt1a.jpg",
"thumbnail": "https://tse4.mm.bing.net/th?id=OIP._u_hoiP_d7S-v9Pv53SEigHaFj&pid=Api",
"url": "https://www.etsy.com/mx/listing/1254854044/ala-de-mariposa-svg-silueta-de-mariposa",
"height": 2100,
"width": 2800,
"source": "Bing"
},
{
"title": "Simple butterfly black and white outline vector SVG line art Stock Vector | Adobe Stock",
"image": "https://as1.ftcdn.net/v2/jpg/05/32/29/72/1000_F_532297226_RLOIy04pUPxA3DZYQA77x9botr2X9SHh.jpg",
"thumbnail": "https://tse1.mm.bing.net/th?id=OIP.ew6-Vb5FThAEpLC5WFCFRQHaHf&pid=Api",
"url": "https://stock.adobe.com/images/simple-butterfly-black-and-white-outline-vector-svg-line-art/532297226",
"height": 1000,
"width": 989,
"source": "Bing"
},
{
"title": "Black Wallpaper: Butterfly",
"image": "https://2.bp.blogspot.com/-BfFL4MNGwPY/TnxJeTuJiAI/AAAAAAAADig/2VKVfoCMWHg/s1600/butterfly+wallpaper+black.jpg",
"thumbnail": "https://tse3.mm.bing.net/th?id=OIP.4EOmK8p1iqAUfPDra3mZ8gHaFj&pid=Api",
"url": "https://naturesource.blogspot.com/2011/09/black-wallpaper-butterfly.html",
"height": 768,
"width": 1024,
"source": "Bing"
},
{
"title": "Butterfly Drawing {6 Easy Steps}! - The Graphics Fairy",
"image": "https://thegraphicsfairy.com/wp-content/uploads/2022/10/Butterfly-Drawing-Lesson-Step3-GraphicsFairy.jpeg",
"thumbnail": "https://tse2.mm.bing.net/th?id=OIP.RIw1liZj-sMzcEVim90XLgHaGn&pid=Api",
"url": "https://thegraphicsfairy.com/butterfly-drawing/",
"height": 1340,
"width": 1500,
"source": "Bing"
},
{
"title": "Butterfly Coloring Pages|free printable butterfly coloring pages|butterfly photos",
"image": "https://4.bp.blogspot.com/_61hf6pzN8OM/SwHiesQeqiI/AAAAAAAAAa8/LKJjVMYg3-k/s1600/butterfly-coloring-pages.gif",
"thumbnail": "https://tse1.mm.bing.net/th?id=OIP.jipJkNey6Wp25-a2cHuIhgHaJ3&pid=Api",
"url": "https://butterflycoloringpages.blogspot.com/",
"height": 957,
"width": 718,
"source": "Bing"
},
{
"title": "Efectul fluture \u0219i COVID - Blog de Olivian Breda",
"image": "https://olivian.ro/wp-content/uploads/2020/08/butterfly.jpg",
"thumbnail": "https://tse1.explicit.bing.net/th?id=OIP.k5oHsWHyO2Impzzo2yuTCAHaFS&pid=Api",
"url": "https://olivian.ro/efectul-fluture/",
"height": 857,
"width": 1200,
"source": "Bing"
},
{
"title": "Here is Outline Of Butterfly To Color | mackira-thanatos",
"image": "http://coloringtop.com/sites/default/files/7_109.png",
"thumbnail": "https://tse3.mm.bing.net/th?id=OIP.0ZrsAYrtDQFzsDiYb6st3gHaFG&pid=Api",
"url": "https://mackira-thanatos.blogspot.com/2021/01/here-is-outline-of-butterfly-to-color.html",
"height": 1111,
"width": 1612,
"source": "Bing"
},
{
"title": "Elegant Grey Intricate Butterfly Free Stock Photo - Public Domain Pictures",
"image": "https://www.publicdomainpictures.net/pictures/220000/velka/elegant-grey-intricate-butterfly-1496112487XHO.jpg",
"thumbnail": "https://tse2.mm.bing.net/th?id=OIP.mPQNfYbdgjCfx2CEBiGm4wHaHa&pid=Api",
"url": "https://www.publicdomainpictures.net/view-image.php?image=214949&picture=elegant-grey-intricate-butterfly",
"height": 1920,
"width": 1920,
"source": "Bing"
},
{
"title": "Free Butterfly Silhouette Cliparts, Download Free Butterfly Silhouette Cliparts png images, Free ...",
"image": "https://clipart-library.com/img/785811.jpg",
"thumbnail": "https://tse1.mm.bing.net/th?id=OIP.4Prq8A4GXh-UFGTmtwVCOwHaHf&pid=Api",
"url": "https://clipart-library.com/butterfly-silhouette-cliparts.html",
"height": 810,
"width": 800,
"source": "Bing"
},
{
"title": "Free Butterfly Drawing Black And White, Download Free Butterfly Drawing Black And White png ...",
"image": "https://clipart-library.com/images/8iEbRgz5T.png",
"thumbnail": "https://tse3.mm.bing.net/th?id=OIP.65EY5WUnym5M0XzPdRZdCAHaEJ&pid=Api",
"url": "https://clipart-library.com/free/butterfly-drawing-black-and-white.html",
"height": 1429,
"width": 2555,
"source": "Bing"
},
{
"title": "Butterfly Icon, Butterfly Drawing, Butterfly Sketch, Butterfly PNG and Vector with Transparent ...",
"image": "https://png.pngtree.com/png-clipart/20220912/original/pngtree-butterfly-icon-png-image_8585078.png",
"thumbnail": "https://tse1.mm.bing.net/th?id=OIP.dAR11zYwpUqmWfdfYr1U3wHaHa&pid=Api",
"url": "https://pngtree.com/freepng/butterfly-icon_8585078.html",
"height": 1200,
"width": 1200,
"source": "Bing"
},
{
"title": "clipart of flies cartoon black and white - Clip Art Library",
"image": "https://clipart-library.com/img/924640.png",
"thumbnail": "https://tse3.mm.bing.net/th?id=OIP.4fW8kuaEgzExLQky7TrYCQHaGh&pid=Api",
"url": "https://clipart-library.com/clipart/924640.htm",
"height": 6090,
"width": 6910,
"source": "Bing"
},
{
"title": "Black And White Butterfly Artwork",
"image": "https://img.freepik.com/premium-vector/beautiful-butterfly-black-white-butterfly-vector-illustration-realistic-hand-drawn-butterfly_224300-3.jpg?w=2000",
"thumbnail": "https://tse1.mm.bing.net/th?id=OIP.PkdfZv1IKAKAbMLfwY0bSAHaHa&pid=Api",
"url": "https://animalia-life.club/qa/pictures/black-and-white-butterfly-artwork",
"height": 2000,
"width": 2000,
"source": "Bing"
},
{
"title": "Free Butterfly Coloring Page - Free Printable Coloring Pages for Kids",
"image": "https://coloringonly.com/images/imgcolor/Free-Butterfly-coloring-page.jpg",
"thumbnail": "https://tse2.mm.bing.net/th?id=OIP.DlukrED9Df4Hdl-NszUyogHaFh&pid=Api",
"url": "https://coloringonly.com/pages/free-butterfly-coloring-page/",
"height": 760,
"width": 1020,
"source": "Bing"
},
{
"title": "Coloring book - Clip Art Library",
"image": "https://clipart-library.com/images/ki85bnkkT.gif",
"thumbnail": "https://tse3.mm.bing.net/th?id=OIP.egFbD2zP5JrIRe5icOO8jAHaGy&pid=Api",
"url": "https://clipart-library.com/clipart/ki85bnkkT.htm",
"height": 1483,
"width": 1619,
"source": "Bing"
},
{
"title": "White Butterfly Free Stock Photo - Public Domain Pictures",
"image": "https://www.publicdomainpictures.net/pictures/200000/velka/white-butterfly-1477850043iTW.jpg",
"thumbnail": "https://tse3.mm.bing.net/th?id=OIP.zt5SBfh7J_nSrAlj5dYNegHaHa&pid=Api",
"url": "https://www.publicdomainpictures.net/en/view-image.php?image=197111&picture=white-butterfly",
"height": 1920,
"width": 1920,
"source": "Bing"
},
{
"title": "6300 Coloring Page Of A Butterfly , Free HD Download - Hot Coloring Pages",
"image": "https://www.justcolor.net/kids/wp-content/uploads/sites/12/nggallery/butterflies/Coloring-for-kids-butterflies-95530.jpg",
"thumbnail": "https://tse2.explicit.bing.net/th?id=OIP.kaZoEq_-FwH6tNol0CgiSgHaKe&pid=Api",
"url": "https://hotcoloringpagescom.blogspot.com/2016/04/6300-coloring-page-of-butterfly-free-hd.html",
"height": 1684,
"width": 1191,
"source": "Bing"
},
{
"title": "Monarch Butterfly 2 Free Stock Photo - Public Domain Pictures",
"image": "https://www.publicdomainpictures.net/pictures/120000/velka/monarch-butterfly-2-1433183647wMO.jpg",
"thumbnail": "https://tse1.mm.bing.net/th?id=OIP.ZfJvHRUMLORsQ7vAOQPN8QHaGj&pid=Api",
"url": "https://www.publicdomainpictures.net/en/view-image.php?image=118575&picture=monarch-butterfly-2",
"height": 1698,
"width": 1920,
"source": "Bing"
},
{
"title": "Blur fly Black and White Stock Photos & Images - Alamy",
"image": "https://c8.alamy.com/comp/2K2BDWC/butterfly-2K2BDWC.jpg",
"thumbnail": "https://tse2.mm.bing.net/th?id=OIP.uvjEe-edU4_OWyIRCh7hAAHaFc&pid=Api",
"url": "https://www.alamy.com/stock-photo/blur-fly.html?blackwhite=1",
"height": 956,
"width": 1300,
"source": "Bing"
},
{
"title": "Butterfly Liner Vector, Butterfly Drawing, Butterfly Sketch, Cute Butterfly PNG and Vector with ...",
"image": "https://png.pngtree.com/png-clipart/20230407/original/pngtree-butterfly-liner-png-image_9033385.png",
"thumbnail": "https://tse2.mm.bing.net/th?id=OIP.PkBdelgYRGuSYDwOiCz4TgHaHa&pid=Api",
"url": "https://pngtree.com/freepng/butterfly-liner-vector_9033385.html",
"height": 1200,
"width": 1200,
"source": "Bing"
},
{
"title": "Free Butterfly Tattoo Designs PNG Transparent Images, Download Free Butterfly Tattoo Designs PNG ...",
"image": "https://clipart-library.com/image_gallery2/Butterfly-Tattoo-Designs-PNG-Picture.png",
"thumbnail": "https://tse3.mm.bing.net/th?id=OIP.Bgkuf_YZz4IZ_yaZPtF3BgHaIG&pid=Api",
"url": "https://clipart-library.com/butterfly-tattoo-designs-png.html",
"height": 1121,
"width": 1024,
"source": "Bing"
},
{
"title": "Butterfly Body Template Printable",
"image": "https://colormadehappy.com/wp-content/uploads/2022/09/Butterfly-Outline-1-e1662744283562.jpg.webp",
"thumbnail": "https://tse2.mm.bing.net/th?id=OIP.hCyQRoZfHiZkewG-XMKT6gAAAA&pid=Api",
"url": "https://animalia-life.club/qa/pictures/butterfly-body-template-printable",
"height": 366,
"width": 474,
"source": "Bing"
},
{
"title": "Free Cute Butterfly Line Drawing, Download Free Cute Butterfly Line Drawing png images, Free ...",
"image": "https://clipart-library.com/images/pTqrGxqBc.jpg",
"thumbnail": "https://tse2.mm.bing.net/th?id=OIP.a6NJ8yU0JLXq_u-O3vrKnAHaGb&pid=Api",
"url": "https://clipart-library.com/cute-butterfly-line-drawing.html",
"height": 955,
"width": 1100,
"source": "Bing"
},
{
"title": "Butterfly clipart mandala, Picture #2330285 butterfly clipart mandala",
"image": "https://webstockreview.net/images/butterfly-clipart-mandala.jpg",
"thumbnail": "https://tse3.mm.bing.net/th?id=OIP.vwmJhVyZkppz30udViDN-wHaGa&pid=Api",
"url": "https://webstockreview.net/image/butterfly-clipart-mandala/2330285.html",
"height": 780,
"width": 900,
"source": "Bing"
},
{
"title": "Premium Vector | Simple black butterfly hand drawn silhouette vector separated on white background",
"image": "https://img.freepik.com/premium-vector/simple-black-butterfly-hand-drawn-silhouette-vector-separated-white-background_658052-169.jpg?w=2000",
"thumbnail": "https://tse2.mm.bing.net/th?id=OIP._kZh0IuITnMmtpi6fjXGkAHaHa&pid=Api",
"url": "https://www.freepik.com/premium-vector/simple-black-butterfly-hand-drawn-silhouette-vector-separated-white-background_33890316.htm",
"height": 2000,
"width": 2000,
"source": "Bing"
},
{
"title": "Printable butterfly Coloring Page - ColoringBay",
"image": "https://coloringbay.com/wp-content/uploads/printable-butterfly-coloring-page.jpg",
"thumbnail": "https://tse2.mm.bing.net/th?id=OIP.E_oze_IC-pXkgjggjzOSDgHaDy&pid=Api",
"url": "https://coloringbay.com/butterfly-coloring-pages/printable-butterfly-coloring-page",
"height": 1024,
"width": 2000,
"source": "Bing"
},
{
"title": "Butterfly Tracing Coloring Page - Free Printable Coloring Pages for Kids",
"image": "https://coloringonly.com/images/imgcolor/Butterfly-Tracing-coloring-page.jpg",
"thumbnail": "https://tse4.mm.bing.net/th?id=OIP.oVmymZCuB_GqPngTllF1sQHaIH&pid=Api",
"url": "https://coloringonly.com/pages/butterfly-tracing-coloring-page/",
"height": 876,
"width": 800,
"source": "Bing"
},
{
"title": "Urticaria illustration Black and White Stock Photos & Images - Alamy",
"image": "https://c8.alamy.com/comp/2RJ86D9/butterfly-2RJ86D9.jpg",
"thumbnail": "https://tse3.mm.bing.net/th?id=OIP.l2eR-lOoPYsHWixKX1zhxwHaH6&pid=Api",
"url": "https://www.alamy.com/stock-photo/urticaria-illustration.html?blackwhite=1&sortBy=relevant",
"height": 1390,
"width": 1300,
"source": "Bing"
},
{
"title": "Amazing Butterfly Coloring Page - Free Printable Coloring Pages for Kids",
"image": "https://coloringonly.com/images/imgcolor/Amazing-Butterfly-coloring-page.jpg",
"thumbnail": "https://tse1.mm.bing.net/th?id=OIP.j9ZgzdsY1GA8WApHtxsCjwHaFg&pid=Api",
"url": "https://coloringonly.com/pages/amazing-butterfly-coloring-page/",
"height": 718,
"width": 965,
"source": "Bing"
},
{
"title": "Happy Butterfly Coloring Page - Free Printable Coloring Pages for Kids",
"image": "https://coloringonly.com/images/imgcolor/Happy-Butterfly-coloring-page.jpg",
"thumbnail": "https://tse1.mm.bing.net/th?id=OIP.tAZAfbRKwjiJrT7ovmLvowHaFa&pid=Api",
"url": "https://coloringonly.com/pages/happy-butterfly-coloring-page/",
"height": 796,
"width": 1088,
"source": "Bing"
},
{
"title": "Butterfly Coloring Pages Language:en - Butterfly Coloring Pages Free Printable From Cute To ...",
"image": "https://static.vecteezy.com/system/resources/previews/000/216/043/original/butterfly-coloring-book-for-adult-vector.jpg",
"thumbnail": "https://tse4.mm.bing.net/th?id=OIP.mJKOiP_GulnOAqaqRvz7hQHaGe&pid=Api",
"url": "https://michaellatascon.blogspot.com/2021/07/butterfly-coloring-pages-languageen.html",
"height": 1400,
"width": 1600,
"source": "Bing"
},
{
"title": "Enfoque de mariposa hi-res stock photography and images - Alamy",
"image": "https://c8.alamy.com/comp/KRRBEH/butterfly-on-white-flowers-KRRBEH.jpg",
"thumbnail": "https://tse2.mm.bing.net/th?id=OIP.XW7FdEtI3sy6_tTOQ_kpDwHaFi&pid=Api",
"url": "https://www.alamy.com/stock-photo/enfoque-de-mariposa.html",
"height": 971,
"width": 1300,
"source": "Bing"
},
{
"title": "free butterfly worksheets preschool mom - life cycle of a butterfly worksheets for preschool by ...",
"image": "https://i1.wp.com/www.enchantedlearning.com/tracing/butterfly/butterfly.png",
"thumbnail": "https://tse1.mm.bing.net/th?id=OIP.2gdDEbvC0E3an07gle7nMwDbEc&pid=Api",
"url": "https://garzahugh.blogspot.com/2022/03/free-butterfly-worksheets-preschool-mom.html",
"height": 1649,
"width": 1275,
"source": "Bing"
},
{
"title": "Real Butterfly, Yellow Butterfly, Pink Butterfly, Butterfly Wings, Purple Butterfly, Butterfly ...",
"image": "https://icon-library.com/images/2018/11194388_butterfly-silhouette-portable-network-graphics-png-download.png",
"thumbnail": "https://tse4.mm.bing.net/th?id=OIP.kqpxE5Ql4OLeofNumrRKlwHaKO&pid=Api",
"url": "https://icon-library.com/png/1094120.html",
"height": 1216,
"width": 880,
"source": "Bing"
},
{
"title": "White Admiral Butterfly Coloring - Play Free Coloring Game Online",
"image": "https://coloringgames.net/images/imgcolor/Butterfly-is-Flying-coloring-page.jpg",
"thumbnail": "https://tse2.mm.bing.net/th?id=OIP.u_SCTBf40eBzR8_1xbE7CQHaH-&pid=Api",
"url": "https://coloringgames.net/image/white-admiral-butterfly-coloring-page/",
"height": 861,
"width": 800,
"source": "Bing"
},
{
"title": "Time Tattoos, Body Art Tattoos, Small Tattoos, Sleeve Tattoos, Simple Butterfly Tattoo ...",
"image": "https://i.pinimg.com/originals/4b/f6/58/4bf6585dea49755f3dd1cfbcdbc5f3ca.jpg",
"thumbnail": "https://tse3.mm.bing.net/th?id=OIP.0h3kIWZgXkVtwi15UYlH4QHaHT&pid=Api",
"url": "https://nl.pinterest.com/pin/514465957448402422/",
"height": 1003,
"width": 1018,
"source": "Bing"
},
{
"title": "Butterfly Drawing With Pencil",
"image": "https://www.drawingskill.com/wp-content/uploads/5/Pencil-Butterfly-Drawing-Pic.jpg",
"thumbnail": "https://tse3.mm.bing.net/th?id=OIP.0Va3boh3_7-b3pbQxD4UmwHaJQ&pid=Api",
"url": "https://mungfali.com/explore/Butterfly-Drawing-with-Pencil",
"height": 1500,
"width": 1200,
"source": "Bing"
},
{
"title": "Butterfly Outline Clipart Free Stock Photo - Public Domain Pictures",
"image": "https://www.publicdomainpictures.net/pictures/60000/velka/butterfly-outline-clipart.jpg",
"thumbnail": "https://tse2.mm.bing.net/th?id=OIP.0-lYc_K0z4XM3Ra_4WyafgHaHa&pid=Api",
"url": "https://www.publicdomainpictures.net/en/view-image.php?image=50564&picture=butterfly-outline-clipart",
"height": 1920,
"width": 1920,
"source": "Bing"
},
{
"title": "50 Butterfly Coloring Pages: Free Printable Sheets",
"image": "https://momlovesbest.com/wp-content/uploads/2023/06/butterfly-coloring-pages-5.webp",
"thumbnail": "https://tse1.mm.bing.net/th?id=OIP.GlL2hR_ihI620hsuRK6lBQHaJo&pid=Api",
"url": "https://momlovesbest.com/butterfly-coloring-pages",
"height": 1248,
"width": 960,
"source": "Bing"
},
{
"title": "Free Ornate Butterfly Vector Template - Edit Online & Download | Template.net",
"image": "https://images.template.net/225346/free-ornate-butterfly-vector-edit-online-1.jpg",
"thumbnail": "https://tse1.mm.bing.net/th?id=OIP.9IisSPNFVVUdNyX7wZQyXAHaHa&pid=Api",
"url": "https://www.template.net/edit-online/225346/ornate-butterfly-vector",
"height": 1200,
"width": 1200,
"source": "Bing"
},
{
"title": "Butterfly Coloring Pictures #34",
"image": "http://www.butterflypictures.net/images/34-butterfly-picture-l.gif",
"thumbnail": "https://tse4.mm.bing.net/th?id=OIP.VUA5Cn3d3DxHrI97TnaX2AHaGp&pid=Api",
"url": "http://www.butterflypictures.net/34-butterfly-picture.html",
"height": 629,
"width": 700,
"source": "Bing"
},
{
"title": "Black Butterfly Free Stock Photo - Public Domain Pictures",
"image": "https://www.publicdomainpictures.net/pictures/210000/velka/black-butterfly-1483721022fdy.jpg",
"thumbnail": "https://tse2.mm.bing.net/th?id=OIP.XNM8J5grf7j9ZdA2JZOpswHaHa&pid=Api",
"url": "https://www.publicdomainpictures.net/en/view-image.php?image=202495&picture=black-butterfly",
"height": 1920,
"width": 1920,
"source": "Bing"
},
{
"title": "Butterfly Coloring Pages - 10 Exquisite Illustrations",
"image": "https://littlesproutlearning.com/wp-content/uploads/2022/03/Coloring-Page-Butterfly-10-scaled.jpg",
"thumbnail": "https://tse3.mm.bing.net/th?id=OIP.kjnxlO52rrk32-mUgoC7ngHaJl&pid=Api",
"url": "https://littlesproutlearning.com/butterfly-coloring-pages/",
"height": 2560,
"width": 1978,
"source": "Bing"
},
{
"title": "Monarch butterfly silhouettes collection isolated Vector Image",
"image": "https://cdn5.vectorstock.com/i/1000x1000/17/74/monarch-butterfly-silhouettes-collection-isolated-vector-46331774.jpg",
"thumbnail": "https://tse4.mm.bing.net/th?id=OIP.nH8FVBcs5yOOkDPtUE1tZgHaE0&pid=Api",
"url": "https://www.vectorstock.com/royalty-free-vector/monarch-butterfly-silhouettes-collection-isolated-vector-46331774",
"height": 651,
"width": 1000,
"source": "Bing"
},
{
"title": "cineplexx - Clip Art Library",
"image": "https://clipart-library.com/newhp/45-458843_black-and-white-butterfly-clip-art-butterfly-images.png",
"thumbnail": "https://tse4.mm.bing.net/th?id=OIP.UA9K4ii_SLDf1cSvk5ya9gHaEH&pid=Api",
"url": "https://clipart-library.com/clipart/butterfly-clipart-black-and-white_10.htm",
"height": 490,
"width": 880,
"source": "Bing"
},
{
"title": "Black Butterfly Silhouette PNG Free, Butterfly Design Black And White, Butterfly Drawing, Sign ...",
"image": "https://png.pngtree.com/png-vector/20220513/ourlarge/pngtree-butterfly-design-black-and-white-png-image_4588455.png",
"thumbnail": "https://tse4.mm.bing.net/th?id=OIP.NcxNpF2O4cL0DubFKPnuRAHaGN&pid=Api",
"url": "https://pngtree.com/freepng/butterfly-design-black-and-white_7751689.html",
"height": 640,
"width": 764,
"source": "Bing"
},
{
"title": "Hand-Drawn Butterfly Clipart - Edit Online | Template.net",
"image": "https://images.template.net/433699/Hand-Drawn-Butterfly-Clipart-edit-online.png",
"thumbnail": "https://tse2.mm.bing.net/th?id=OIP.va8bBg0BFw72NDkLCjRpJgHaHa&pid=Api",
"url": "https://www.template.net/edit-online/433699/hand-drawn-butterfly-clipart",
"height": 1200,
"width": 1200,
"source": "Bing"
},
{
"title": "Illustration Butterfly Art Logo Tattoo Vector, Butterfly, Butterfly Logo, Butterfly Tattoo PNG ...",
"image": "https://png.pngtree.com/png-clipart/20230509/original/pngtree-illustration-butterfly-art-logo-tattoo-png-image_9153704.png",
"thumbnail": "https://tse3.mm.bing.net/th?id=OIP.m14g8zdp6SNpBSqWtue9kAHaHa&pid=Api",
"url": "https://pngtree.com/freepng/illustration-butterfly-art-logo-tattoo-vector_9153704.html",
"height": 1200,
"width": 1200,
"source": "Bing"
},
{
"title": "Butterfly Clipart Free Stock Photo - Public Domain Pictures",
"image": "https://www.publicdomainpictures.net/pictures/100000/velka/butterfly-clipart.jpg",
"thumbnail": "https://tse1.mm.bing.net/th?id=OIP.yWkHUv8h-n_9AirYkllEgAHaHa&pid=Api",
"url": "https://www.publicdomainpictures.net/en/view-image.php?image=95313&picture=butterfly-clipart",
"height": 1920,
"width": 1920,
"source": "Bing"
},
{
"title": "Migratory Monarch Butterfly Coloring Page",
"image": "https://coloringus.com/gallery/pages/migratory-monarch-butterfly.jpg",
"thumbnail": "https://tse4.mm.bing.net/th?id=OIP.IqFxEIbVs9cN5RVNlGGZ-QHaJh&pid=Api",
"url": "https://coloringus.com/post/migratory-monarch-butterfly",
"height": 900,
"width": 700,
"source": "Bing"
},
{
"title": "Butterfly Silhouette Tattoo",
"image": "https://cdn5.vectorstock.com/i/1000x1000/87/54/flying-butterflies-black-icons-tattoo-stencil-vector-45708754.jpg",
"thumbnail": "https://tse3.mm.bing.net/th?id=OIP.1U_HM6_B7T0xkCogxqQGBwHaGV&pid=Api",
"url": "https://animalia-life.club/qa/pictures/butterfly-silhouette-tattoo",
"height": 856,
"width": 1000,
"source": "Bing"
},
{
"title": "New York at Spring Break - Per l'amore di farfalle",
"image": "https://perlamoredifarfalle.files.wordpress.com/2017/05/butterfly-black-and-white.jpg",
"thumbnail": "https://tse3.mm.bing.net/th?id=OIP.aMPrKHRB1t8T_Gt8zvye3AD6D6&pid=Api",
"url": "https://perlamoredifarfalle.wordpress.com/2018/04/18/new-york-at-spring-break/",
"height": 1000,
"width": 1000,
"source": "Bing"
},
{
"title": "Butterfly With Flower Clipart Patterns",
"image": "https://masterbundles.com/wp-content/uploads/edd/2022/09/02.-half-butterfly-half-flower-svg-bundle-1100-x-1100.png",
"thumbnail": "https://tse3.mm.bing.net/th?id=OIP.esr-8FzSN7vdB8SwsZZl5wHaHY&pid=Api",
"url": "https://animalia-life.club/qa/pictures/butterfly-with-flower-clipart-patterns",
"height": 1096,
"width": 1100,
"source": "Bing"
},
{
"title": "Butterfly Coloring Pages (Free Printable PDF)",
"image": "https://coloringus.com/gallery/pages/painted-lady.jpg",
"thumbnail": "https://tse4.mm.bing.net/th?id=OIP.xNOZ3RJSyLZQrU4zFVFCugHaHa&pid=Api",
"url": "https://coloringus.com/butterfly-coloring-pages",
"height": 1080,
"width": 1080,
"source": "Bing"
},
{
"title": "Free Black And White Butterfly, Download Free Black And White Butterfly png images, Free ...",
"image": "http://clipart-library.com/images/yikKKk4BT.png",
"thumbnail": "https://tse2.mm.bing.net/th?id=OIP.mIVpg7BhJa18Sq0INCSeiAHaG5&pid=Api",
"url": "http://clipart-library.com/black-and-white-butterfly.html",
"height": 2381,
"width": 2555,
"source": "Bing"
},
{
"title": "Peacock beauty Black and White Stock Photos & Images - Alamy",
"image": "https://c8.alamy.com/comp/2RJ81RH/peacock-butterfly-2RJ81RH.jpg",
"thumbnail": "https://tse1.mm.bing.net/th?id=OIP.rTa0fHB30W5Ppwwpm-JScAHaH6&pid=Api",
"url": "https://www.alamy.com/stock-photo/peacock-beauty.html?blackwhite=1&sortBy=relevant",
"height": 1390,
"width": 1300,
"source": "Bing"
},
{
"title": "Butterfly Outline",
"image": "https://colormadehappy.com/wp-content/uploads/2022/09/Butterfly-Outline-4.jpg",
"thumbnail": "https://tse4.mm.bing.net/th?id=OIP.rPypw7Rs5KKOwo9mNKub1QHaJl&pid=Api",
"url": "https://animalia-life.club/qa/pictures/butterfly-outline",
"height": 792,
"width": 612,
"source": "Bing"
},
{
"title": "Butterfly Coloring Pages (Free Printable PDF)",
"image": "https://coloringus.com/gallery/pages/red-admiral-butterfly-coloring-page.jpg",
"thumbnail": "https://tse3.mm.bing.net/th?id=OIP.BaN3e4XIQPdQRo1d2dS-wAHaHa&pid=Api",
"url": "https://coloringus.com/butterfly-coloring-pages",
"height": 1080,
"width": 1080,
"source": "Bing"
}
]
4.4 输入文本-检索相关视频
results = DDGS().videos(
keywords="cars",
region="wt-wt",
safesearch="off",
timelimit="w",
resolution="high",
duration="medium",
max_results=100,
)
print(json.dumps(results, indent=2))
[
{
"content": "https://www.youtube.com/watch?v=KPuPi1oNm7A",
"description": "\ud83d\ude97 Top 12 Best & Most Stunning Cars You Must See! \ud83d\ude97\ud83d\udd25 Are you ready to explore the 12 most beautiful and high-performance cars of the year? In this video, we showcase the best cars that combine style, speed, and cutting-edge technology. Whether you love luxury sedans, powerful sports cars, or innovative electric vehicles, we've got ...",
"duration": "11:12",
"embed_html": "<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/KPuPi1oNm7A?autoplay=1\" frameborder=\"0\" allowfullscreen></iframe>",
"embed_url": "https://www.youtube.com/embed/KPuPi1oNm7A?autoplay=1",
"image_token": "1541f9a5b90ae80cebd78f8f3607963f99cc556592513302f42ce9ff62ec7497",
"images": {
"large": "https://tse2.mm.bing.net/th?id=OVF.Ejxb%2fzR0W0ijrpe9HD28gA&pid=Api",
"medium": "https://tse2.mm.bing.net/th?id=OVF.Ejxb%2fzR0W0ijrpe9HD28gA&pid=Api",
"motion": "",
"small": "https://tse2.mm.bing.net/th?id=OVF.Ejxb%2fzR0W0ijrpe9HD28gA&pid=Api"
},
"provider": "Bing",
"published": "2025-02-11T09:05:07.0000000",
"publisher": "YouTube",
"statistics": {
"viewCount": 1
},
"title": "Top 12 Amazing Cars That Redefine Style & Power!",
"uploader": "Car Experts Vlog"
},
{
"content": "https://www.youtube.com/watch?v=5i_vq2r05yk",
"description": "Welcome to World's Best Car, the ultimate automotive hub for all car enthusiasts! Whether you're a die-hard fan of luxury vehicles, a lover of cutting-edge technology, or someone who enjoys the thrill of powerful performance, this channel is your one-stop destination for everything related to the best cars in the world. If you've ever dreamed ...",
"duration": "5:05",
"embed_html": "<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/5i_vq2r05yk?autoplay=1\" frameborder=\"0\" allowfullscreen></iframe>",
"embed_url": "https://www.youtube.com/embed/5i_vq2r05yk?autoplay=1",
"image_token": "d4657973df327c051ab953879a1470a4644a3ace5e5eb269321e8964f2902e3c",
"images": {
"large": "https://tse3.mm.bing.net/th?id=OVF.eTcmZNQMvAxkCpQK1tOQAw&pid=Api",
"medium": "https://tse3.mm.bing.net/th?id=OVF.eTcmZNQMvAxkCpQK1tOQAw&pid=Api",
"motion": "",
"small": "https://tse3.mm.bing.net/th?id=OVF.eTcmZNQMvAxkCpQK1tOQAw&pid=Api"
},
"provider": "Bing",
"published": "2025-02-12T10:00:05.0000000",
"publisher": "YouTube",
"statistics": {
"viewCount": null
},
"title": "World Best Cars: The Future of Automobiles (2025 & 2026)",
"uploader": "world best cars"
},
{
"content": "https://www.youtube.com/watch?v=Dwa2kMcVde8",
"description": "The Most Iconic Cars of All Time - Timeless Automotive Legends! Sponsor: https://www.glowneo.com | Save 20% on your first order with code: Youtube Did you ever wonder what makes a car truly iconic? Is it speed, design, history, or its legendary impact on car culture? In this video, we're counting down The Most Iconic Cars of All Time ...",
"duration": "9:24",
"embed_html": "<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/Dwa2kMcVde8?autoplay=1\" frameborder=\"0\" allowfullscreen></iframe>",
"embed_url": "https://www.youtube.com/embed/Dwa2kMcVde8?autoplay=1",
"image_token": "d9a82414a7125fd68ab6bcae2057d0f97b5ec54c89499e48fc860c731d725acd",
"images": {
"large": "https://tse2.mm.bing.net/th?id=OVF.AJN5lx6AxVUXPngH0OkFxA&pid=Api",
"medium": "https://tse2.mm.bing.net/th?id=OVF.AJN5lx6AxVUXPngH0OkFxA&pid=Api",
"motion": "",
"small": "https://tse2.mm.bing.net/th?id=OVF.AJN5lx6AxVUXPngH0OkFxA&pid=Api"
},
"provider": "Bing",
"published": "2025-02-11T15:09:29.0000000",
"publisher": "YouTube",
"statistics": {
"viewCount": 9
},
"title": "The Most Iconic Cars of All Time - Timeless Automotive Legends!",
"uploader": "CarTops"
},
{
"content": "https://www.youtube.com/watch?v=yhJ2LoDkYXM",
"description": "\ud83d\ude97 Which car is truly the BEST? Supercars, luxury sedans, electric beasts, and off-road monsters\u2014each one claims to be the king of the road! But today, they get to speak for themselves! \ud83d\udca5 In this epic car showdown, we let 30 legendary cars battle it out, boasting about their power, speed, and cutting-edge features. From the roaring ...",
"duration": "12:11",
"embed_html": "<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/yhJ2LoDkYXM?autoplay=1\" frameborder=\"0\" allowfullscreen></iframe>",
"embed_url": "https://www.youtube.com/embed/yhJ2LoDkYXM?autoplay=1",
"image_token": "7b98c8d97d96ab6535a54aae1fd00d48e4ccdb330d84460d873867db6e8c7d31",
"images": {
"large": "https://tse3.mm.bing.net/th?id=OVF.6IJnRsNSYfv0sCTHkjUg%2bg&pid=Api",
"medium": "https://tse3.mm.bing.net/th?id=OVF.6IJnRsNSYfv0sCTHkjUg%2bg&pid=Api",
"motion": "",
"small": "https://tse3.mm.bing.net/th?id=OVF.6IJnRsNSYfv0sCTHkjUg%2bg&pid=Api"
},
"provider": "Bing",
"published": "2025-02-14T16:15:08.0000000",
"publisher": "YouTube",
"statistics": {
"viewCount": null
},
"title": "Cars Praise Themselves! | A Conversation About Legendary Cars",
"uploader": "AutoEpics"
},
{
"content": "https://www.youtube.com/watch?v=OO7bvrDWzqc",
"description": "7 Cars That Will NEVER Die (All UNDER $5k!) | DEALERS DON'T Want You To See This! Are you tired of constantly worrying about car repairs, expensive maintenance, and the high costs of new cars? In this video, we reveal 7 reliable, durable cars that have earned a reputation for outlasting the competition\u2014and the best part? You can snag them for ...",
"duration": "18:02",
"embed_html": "<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/OO7bvrDWzqc?autoplay=1\" frameborder=\"0\" allowfullscreen></iframe>",
"embed_url": "https://www.youtube.com/embed/OO7bvrDWzqc?autoplay=1",
"image_token": "a9f34117ccdd7ca30fde12abe379eeaab13b3c70a2edb106aecab4f1a0e6755a",
"images": {
"large": "https://tse1.mm.bing.net/th?id=OVF.tSoO9aKgOypF%2fb2XWvwXPA&pid=Api",
"medium": "https://tse1.mm.bing.net/th?id=OVF.tSoO9aKgOypF%2fb2XWvwXPA&pid=Api",
"motion": "",
"small": "https://tse1.mm.bing.net/th?id=OVF.tSoO9aKgOypF%2fb2XWvwXPA&pid=Api"
},
"provider": "Bing",
"published": "2025-02-11T12:59:32.0000000",
"publisher": "YouTube",
"statistics": {
"viewCount": null
},
"title": "7 Cars That Will NEVER Die (All UNDER $5k!) | DEALERS DON'T Want You To See This!",
"uploader": "Globally Cars"
},
{
"content": "https://www.youtube.com/watch?v=A-sEAFndEFg",
"description": "7 Cheap Cars That Run FOREVER! (Dealers Don't Want You to Know This!) \"Discover 7 affordable cars that can last forever. These vehicles are known for their incredible reliability, low maintenance costs, and ability to travel hundreds of thousands of miles without any problems. From sedans to SUVs, these models have proven to be a smart ...",
"duration": "19:18",
"embed_html": "<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/A-sEAFndEFg?autoplay=1\" frameborder=\"0\" allowfullscreen></iframe>",
"embed_url": "https://www.youtube.com/embed/A-sEAFndEFg?autoplay=1",
"image_token": "c0388c61860638a294b631035e05aec8b11687d4a059dc5066bfae3190126d54",
"images": {
"large": "https://tse3.mm.bing.net/th?id=OVF.GaNrhJ6o2sXoiff1jQxtLw&pid=Api",
"medium": "https://tse3.mm.bing.net/th?id=OVF.GaNrhJ6o2sXoiff1jQxtLw&pid=Api",
"motion": "",
"small": "https://tse3.mm.bing.net/th?id=OVF.GaNrhJ6o2sXoiff1jQxtLw&pid=Api"
},
"provider": "Bing",
"published": "2025-02-12T01:52:20.0000000",
"publisher": "YouTube",
"statistics": {
"viewCount": null
},
"title": "7 Cheap Cars That Run FOREVER! (Dealers Don't Want You to Know This!)",
"uploader": "Auto Insights"
}
]
4.5 输入文本-检索相关新闻
results = DDGS().news(
keywords="Kobe crash",
region="wt-wt",
safesearch="off",
timelimit="m",
max_results=20,
)
print(json.dumps(results, indent=2))
[
{
"date": "2025-01-26T10:08:00+00:00",
"title": "Kobe Bryant's legacy continues to grow after death: A look five years later",
"body": "Kobe Bryant may be gone, but his \"Mamba Mentality\" lives on. Five years after his death, Bryant's legacy continues to grow and inspire.",
"url": "https://www.usatoday.com/story/sports/nba/2025/01/26/kobe-bryant-legacy-grows-five-years-after-helicopter-crash/77948192007/",
"image": "",
"source": "USA Today"
},
{
"date": "2025-01-24T11:00:00+00:00",
"title": "Video shows rarely seen side of Kobe Bryant, sparks special memories of those who knew him",
"body": "Kobe Bryant's passion for his beloved Eagles brings back memories on a date Philadelphia also battles Washington for the NFC title and another Super Bowl trip.",
"url": "https://www.latimes.com/sports/lakers/story/2025-01-24/kobe-bryant-eagles-fan-nfc-championship-helicopter-crash-anniversary",
"image": "",
"source": "Los Angeles Times"
},
{
"date": "2025-01-26T12:00:00+00:00",
"title": "Kobe remembrances: Readers share thoughts of that tragic day",
"body": "People share where they were when they heard that Kobe Bryant had been killed in a helicopter crash and the impact of his life on theirs.",
"url": "https://www.latimes.com/sports/lakers/story/2025-01-26/kobe-remembrances-la-times-readers-share-thoughts-tragic-day",
"image": "",
"source": "Los Angeles Times"
},
{
"date": "2025-01-26T21:09:34+00:00",
"title": "Kobe Bryant tributes: Basketball world remembers NBA star five years after his death",
"body": "Social media was filled with photographs, memories and stories of Hall of Famer Kobe Bryant as people looked back at his life and career.",
"url": "https://www.msn.com/en-us/sports/nba/kobe-bryant-tributes-basketball-world-remembers-nba-star-five-years-after-his-death/ar-AA1xU1PO",
"image": "",
"source": "USA TODAY Sports on MSN.com"
},
{
"date": "2025-01-26T00:01:00+00:00",
"title": "Kobe Bryant's death, explained: What to know about 2020 helicopter crash that killed NBA legend, daughter Gianna and 7 others",
"body": "It has been five years since the fatal helicopter crash that killed Hall of Famer Kobe Bryant, his daughter, Gianna, and the other seven passengers on board. In the immediate aftermath ...",
"url": "https://www.sportingnews.com/us/nba/los-angeles-lakers/news/kobe-bryant-death-explained-2020-helicopter-crash/c494ea4dce160402522c6744",
"image": "",
"source": "Sporting News"
},
{
"date": "2025-02-07T22:09:00+00:00",
"title": "No, US Army Black Hawk helicopter not the same model as chopper in Kobe Bryant's crash",
"body": "The Sikorsky UH-60 \"Black Hawk\" is far from a luxury aircraft. Unlike the sleekly designed S-76B, the Black Hawk is rugged and multifunctional. The U.S. Army has used the Black Hawk in its fleet for 47 years.",
"url": "https://www.politifact.com/factchecks/2025/feb/07/instagram-posts/no-us-army-black-hawk-helicopter-not-the-same-mode/",
"image": "",
"source": "Politifact"
},
{
"date": "2025-01-26T00:01:00+00:00",
"title": "Remembering Kobe and Gianna Bryant: Five Years Since the Tragic Crash | WATCH",
"body": "To honor their bond and shared love for basketball, a statue depicting both Kobe and Gianna was erected at the crash site, serving as a lasting reminder of their enduring spirits. Furthermore ...",
"url": "https://eurweb.com/2025/5-years-ago-kobe-bryant-gianna-and-7-others-died-in-a-crash/",
"image": "",
"source": "EURweb"
},
{
"date": "2025-01-26T15:00:00+00:00",
"title": "Remembering Kobe and Gianna Bryant on the 5th Anniversary of Their Deaths",
"body": "Looking back on Kobe and Gianna Bryant's lives and legacies before they were tragically killed in a helicopter crash on January 26, 2020 in California.",
"url": "https://people.com/remembering-kobe-and-gianna-bryant-on-the-5th-anniversary-of-their-deaths-8779979",
"image": "",
"source": "People"
},
{
"date": "2025-01-26T12:11:00+00:00",
"title": "Kobe Bryant's tragic death five years on: How America reacted to fatal helicopter crash that killed NBA icon and daughter",
"body": "As news of Kobe Bryant's death disseminated on this day ... A day later, Bryant was among nine killed in a helicopter crash in Calabasas, California, with his 13-year-old daughter Gianna also ...",
"url": "https://www.dailymail.co.uk/sport/nba/article-14326051/Kobe-Bryant-death-five-years-fatal-helicopter-crash-Gigi.html",
"image": "",
"source": "Daily Mail"
},
{
"date": "2025-01-26T11:02:00+00:00",
"title": "Minute-by-minute breakdown of Kobe Bryant's tragic death 5 years after helicopter crash from pilot error to sick photos",
"body": "This is the minute-by-minute breakdown of the crash that left Kobe and his daughter Gianna dead - and the world reeling. 9.06am PT - Sunday, January 26, 2020 The Sikorsky S-76B helicopter takes ...",
"url": "https://www.thesun.co.uk/news/32829513/kobe-bryant-death-helicopter-crash/",
"image": "",
"source": "The Sun"
},
{
"date": "2025-01-24T23:08:00+00:00",
"title": "Kobe Bryant's Close Friends Recall Painful Emotions After His 2020 Death in New Docuseries: 'I Cried All Day, All Night'",
"body": "Kobe Bryant's close friends recalled the painful emotions after learning he and Gianna Bryant died in 2020 in CNN's new documentary series, 'Kobe: The Making of a Legend.'",
"url": "https://people.com/kobe-bryant-s-close-friends-recall-painful-emotions-after-his-2020-death-in-new-documentary-i-cried-all-day-all-night-8780073",
"image": "",
"source": "People"
},
{
"date": "2025-01-26T00:01:00+00:00",
"title": "Kobe Bryant death anniversary: Lakers, WNBA, sports world remember NBA icon five years after his tragic passing",
"body": "On Jan. 26, 2020, Kobe Bryant, his 13-year-old daughter Gianna and seven others died in a tragic helicopter crash outside of Los Angeles. Five years without Kobe and Gigi \ud83d\udc94 pic.twitter.com ...",
"url": "https://sports.yahoo.com/kobe-bryant-death-anniversary-lakers-wnba-sports-world-remember-nba-icon-five-years-after-his-tragic-passing-202619662.html",
"image": "",
"source": "Yahoo! Sports"
},
{
"date": "2025-02-08T21:00:00+00:00",
"title": "Kobe sneakers from torn Achilles game sell for $660,000",
"body": "The shoes that basketball legend Kobe Bryant wore when he tore his Achilles tendon during an iconic 2013 game have sold at auction for $660,000 (\u00a3532,000). Playing for the Los Angeles Lakers, Bryant stayed in the game against the Golden State Warriors to score two clutch free throws despite the crippling injury.",
"url": "https://www.msn.com/en-xl/news/other/kobe-bryant-sneakers-from-torn-achilles-game-sell-for-660000/ar-AA1yF6WO",
"image": "https://media.zenfs.com/en/aol_bbc_articles_618/f13dc937508646508a503fdf65d36daf",
"source": "BBC on MSN.com"
},
{
"date": "2025-01-27T05:51:14+00:00",
"title": "Shaquille O'Neal's poignant message on Kobe Bryant's fifth death anniversary",
"body": "January 26, 2025, is the fifth anniversary of the helicopter crash in Calabasas, California, that claimed the lives of Kobe Bryant, his 13-year-old daughter Gianna, and seven others when Kobe was only 41 years old.",
"url": "https://www.msn.com/en-us/sports/nba/shaquille-o-neal-s-poignant-message-on-kobe-bryant-s-fifth-death-anniversary/ar-AA1xVbp9",
"image": "",
"source": "ClutchPoints on MSN.com"
},
{
"date": "2025-01-26T00:01:00+00:00",
"title": "Kobe Bryant Still Reigns Over Los Angeles on Hundreds of Murals",
"body": "By Emmanuel Morgan and Matt Stevens Emmanuel Morgan, who covered Kobe Bryant's death in 2020 ... who died in a helicopter crash five years ago alongside Gianna and seven other people.",
"url": "https://www.nytimes.com/2025/01/26/arts/design/kobe-bryant-murals-los-angeles.html",
"image": "",
"source": "The New York Times"
},
{
"date": "2025-01-27T21:40:00+00:00",
"title": "Vanessa Bryant announces Kobe and Gianna mural book right before 5-year anniversary of helicopter crash",
"body": "A Costa Mesa mural by New York street artist Andaluz shows the images of Kobe and Gianna Bryant and seven others who died in a helicopter crash on Jan. 26, 2020. Part of the painting is being used ...",
"url": "https://www.yahoo.com/entertainment/vanessa-bryant-announces-kobe-gianna-214015684.html",
"image": "",
"source": "Yahoo"
},
{
"date": "2025-01-30T20:14:00+00:00",
"title": "Kobe Bryant, Roberto Clemente among sports figures who died in aircraft crashes",
"body": "Tragedy is no stranger to the sports world as fans have mourned the deaths of many players and coaches in plane and helicopter crashes over the years.",
"url": "https://www.aol.com/kobe-bryant-roberto-clemente-among-181512828.html",
"image": "https://s.yimg.com/ny/api/res/1.2/tIqpk3ugof00QpNTX5VYHw--/YXBwaWQ9aGlnaGxhbmRlcjt3PTEyMDA7aD04NDM-/https://media.zenfs.com/en/usa_today_sports_articles_558/ce0f42e3721c3c41b3f4c93799128bdd",
"source": "AOL"
},
{
"date": "2025-01-25T00:43:00+00:00",
"title": "Kobe Bryant highlights, quotes: Remembering Lakers legend's top moments",
"body": "Bryant stepped off the court in a Lakers jersey for the final time the following year. He scored 60 points in his finale and finished his career with 33,643 points. He ranks fourth all-time in scoring, behind LeBron James (41,396), Kareem Abdul-Jabbar (38,387) and Karl Malone (36,928).",
"url": "https://www.azcentral.com/story/sports/nba/lakers/2025/01/24/kobe-bryant-highlights-quotes/77937858007/",
"image": "https://www.azcentral.com/gcdn/authoring/authoring-images/2025/01/24/USAT/77938184007-usatsi-9106774-168414768-lowres.jpg?crop=1621,912,x0,y93&width=1621&height=912&format=pjpg&auto=webp",
"source": "AZ Central"
},
{
"date": "2025-01-25T00:00:00+00:00",
"title": "Kobe Bryant's death anniversary: What we know about the helicopter crash that killed the NBA star",
"body": "The crash was not just a personal loss for the Bryant ... Gianna Bryant, affectionately known as Gigi, was Kobe's second-oldest daughter and a budding basketball prodigy. At just 13 years old ...",
"url": "https://www.marca.com/en/basketball/nba/los-angeles-lakers/2025/01/25/6794ef8822601d03358b45a2.html",
"image": "",
"source": "MARCA"
},
{
"date": "2025-01-27T00:00:00+00:00",
"title": "Lakers legend Kobe Bryant: Remembrances and reaction",
"body": "Los Angeles Lakerslegend Kobe Bryant died Jan. 26, 2020 at age 41. Bryant and his 13-year-old daughter, Gianna, were among nine people killed in a helicopter crash in Calabasas, California.",
"url": "https://abc7news.com/post/lakers-legend-kobe-bryant-remembrances-reaction/5881021/",
"image": "",
"source": "ABC7 San Francisco"
}
]