17+ results for 'api.duckduckgo.com' (0 ms)

Not the results you expected?

duckduck.go (git://github.com/ajanicij/goduckgo.git) Go · 183 lines

15 )

16

17 var baseUrl = "https://api.duckduckgo.com/?q=%s&format=json&pretty=1%s"

18

19 // Message is a structure containing all the information returned by

duckduckgo_definitions.py (https://gitlab.com/lanodan/searx.git) Python · 149 lines

5 from searx.engines.xpath import extract_text

6

7 url = 'https://api.duckduckgo.com/'\

8 + '?{query}&format=json&pretty=0&no_redirect=1&d=1'

9

duckduck_test.go (git://github.com/ajanicij/goduckgo.git) Go · 66 lines

12 func TestQuery(t *testing.T) {

13 query := "New York City"

14 expectedUrl := "https://api.duckduckgo.com/?q=New+York+City&format=json&pretty=1"

15 expectedBody := `{

16 "Heading" : "New York City"

50 func TestEncodeUrl(t *testing.T) {

51 query := "!gi New York City"

52 expectedUrl := "https://api.duckduckgo.com/?q=%21gi+New+York+City&format=json&pretty=1&no_redirect=1"

53

54 url := EncodeUrl(query)

58

59 query = "New York City"

60 expectedUrl = "https://api.duckduckgo.com/?q=New+York+City&format=json&pretty=1"

61 url = EncodeUrl(query)

62 if url != expectedUrl {

duckduck.go (git://github.com/ajanicij/goduckgo.git) Go · 112 lines

93 func Query(query string) (*Message, error) {

94 query_enc := url.QueryEscape(query)

95 ddgurl := fmt.Sprintf("http://api.duckduckgo.com?q=%s&format=json&pretty=1", query_enc)

96 resp, err := http.Get(ddgurl)

97 if err != nil {

abstract.coffee (git://github.com/github/hubot-scripts.git) CoffeeScript · 45 lines

16 module.exports = (robot) ->

17 robot.respond /(abs|abstract) (.+)/i, (res) ->

18 abstract_url = "http://api.duckduckgo.com/?format=json&q=#{encodeURIComponent(res.match[2])}"

19 res.http(abstract_url)

20 .header('User-Agent', 'Hubot Abstract Script')

API.php (git://github.com/duckduckgo/php5-duckduckgo.git) PHP · 163 lines

24

25 /**

26 * The API base URL. This defaults to api.duckduckgo.com.

27 */

28 public $baseURL;

57 $this->noHTML = FALSE;

58 $this->noDisambiguations = FALSE;

59 $this->baseURL = 'api.duckduckgo.com';

60 }

61

README.md (git://github.com/ajanicij/goduckgo.git) Markdown · 104 lines

13 example, the URL for querying about New York City is

14

15 [http://api.duckduckgo.com/?q=New+York+City&format=json&pretty=1](http://api.duckduckgo.com/?q=New+York+City&format=json&pretty=1)

16

17 The previous query causes DuckDuckGo to return the result in JSON format.

duckduckgo.js (https://bitbucket.org/slimdll/botphp.git) JavaScript · 58 lines

21 const execute = (bot, msg, match) => {

22 const query = match.query

23 const _base = 'http://api.duckduckgo.com/?format=json&q='

24 const _url = url.parse(_base + encodeURIComponent(query))

25 _url.headers = {

animal.js (https://gitlab.com/HonestidaMordaz/pet-store.git) JavaScript · 138 lines

33 Animal.prototype.fetchBreedInfo = function(callback) {

34 return reqwest({

35 url: "https://api.duckduckgo.com/",

36 data: {

37 q: this.breed,

duckduckgo.js (https://github.com/gildean/dunn.git) JavaScript · 87 lines

64 var qPath = '/?q=' + msg + '&format=json&no_redirect=1&no_html=1';

65 var options = {

66 hostname: 'api.duckduckgo.com',

67 path: qPath

68 };

example_duckduckgo.html (https://bitbucket.org/quickfinder/quickfinder-old.git) HTML · 37 lines

17 var options = {

18 url: function(phrase) {

19 return phrase !== "" ? "http://api.duckduckgo.com/?q=" + phrase + "&format=json" : "http://api.duckduckgo.com/?q=empty&format=json";

20 },

21

duckduckgo.py (https://bitbucket.org/pbui/bobbit) Python · 59 lines

9 MODULE_TYPE = 'command'

10

11 DUCKDUCKGO_URL = u'http://api.duckduckgo.com'

12 DUCKDUCKGO_RE = r'^!(ddg|duckduckgo)\s+'

13

opis.html (https://bitbucket.org/nejcv1998/nejcv1998.bitbucket.org.git) HTML · 98 lines

64 <ul>

65 <li>EHRScape API: uporabljen za dostopanje in shranjevanje podatkov bolnika. Uporabljen je naslov: <a href= https://rest.ehrscape.com/rest/v1>https://rest.ehrscape.com/rest/v1</a></li>

66 <li>DuckDuckGo API: uporabljen za iskanje posledic in predlaganje rešitev. Uporabljen je naslov <a href= https://api.duckduckgo.com/?q=DuckDuckGo&format=json>https://api.duckduckgo.com/?q=DuckDuckGo&format=json</a></li>

67 </ul>

68 </p>

duckduckgo.py (git://github.com/Reisen/bruh.git) Python · 76 lines

48 # attribution, so don't remove this.

49 request = Request(

50 'https://api.duckduckgo.com/?{}'.format(urlencode({

51 'q': msg,

52 'format': 'json',

ddg.py (https://bitbucket.org/dwfreed/guppy.git) Python · 55 lines

41 try:

42 request = "+".join(args)

43 sock = urllib.request.urlopen("http://api.duckduckgo.com/?q=%s&o=json" % request)

44 data = sock.read()

45 sock.close()

duckduckgo.py (https://bitbucket.org/agiliq/searchapi) Python · 17 lines

6 class Duck(object):

7 def __init__(self):

8 self.end_point='http://api.duckduckgo.com/?q='

9

10 def duckduckgo(self,query):

duckduckgo.com.rb (https://bitbucket.org/andey/bestofama.git) Ruby · 12 lines

3 class DuckDuckGo

4 include HTTParty

5 base_uri 'api.duckduckgo.com'

6

7 def search(text)