All Projects β†’ dirkschumacher β†’ duckduckr

dirkschumacher / duckduckr

Licence: other
πŸ¦†πŸ¦†πŸšΆ DuckDuckGo's Instant Answer API for R

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to duckduckr

duckduckgo-template-helpers
Template helpers used by DuckDuckGo
Stars: ✭ 13 (-70.45%)
Mutual labels:  duckduckgo, duckduckhack
hohser
Highlight or Hide Search Engine Results
Stars: ✭ 89 (+102.27%)
Mutual labels:  duckduckgo
Chrome Zeroclickinfo
Chrome Extension using the DuckDuckGo Zero-click Info API
Stars: ✭ 72 (+63.64%)
Mutual labels:  duckduckgo
Pywalfox
Dynamic theming of Firefox (and Thunderbird) using your Pywal colors
Stars: ✭ 219 (+397.73%)
Mutual labels:  duckduckgo
D4n155
OWASP D4N155 - Intelligent and dynamic wordlist using OSINT
Stars: ✭ 105 (+138.64%)
Mutual labels:  duckduckgo
labyrinth
[DEPRICATED] Labyrinth is a anti-censorship Web Browser created to bypass DPI, Blocklists, Port Filtering, Firewalls and DNS censorship all in one
Stars: ✭ 17 (-61.36%)
Mutual labels:  duckduckgo
Duckduckgo Images Api
DuckDuckGo Image Search Resuts - Programatically download Image Search Results
Stars: ✭ 48 (+9.09%)
Mutual labels:  duckduckgo
privacy-essentials-safari
Privacy Essentials Extension for Safari
Stars: ✭ 55 (+25%)
Mutual labels:  duckduckgo
duckduckgo-styles
Common styling elements for all DuckDuckGo properties
Stars: ✭ 38 (-13.64%)
Mutual labels:  duckduckgo
Sitedorks
Search Google/Bing/Ecosia/DuckDuckGo/Yandex/Yahoo for a search term with a default set of websites, bug bounty programs or a custom collection.
Stars: ✭ 221 (+402.27%)
Mutual labels:  duckduckgo
Solarized Everything Css
A collection of Solarized user-stylesheets for...everything?
Stars: ✭ 219 (+397.73%)
Mutual labels:  duckduckgo
Duckduckgo
DuckDuckGo Instant Answer Infrastructure
Stars: ✭ 1,645 (+3638.64%)
Mutual labels:  duckduckgo
duckpy
A simple Python library for searching on DuckDuckGo.
Stars: ✭ 20 (-54.55%)
Mutual labels:  duckduckgo
Zeroclickinfo Longtail
DuckDuckGo Instant Answers based on full-text data
Stars: ✭ 82 (+86.36%)
Mutual labels:  duckduckgo
safe-search
Sets the built-in adult content filter (most often: safe search) on Google, YouTube, Bing, Yahoo, DuckDuckGo, Startpage, Dogpile, Yandex, Vimeo, Reddit, Ecosia, Dailymotion, Qwant, and Patreon.
Stars: ✭ 16 (-63.64%)
Mutual labels:  duckduckgo
Duckduckhack Docs
DuckDuckHack Instant Answer documentation for developers
Stars: ✭ 66 (+50%)
Mutual labels:  duckduckgo
omnibang
Browser extension for searching many sites directly from address bar using bangs provided by DuckDuckGo.
Stars: ✭ 31 (-29.55%)
Mutual labels:  duckduckgo
lantern-theme
Brown-Orange colour theme, and userCSS styles for different websites and services.
Stars: ✭ 23 (-47.73%)
Mutual labels:  duckduckgo
Ddgr
πŸ¦† DuckDuckGo from the terminal
Stars: ✭ 2,243 (+4997.73%)
Mutual labels:  duckduckgo
duckduckhack.com
This repo contains the static content used to build DuckDuckHack.com
Stars: ✭ 27 (-38.64%)
Mutual labels:  duckduckgo

CRAN_Status_Badge Build Status AppVeyor Build Status Coverage Status

DuckDuckR

This is a simple R client for DuckDuckGo's Instant Answer API.

Install

From CRAN

install.packages("duckduckr")

Latest development version

devtools::install_github("dirkschumacher/duckduckr")

Use

library(duckduckr)
res <- duckduck_answer("ggplot")

# meta data of the call is part of the attributes
stopifnot(attr(res, "status") == "OK")

# the original http call
attr(res, "source")
#> [1] "https://api.duckduckgo.com/?q=ggplot&no_redirect=0&no_html=0&format=json&skip_disambig=0&t=duckduckr"
res$Abstract
ggplot2 is a data visualization package for the statistical programming language R. Created by Hadley Wickham in 2005, ggplot2 is an implementation of Leland Wilkinson's Grammar of Graphicsβ€”a general scheme for data visualization which breaks up graphs into semantic components such as scales and layers. ggplot2 can serve as a replacement for the base graphics in R and contains a number of defaults for web and print display of common scales. Since 2005, ggplot2 has grown in use to become one of the most popular R packages. It is licensed under GNU GPL v2.
 

Contributing

If you found a bug or want to propose a feature, feel free to visit the issues page.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].