Skip to content

Releases: HelloChatterbox/ask-the-duck

0.0.1 - ask the duck

28 Apr 13:15
Compare
Choose a tag to compare

Ask the Duck

python library to interact with DuckDuckGo api

  • natural language queries
  • language support via automatic translation
  • infobox parsing

Install

pip install ask-the-duck

Usage

from ask_the_duck import DDG

# ddg api
ddg = DDG()
print(ddg.get_infobox("stephen hawking"))
print(ddg.search("light speed"))

# natural language api
print(ddg.ask_the_duck("tell me about Isaac Newton"))

# language support
ddg = DDG("pt")
print(ddg.ask_the_duck("elon musk"))