Metadata-Version: 1.0
Name: pholcidae
Version: 0.0.3
Summary: pholcidae - Tiny python web crawler library
Home-page: https://github.com/bbrodriges/pholcidae
Author: bender.rodriges
Author-email: bender@rodriges.org
License: UNKNOWN
Description: pholcidae - Tiny python web crawler library
        =========
        
        Pholcidae
        ------------
        
        Pholcidae, commonly known as cellar spiders, are a spider family in the suborder Araneomorphae.
        
        About
        ------------
        
        Pholcidae is a tiny Python module allows you to write your own crawl spider fast and easy.
        
        Dependencies
        ------------
        
        * python >= 2.6.x
        
        Basic example
        ------------
        
            from pholcidae import Pholcidae
        
            class MySpider(Pholcidae):
        
                settings = {'domain': 'www.test.com', 'start_page': '/sitemap/'}
        
                def crawl(self, data):
                    print(data.url)
        
            spider = MySpider()
            spider.start()
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
