Metadata-Version: 1.0
Name: lxmlmechanize
Version: 0.0.0
Summary: UNKNOWN
Home-page: https://github.com/moriyoshi/lxmlmechanize
Author: Moriyoshi Koizumi
Author-email: mozo@mozo.jp
License: UNKNOWN
Description: .. contents::
        
        Introduction
        ============
        
        lxmlmechanize is an efficient, i18n-aware, simple, lxml-based HTTP user-agent.
        
        Synopsis
        ========
        
        ::
        
            from lxmlmechanize import default_keychain, Mechanize
            from lxmlmechanize.urllib2ext import Credentials
        
            m = Mechanize()
        
            # set credentials for authentication
            default_keychain.add(Credentials('http://localhost:12345/', realm=None, user='test', password='testtest'))
        
            # navigate to the page
            m.navigate('http://localhost:12345/')
        
            # populate the form fields
            form = m.page.root.xpath('body//form[@id="test"]')[0]
            form.xpath('input[@name="user"]')[0].set('value', 'user')
            form.xpath('input[@name="password"]')[0].set('value', 'password')
        
            # submit the form
            m.submit_form(form)
        
        
        
        Contributors
        ============
        
        
        Changelog
        =========
        
        0.0.0
        --------------------
        
        - Initial
        
        
Platform: UNKNOWN
Classifier: Topic :: Internet
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Browsers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Software Development :: Testing :: Traffic Generation
