Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #19404
| Path | csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!news.albasani.net!feeder.erje.net!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <malaclypse2@gmail.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.004 |
| X-Spam-Evidence | '*H*': 0.99; '*S*': 0.00; 'apis': 0.07; 'subject:search': 0.07; 'tends': 0.07; 'deprecated,': 0.09; 'url:msdn': 0.09; 'us)': 0.09; 'anyway': 0.09; 'api': 0.09; 'subject:python': 0.10; '25,': 0.12; 'am,': 0.12; 'received:209.85.210.174': 0.13; 'received:mail- iy0-f174.google.com': 0.13; 'json,': 0.16; 'wrote:': 0.16; 'wed,': 0.17; 'jan': 0.19; 'appears': 0.19; 'header:In-Reply-To:1': 0.22; '(like': 0.25; 'message-id:@mail.gmail.com': 0.28; 'html,': 0.28; '(and': 0.29; 'url:library': 0.30; 'requests': 0.32; 'thanks': 0.32; 'to:addr:python-list': 0.33; 'there': 0.33; 'away.': 0.34; 'parse': 0.34; 'google': 0.36; 'but': 0.37; 'received:google.com': 0.37; 'resulting': 0.38; 'received:209.85': 0.38; 'useful': 0.38; 'subject:with': 0.38; 'being': 0.39; 'received:209': 0.39; 'subject:: ': 0.39; 'url:microsoft': 0.40; 'to:addr:python.org': 0.40; 'browser': 0.61; 'believe': 0.65; "google's": 0.66; 'url:en- us': 0.68; '5:36': 0.84; 'break.': 0.84; 'prone': 0.91 |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=TUr0j1w95ZCvngCTiwCVILxtKAanm+we0pB1X0Hrwco=; b=lx48tKhXObYpszV/FyKxob80W6gYyy/IvnlR8QPaiMXjTYCjwUAoSelCUFyhoHBMux gCzZUXjYs5XkFAHeNQnB3Nh37Pl90RYU3jko+rhGxHzs6xDH6ZP2K0CLNR2h8xwhVC9u Akw/5cfu3K2lBKNeIVBu1NrRKn2SZTjmmjY5Q= |
| MIME-Version | 1.0 |
| In-Reply-To | <4f1fdb22$0$1380$4fafbaef@reader2.news.tin.it> |
| References | <4f1fd175$0$1375$4fafbaef@reader2.news.tin.it> <mailman.5068.1327487247.27778.python-list@python.org> <4f1fdb22$0$1380$4fafbaef@reader2.news.tin.it> |
| Date | Wed, 25 Jan 2012 11:38:52 -0500 |
| Subject | Re: search google with python |
| From | Jerry Hill <malaclypse2@gmail.com> |
| To | python-list@python.org |
| Content-Type | text/plain; charset=UTF-8 |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.12 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <http://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.5079.1327509536.27778.python-list@python.org> (permalink) |
| Lines | 19 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1327509536 news.xs4all.nl 6952 [2001:888:2000:d::a6]:36028 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | x330-a1.tempe.blueboxinc.net comp.lang.python:19404 |
Show key headers only | View raw
On Wed, Jan 25, 2012 at 5:36 AM, Tracubik <affdfsdfdsfsd@b.com> wrote: > thanks a lot but it say it's deprecated, is there a replacement? Anyway > it'll useful for me to study json, thanks :) I don't believe Google is particularly supportive of allowing third-parties (like us) to use their search infrastructure. All of the search-related APIs they used to provide are slowly going away and not being replaced, as far as I can tell. If you just need to search images (and not Google Image Search in particular), Bing's API appears to be supported and not about to go away. ( http://msdn.microsoft.com/en-us/library/dd900818.aspx ) You could, in theory, make requests to Google just like a web browser and parse the resulting HTML, but that tends to be fragile and prone to break. I believe it also violates Google's Terms of Service. -- Jerry
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
search google with python Tracubik <affdfsdfdsfsd@b.com> - 2012-01-25 09:55 +0000
Re: search google with python Chris Rebert <clp2@rebertia.com> - 2012-01-25 02:27 -0800
Re: search google with python Tracubik <affdfsdfdsfsd@b.com> - 2012-01-25 10:36 +0000
Re: search google with python Jerry Hill <malaclypse2@gmail.com> - 2012-01-25 11:38 -0500
Re: search google with python John Nagle <nagle@animats.com> - 2012-01-25 12:15 -0800
csiph-web