Re: [Tutor] find data in html file

2005-09-30 Thread lmac
> > >Message: 5 >Date: Fri, 30 Sep 2005 10:32:41 -0400 >From: Kent Johnson <[EMAIL PROTECTED]> >Subject: Re: [Tutor] find data in html file >Cc: tutor@python.org >Message-ID: <[EMAIL PROTECTED]> >Content-Type: text/plain; charset=ISO-8859-1; format=flowed

Re: [Tutor] find data in html file

2005-09-30 Thread Andrew P
It's free now to use the API.  You just "self-certify" and get 10,000 calls a month. Imac, if you use the API, let me save you some trouble.  REST is useless, SOAP is overly complicated, which leaves XML over HTTP which is really quite nice.  I am not speaking generally, but talking about the ebay

Re: [Tutor] find data in html file

2005-09-30 Thread paul brian
> But to get the data like price,bidders,shipment etc without the official > eBayAPI is hard. > Maybe anyone has a solution made ? Ebay specifically change around their HTML codes, tags and formatting (in quite a clever way) to stop people doing exactly what you are trying to do. I think it cha

Re: [Tutor] find data in html file

2005-09-30 Thread Kent Johnson
lmac wrote: > It's not this simple. The whole thing is that i try to use ebay.de for > fetching websites > when i give an articlenumber. The downloading of the site for a specific > article is no problem. > But to get the data like price,bidders,shipment etc without the official > eBayAPI is har

Re: [Tutor] find data in html file

2005-09-30 Thread lmac
Date: Wed, 28 Sep 2005 09:25:53 +0100 From: Ed Singleton <[EMAIL PROTECTED]> Subject: Re: [Tutor] find data in html file To: tutor@python.org Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=ISO-8859-1 On 27/09/05, lmac <[EMAIL PROTECTED]> wrote: >> Hi

Re: [Tutor] find data in html file

2005-09-28 Thread Ed Singleton
On 27/09/05, lmac <[EMAIL PROTECTED]> wrote: > Hi there, > i have a base-question. If i want to read some kind of data out of a line > which i know the start-tag and the end-tag in an html-file how do i > recognize > if it's more than one line ? > > Example: > > Some textlinktext . DATA et

Re: [Tutor] find data in html file

2005-09-27 Thread Kent Johnson
lmac wrote: > Hi there, > i have a base-question. If i want to read some kind of data out of a line > which i know the start-tag and the end-tag in an html-file how do i > recognize > if it's more than one line ? > > Example: > > Some textlinktext . DATA etc. > > I would use >text as t

Re: [Tutor] find data in html file

2005-09-27 Thread Don Arnold
--- lmac <[EMAIL PROTECTED]> wrote: > Hi there, > i have a base-question. If i want to read some kind > of data out of a line > which i know the start-tag and the end-tag in an > html-file how do i > recognize > if it's more than one line ? > > Example: > > Some textlinktext . DATA > e

[Tutor] find data in html file

2005-09-27 Thread lmac
Hi there, i have a base-question. If i want to read some kind of data out of a line which i know the start-tag and the end-tag in an html-file how do i recognize if it's more than one line ? Example: Some textlinktext . DATA etc. I would use >text as the starting tag to localize the be