Re: screen scraping

2009-06-01 Thread David
ubuntu@gmail.com wrote: Hello, does anybody have a simple tutorial for screen scrapping? I want to extract IP addresses from particular web page, reading documentation for a couple of days and writing some really simple scripts, but cant get it to work. Did anybody see any manual explicittl

RE: screen scraping with Python?

2009-04-28 Thread Jean-Paul Calderone
On Tue, 28 Apr 2009 16:57:18 +0530, "Meenakshi, Arun Kumar" wrote: David, Thanks a ton for your swift reply. I will be more happy, if you could direct me with right API with which I can walk further. Twisted includes a vt102 API along with an in-memory emulator implementing many

RE: screen scraping with Python?

2009-04-28 Thread Meenakshi, Arun Kumar
: Tuesday, April 28, 2009 4:52 PM To: Meenakshi, Arun Kumar Cc: python-list@python.org Subject: Re: screen scraping with Python? On Mon, 27 Apr 2009 12:28:31 +0530, "Meenakshi, Arun Kumar" wrote: > Hi Friends, > > Please let me know whether VT10

Re: screen scraping with Python?

2009-04-28 Thread David Lyon
On Mon, 27 Apr 2009 12:28:31 +0530, "Meenakshi, Arun Kumar" wrote: > Hi Friends, > > Please let me know whether VT100 (Screen scrapping) > emulation is possible or not. If screen scrapping / VT100 emulation is > possible, please let me know how to do it. I will be happier, if you ca

Re: Screen Scraping Question

2007-07-14 Thread Yu-Xi Lim
jeffbg123 wrote: > The numbers are always rendered the same. So I don't know if OCR is a > necessary step. > > Also, what if I just got the data from the packets? Any disadvantages > to that? Any good python packet capturing libraries? > > Thanks > Packet capture is probably a bad idea for two

Re: Screen Scraping Question

2007-07-12 Thread Raul Laansoo
Ühel kenal päeval, K, 2007-07-11 kell 12:45, kirjutas jeffbg123: > Hey, > > I am trying to make a bot for a flash game using python. However I am > having some trouble with a screen scraping strategy. Is there an > accepted way to compare a full screenshot with the image that I want > to locate? I

Re: Screen Scraping Question

2007-07-12 Thread jeffbg123
On Jul 11, 10:31 pm, Dan Stromberg - Datallegro <[EMAIL PROTECTED]> wrote: > On Wed, 11 Jul 2007 12:45:21 +, jeffbg123 wrote: > > Hey, > > > I am trying to make a bot for a flash game using python. However I am > > having some trouble with a screen scraping strategy. Is there an > > accepted wa

Re: Screen Scraping Question

2007-07-11 Thread Dan Stromberg - Datallegro
On Wed, 11 Jul 2007 12:45:21 +, jeffbg123 wrote: > Hey, > > I am trying to make a bot for a flash game using python. However I am > having some trouble with a screen scraping strategy. Is there an > accepted way to compare a full screenshot with the image that I want > to locate? It is a math

Re: Screen Scraping for Modern Applications?

2006-06-12 Thread Cameron Laird
In article <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]> wrote: . . . >Scrape means simply scraping pixel colors from locations on the screen. >I'll worry about assembling it into meaningful information. > >Previously, I used Java,

Re: Screen Scraping for Modern Applications?

2006-06-11 Thread Daniel Nogradi
> > Scrape means simply scraping pixel colors from locations on the screen. > > I'll worry about assembling it into meaningful information. > > import ImageGrab > im = ImageGrab.grab() > v = im.getpixel((x, y)) > > requires: > > http://www.pythonware.com/products/pil/ > > ## #

Re: Screen Scraping for Modern Applications?

2006-06-11 Thread Fredrik Lundh
[EMAIL PROTECTED] wrote: > Scrape means simply scraping pixel colors from locations on the screen. > I'll worry about assembling it into meaningful information. import ImageGrab im = ImageGrab.grab() v = im.getpixel((x, y)) requires: http://www.pythonware.com/products/pil/

Re: Screen Scraping for Modern Applications?

2006-06-11 Thread Paul McGuire
<[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > > Scrape means simply scraping pixel colors from locations on the screen. > I'll worry about assembling it into meaningful information. > I've used pywinauto to interact with a Flash animation panel, running within an Internet Explore

Re: Screen Scraping for Modern Applications?

2006-06-11 Thread ljr2600
Cameron Laird wrote: > In article <[EMAIL PROTECTED]>, > <[EMAIL PROTECTED]> wrote: > . > . > . > >For a side project I'm working on I need to be able to scrape a modern > >computer desktop. Is there any basic material already avai

Re: Screen Scraping for Modern Applications?

2006-06-11 Thread Cameron Laird
In article <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]> wrote: . . . >For a side project I'm working on I need to be able to scrape a modern >computer desktop. Is there any basic material already available to do >this? I'd rather

Re: Screen Scraping for Modern Applications?

2006-06-11 Thread KenAggie
I just learned about a python library called BeautifulSoup in a thread responding to my Southwest Airlines script that I wrote and posted on the Python cookbook web site. I wrote my script using the provided HTMLParser class. BeautifulSoup could have saved me some time perhaps. Take a look. Feel fr