I have a function named "spider" which takes "seed" as an argument "seed" is basically the name of the url I send to spider function. Now my question is how do I use beanstalkc in python to queue the urls and perform the jobs.

link|improve this question
feedback

1 Answer

According to the tutorial you would need:

  1. beanstalkd server is running.
  2. Connect:

    import beanstalkc
    beanstalk = beanstalkc.Connection(host='localhost', port=14711)
    
  3. Add jobs using:

    beanstalk.put('seed url')
    
  4. Get job via:

    job = beanstalk.reserve()
    spider(job.body)
    
  5. Mark job as completed:

    job.delete()
    
link|improve this answer
job = beanstalk.reserve() spider(job.body) can you please explain where am i sending the url(or seed) to spider because when i try printing job.body() it prints "True" not the url – Srikanth Jun 27 '11 at 8:58
It's an attribute so job.body not job.body(). Please follow the tutorial step by step first, that should give you a nice intro. – Damian Jun 27 '11 at 9:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.