Skip to content

0.0.1 - ask the duck

Latest
Compare
Choose a tag to compare
@JarbasAl JarbasAl released this 28 Apr 13:15
· 3 commits to master since this release

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"))