#!/usr/bin/env python
"""
Command line interface to `thr33p`:

.. code:: bash

    $ cat > ~/.thr33p/config.py <<EOF
    import certifi
    
    http_pool_manager = {
       'cert_reqs': 'CERT_REQUIRED',
       'ca_certs': certifi.where(),
    }
     
    buckets =  {
        r'~.+-at-bernies': {
            'creds': {
                'access_key_id': 'EXAMPLE',
                'secret_access_key': 'EXAMPLEKEY',
            },
        },
    }
    EOF
    $ thr33p -d -p 8338 ~/.thr33p/config.py &
    $ curl 'http://127.0.0.1:8338/dead.jpeg' --header "Host:weekend-at-bernies.s3.amazonaws.com" -vvv

"""
import thr33p


thr33p.serve()
