Metadata-Version: 1.0
Name: httpclient
Version: 0.0.2
Summary: A headless HTTP browser.
Home-page: https://github.com/guillaume-humbert/httpclient
Author: Guillaume Humbert
Author-email: guillaume.humbert.jp@gmail.com
License: GNU General Public License (GPL) v3
Download-URL: https://github.com/guillaume-humbert/httpclient
Description: Installation
        ------------
        
        Command line installation (Unix, Windows)::
        
            $ pip install httpclient
        	
        (`pip installation instructions <http://www.pip-installer.org/en/latest/installing.html>`_)
        
        Quickstart
        ----------
        
        **Send a GET request**::
        
            from httpclient import HttpClient
            
            http_client = HttpClient()
            page = http_client.get("http://www.google.com")
            
            print(page.content_as_string)
        	
        **Send a POST request**::
        
            from httpclient import HttpClient
            
            http_client = HttpClient()
            page = http_client.post("http://www.some-site.org/login",
                                {"username": "xxx", "password": "yyy"})
            print(page.content_as_string)
        	
        Documentation
        -------------
        
        Full documentation within the `github wiki <https://github.com/guillaume-humbert/httpclient/wiki>`_.
Keywords: http headless browser crawler html
Platform: Unix
Platform: Windows
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.2
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Browsers
