Metadata-Version: 1.0
Name: Bottle-SSLify
Version: 0.0.1
Summary: Force SSL on any Bottle app.
Home-page: https://github.com/ali01/bottle-sslify
Author: Ali Yahya
Author-email: alive@athena.ai
License: MIT License
Description: # Bottle SSLify
        
        This is a simple Bottle extension that configures your Bottle application to redirect all incoming HTTP requests to HTTPS.
        
        ## Usage
        
        Hello World:
        
            import bottle
            from bottle_sslify import SSLify
        
            app = bottle.Bottle()
            SSLify(app)
        
        
        HTTP requests are redirected to HTTPS:
        
            $ curl -I http://localhost:7777
            HTTP/1.1 302 Found
            Content-Length: 0
            Content-Type: text/html; charset=UTF-8
            Location: https://localhost:7777/
            Date: Wed, 23 Jan 2013 09:34:50 GMT
        
        ## Installation
        
            $ pip install Bottle-SSLify
        
Platform: any
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
