2009-12-02 07:51:13 |
Ged Walsh |
description |
class TheWhiteboard(BasicScraper):
latestUrl = 'http://www.the-whiteboard.com/'
imageUrl = 'http://www.the-whiteboard.com/autowb%s.html'
imageSearch = compile(r'<img SRC="(autotwb\d{1,4}.+?)">', IGNORECASE)
prevSearch = compile(r' <a href="(.+?)">previous</a>', IGNORECASE)
help = 'Index format: n'
latestUrl, imageUrl, imageSearch, prevSearch |
class TheWhiteboard(BasicScraper):
latestUrl = 'http://www.the-whiteboard.com/'
imageUrl = 'http://www.the-whiteboard.com/auto%s.html'
imageSearch = compile(r'<img SRC="(autotwb\d{1,4}.+?|autowb\d{1,4}.+?)">', IGNORECASE)
prevSearch = compile(r' <a href="(.+?)">previous</a>', IGNORECASE)
help = 'Index format: twb or wb + n wg. twb1000'
latestUrl, imageUrl, imageSearch, prevSearch, help
|
|