Live data from Hacker News

Pattern - Web Mining Python lib

github.com

11–15 of 15 posts

Re: Pattern - Web Mining Python lib

#11
post #5

Earlier quoted context omitted.

Better yet: Is there a well defined structure for other folks to add that stuff?

I'm not one of the authors, but the code in question is all in one file: https://github.com/clips/pattern/blob/master/pattern/web/__i... It would be fairly straightforward to add your own class.

Is it just me or are they rerlolling requests and lxml for no good reason?

Re: Pattern - Web Mining Python lib

#12
post #5

This is awesome! Any plans to add other sites, like amazon, yelp, tripadvisor, etc!

Better yet: Is there a well defined structure for other folks to add that stuff?

The source code has a base SearchEngine class and a Result class, which streamline the input and output parameters across different web services, so it is not difficult to add new services (= subclass of SearchEngine). There are also some general developer docs: http://www.clips.ua.ac.be/pages/pattern-dev

Re: Pattern - Web Mining Python lib

#13
post #5

Earlier quoted context omitted.

Better yet: Is there a well defined structure for other folks to add that stuff?

I'm not one of the authors, but the code in question is all in one file: https://github.com/clips/pattern/blob/master/pattern/web/__i... It would be fairly straightforward to add your own class.

Whoa, modules with dozen of classes and 2450 lines of code! They definitely don't rely on file-navigation.

Project is great, but I've got a feeling that many smallish components have been already implemented, but here they were rewritten from scratch.

Re: Pattern - Web Mining Python lib

#14
post #7

Earlier quoted context omitted.

NB: screen-scraping Yelp is against the TOS and you'll get shut down pretty fast if you try it.

Exactly. Screen scrape Google search results instead, I've heard that works great. Bet your business model on it, I've heard. ;-)

Well, Google "screen scrapes" millions of websites. They bet their business on it and they seem to be doing OK.

If you upload something to an http server connected to the public internet on tcp/80, and you don't exclude the path to it in robots.txt, then should anyone be surprised if it is copied? HTTP clients don't read TOS.

If Google had to read and interpret every every website's TOS, I doubt they could easily, if at all, produce an index the size of the one they have. It seems by ignoring a "fear of scraping" they managed to produce something valuable that the courts seem to side with in spite of offended copyright holders.

Moreover there's no requirement for them to make their "cache" publicly accessible. But they do. And again this has held up in court quite well. I doubt anyone would be surprised that people are using it. Or "scraping" it if you want to play word games.

Re: Pattern - Web Mining Python lib

#15

This is awesome! Any plans to add other sites, like amazon, yelp, tripadvisor, etc!

NB: screen-scraping Yelp is against the TOS and you'll get shut down pretty fast if you try it.

I see you worked at yelp before so I will not elaborate more, but it's not too hard to scrape yelp if you know what you are doing
Post reply on HN