Metadata-Version: 1.1
Name: Spidy
Version: 0.1
Summary: Spidy scripting language for Web scraping
Home-page: http://www.python.org/
Author: Alex Pereverzyev
Author-email: pereverzev.alex@gmail.com
License: BSD
Description: ======
        Spidy
        ======
        
        .. image:: https://badge.fury.io/py/Spidy.png
           :target: http://badge.fury.io/py/Spidy
        
        .. image:: https://secure.travis-ci.org/Spidy/Spidy.png?branch=master
           :target: http://travis-ci.org/scrapy/Spidy
        
        Overview
        ========
        
        Spidy is an open source scripting language for Web scraping. Spidy makes
        scraping easy because it has::
        
        * Flexibility of scripting language
        * XPath selectors to extract data
        * Support for HTML and JSON formats
        * Templates for output formatting
        
        Requirements
        ============
        
        Spidy is written in Python and relies on Python Standard Library only.
        
        * Python 2.7
        * Mac OS X, Windows, Linux, BSD
        
        Install
        =======
        
        Installing from Python Package Index::
        
            pip install spidy
        	
        For Windows installation instructions, please see documentation in ``docs`` 
        directory.
            
        Usage
        =====
        
        'Hello world' example with Spidy shell::
        
            import spidy
            print spidy.do('''return 'Hello, world!' ''')
        
        Documentation
        =============
        
        Documentation is available in the ``docs`` directory. Script examples are located
        in ``examples`` directory. 
Platform: Mac OS
Platform: Linux
Platform: Windows
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: License :: OSI Approved :: BSD License
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Interpreters
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires: HTMLParser
Requires: json
Requires: xml.parsers.expat
Requires: httplib
Requires: codecs
Requires: logging
