Hello,
   I need to build a keyword generator from the any search output. For 
example if i am searching car in any search engine, based on car i am 
getting lots of result now in this page i need to find out whatever 
keywords can be made from the words.

I need to return most possible word as keywords after analyzing a HTML 
page. I  am using  now BeautifulSoup , *Please also suggest me if we can 
implement http://scrapy.org/ <http://scrapy.org/> for this task.*

def myfunc():
    form=FORM('Key Word Finder',
              INPUT(_name='URL', requires=IS_NOT_EMPTY()),
              INPUT(_type='submit'))
    if form.accepts(request,session):
        response.flash = 'form accepted'
        new_url=request.vars.URL
        usock = urllib2.urlopen(new_url)
        data = usock.read()
        usock.close()
        soup = BeautifulSoup(data)
        findKeywords=soup.get_text()
        key_words=Counter()
        key_words.update(findKeywords.split())
        return dict( form=form , grid = key_words.most_common())
    elif form.errors:
        response.flash = 'form has errors'
    else:
        response.flash = 'please fill the form'
    return dict(form=form)  

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to