Metadata-Version: 1.0
Name: zombie
Version: 0.1.0a
Summary: A Python driver for Zombie.js
Home-page: https://github.com/ryanpetrello/python-zombie
Author: Ryan Petrello
Author-email: ryan [at] ryanpetrello [dot] com
License: MIT
Description: A Python driver for `Zombie.js <http://zombie.labnotes.org/)>`_, a headless browser
        powered by `node.js <http://nodejs.org/>`_. ::
        
            from zombie import Browser
            b = Browser()
            b.visit('http://google.com/m').fill('input', 'Zombie.js').pressButton('Search')
            assert b.location == 'http://www.google.com/m?q=Zombie.js'
        
        Requires the latest node and zombie::
        
            brew install node
            curl http://npmjs.org/install.sh | sh
            npm install zombie
        
        Development
        ===========
        
        Source hosted at `GitHub <https://github.com/ryanpetrello/python-zombie>`_.
        Report issues and feature requests on `GitHub
        Issues <https://github.com/ryanpetrello/python-zombie/issues>`_.
        
        Tests require ``tox`` and can be run with ``python setup.py test``.
        
        All contributions must:
        
        * Include accompanying tests.
        * Include API documentation if new features or API methods are changed/added.
        * Be (generally) compliant with PEP8.  One exception is that (for consistency,
          and to demonstrate their analogous nature) API methods on
          ``zombie.Browser`` should follow the camel case formatting set forth in
          the zombie.js API (e.g., ``Browser.pressButton``, not
          ``Browser.press_button``).
        * Not break the tests or build. Before issuing a pull request, ensure that all
          tests still pass across multiple versions of Python.
        * Add your name to the (bottom of the) ``AUTHORS`` file.
        
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Software Development :: Testing :: Traffic Generation
