~vijit.chauhan/beeseek/fix-603119

« back to all changes in this revision

Viewing changes to doc/api/search.txt

  • Committer: Andrea Corbellini
  • Date: 2010-04-30 15:09:06 UTC
  • Revision ID: andrea.corbellini@beeseek.org-20100430150906-y415nxn53nge8jjv
Clearify some DB column names.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
    >>> from pprint import pprint
18
18
    >>> content = json.loads(response.content)
19
19
    >>> pprint(content)
20
 
    [{u'karma': 1000,
21
 
      u'snippet': u'The GNU General Public License is often called the ...',
22
 
      u'tags': u'gnu free license software',
 
20
    [{u'score': 1000,
 
21
      u'snippets': [u'The GNU General Public License is often called the ...'],
23
22
      u'title': u'Licenses - GNU Project - Free Software Foundation',
24
23
      u'url': u'http://www.gnu.org/licenses'},
25
 
     {u'karma': 1000,
26
 
      u'snippet': u'The GNU General Public License is a free, copyleft ...',
27
 
      u'tags': u'license gnu gpl',
 
24
     {u'score': 1000,
 
25
      u'snippets': [u'The GNU General Public License is a free, copyleft ...'],
28
26
      u'title': u'The GNU General Public License - GNU Project',
29
27
      u'url': u'http://www.gnu.org/licenses/gpl.html'}]
30
28