Search Results

0
votes
4answers
380 views

How can I make this recursive crawl function iterative?

For academic and performance sake, given this crawl recursive web-crawling function (which crawls only within the given domain) what would be the best approach to make it run iteratively? Currently …
5
votes

How would you design a very “Pythonic” UI framework?

## All you need is this class: class MainWindow(Window): my_button = Button('Click Me') my_paragraph = Text('This is the text you wish to place') my_alert = AlertBox('What what …
2
votes

How can I make this recursive crawl function iterative?

@Mehrdad - Thank you for your reply, the example you provided was concise and easy to understand. The solution: def crawl(self, url): urls = Queue(-1) _crawled = [ …
2
votes

Building Django app using Comet/Orbited on Apache, use mod_wsgi or mod_python?

Yes, absolutely. I would probably use Orbited as implemented by Dark Porter - It's the simplest solution to get your code running, and implemented in pure python. Not to me …