Metadata-Version: 1.0
Name: linkGrabber
Version: 0.1.0
Summary: Scrape links from a single web site
Home-page: http://pypi.python.org/pypi/linkGrabber
Author: Eric Bower
Author-email: neurosnap@gmail.com
License: LICENSE.rst
Description: =====
        Link Grabber
        =====
        
        Link Grabber provides a quick and easy way to grab links from
        a single web page.
        
        How-To
        ======
        
        .. code:: bash
        
            $ python setup.py install
        
        OR
        
        .. code:: bash
        
            $ pip install linkGrabber
        
        Quick
        ====
        
        .. code:: python
        
            import linkGrabber
        
            seek = linkGrabber.ScrapeLinks("http://www.google.com")
            seek.find_links()
            # limit the number of "a" tags to 5
            seek.find_links(limit=5)
            # filter the "a" tag href attribute
            seek.find_links({ "href": re.compile("plus.google.com") })
        
Platform: UNKNOWN
