Metadata-Version: 2.0
Name: wsgicli
Version: 0.2.0
Summary: Command Line Interface for developing WSGI application.
Home-page: https://github.com/kobinpy/wsgicli
Author: Masashi Shibata <contact@c-bata.link>
Author-email: contact@c-bata.link
License: MIT License
Keywords: web framework wsgi
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Environment :: Web Environment
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: click
Requires-Dist: wsgi-lineprof
Requires-Dist: wsgi-static-middleware

=======
WSGICLI
=======

.. image:: https://travis-ci.org/kobinpy/wsgicli.svg?branch=master
    :target: https://travis-ci.org/kobinpy/wsgicli

.. image:: https://badge.fury.io/py/wsgicli.svg
    :target: https://badge.fury.io/py/wsgicli

Command Line Interface for developing WSGI application.
This library has following features.

* Run wsgi application with specified host and port.
* Serving Static files.
* Live reloading.
* line by line profiling.

How to use
==========

Basic Usage
-----------

Create ``main.py`` :

.. code-block:: python

   def app(env, start_response):
       start_response('200 OK', [('Content-type', 'text/plain; charset=utf-8')])
       return [b'Hello World']

Run this application using wsgiref:

.. code-block:: console

   $ wsgicli run main.py app

Run this application in specified host(default: localhost) and port(default: 8000):

.. code-block:: console

   $ wsgicli run main.py app -h 0.0.0.0 -p 8080


Static files
------------

Run wsgi application and serve static files:

Create ``static/style.css``:

.. code-block:: css

   .container {
      max-width: 980px;
   }

And run:

.. code-block:: console

   $ wsgicli run main.py app -p 8000 --static --staticroot static --staticdirs static/
   $ curl http://localhost:8000/static/main.css
   .container {
      max-width: 980px;
   }


Live Reloading
--------------

.. code-block:: console

   $ wsgicli run main.py app --reload

.. image:: https://raw.githubusercontent.com/kobinpy/wsgicli/master/resources/wsgicli-live-reloading-demo.gif
   :alt: live reloading demo
   :align: center

line profiler
-------------

Thanks to `rkern/line_profiler <https://github.com/rkern/line_profiler>`_ and `ymyzk/wsgi_lineprof <https://github.com/ymyzk/wsgi_lineprof>`_ :)
Usage is like this:

.. code-block:: console

   $ wsgicli run main.py app -p 8000 --lineprof
   Start: 127.0.0.1:8000

   Time unit: 1e-06 [sec]

   File: wsgi_lineprof_example.py
   Name: index
   Total time: 1.0027 [sec]
     Line      Hits         Time  Code
   ===================================
       47                         @app.route('/')
       48                         def index():
       49         1      1002693      name = get_name()
       50         1            7      return "Hello, {}!!".format(name)

   File: wsgi_lineprof_example.py
   Name: get_name
   Total time: 1.00267 [sec]
     Line      Hits         Time  Code
   ===================================
       41                         def get_name():
       42                             # Get some data...
       43         1      1002670      time.sleep(1)
       44         1            3      return "Monty Python"


vmprof profiler
---------------

**Still Not Implemented**

Using vmprof and vmprof-server.

.. code-block:: console

   $ wsgicli run main.py app -p 8000 --vsprof

refs:

* https://github.com/vmprof/vmprof-python

Arguments and Options
=====================

Arguments
---------

1. ``file`` : File path for your wsgi application.
2. ``obj`` : The variable name of your wsgi application object.

Options
-------

- ``-h`` ``--host`` : The interface to bind to. (default: ``127.0.0.1``).
- ``-p`` ``--port`` : The port to bind to. (default: ``8000``).
- ``--reload`` / ``--no-reload`` : Enable live reloading (default: ``--no-reload``).
- ``--interval`` : Interval time to check file changed for reloading (default: ``1``).
- ``--static`` / ``--no-static`` : Enable static file serving (default: ``--no-static``).
- ``--staticroot`` : URL path to static files (default: ``/static/``).
- ``--staticdirs`` : Directories to static files (default: ``./static``, multiple=true).
- ``--lineprof/--no-lineprof`` : Enable line profiler.
- ``--lineprof-file`` : The target for lineprof (default: your wsgi application file name).

Environment Variables
---------------------

**Still Not Implemented**

- ``WSGICLI_TARGET``
- ``WSGICLI_PORT``
- ``WSGICLI_HOST``
- ``WSGICLI_RELOAD``
- ``WSGICLI_RELOAD_INTERVAL``
- ``WSGICLI_STATIC``
- ``WSGICLI_STATIC_ROOT``
- ``WSGICLI_STATIC_DIRS``
- ``WSGICLI_PROFILE``
- ``WSGICLI_PROFILE_PORT``

Why WSGICLI?
============

While developing WSGI Application and WSGI Middleware, I encountered some troublesome scenes.
I will explain it using actual code.

.. code-block:: python

   class SomeMiddleware:
       def __init__(self, app):
           self.app = app

       def __call__(self, env, start_response):
           return self.app(env, start_response)

This is a very simple WSGI middleware.
It is also fully compatible with the WSGI interface.
Let's use this Middleware with various WSGI frameworks.


In the case of Bottle
---------------------

.. code-block:: python

   from bottle import Bottle
   app = Bottle()

   @app.route('/hello/<name>')
   def index(name):
       return 'Hello World!'

   app = SomeMiddleware(app)

   if __name__ == '__main__':
      app.run(host='127.0.0.1', port=8000)


As you can see, this program does not work.
``SomeMiddleware`` is compatible with the WSGI Interface, but ``run`` method does not exist.

However, ``app`` object satisfies the specification of WSGI, it can be executed using WSGI Server (gunicorn, etc.) as follows.

.. code-block:: console

   $ gunicorn -w main:app  -b 127.0.0.1:8000

So, how does Bottle use WSGI middleware?

.. code-block:: python

   import bottle
   app = SomeMiddleware(bottle.app())

   @bottle.route('/')
   def index():
     return 'Hello World!'

   if __name__ == '__main__':
       bottle.run(app=app, host='127.0.0.1', port=8000)


In Bottle, you can use WSGI Middleware by describing like this.
But although Bottle is a Micro Framework, it spends a little bit of code to accomplish this.

- https://github.com/bottlepy/bottle/blob/master/bottle.py#L3100-L3125
- https://github.com/bottlepy/bottle/blob/master/bottle.py#L3541-L3644

In the case of Flask
--------------------

Flask had similar problems until then.
But Flask now provides a Command Line Interface based on Click from v0.11 (See `Flask documentation <http://flask.pocoo.org/docs/0.11/quickstart/#a-minimal-application>`_ ).
This is a good idea.

Thinking about the role of WSGI Framework
-----------------------------------------

The ``run()`` method is useful for running WSGI Applications in development.
But is this really a function that the WSGI Framework should provide?

In the Kobin WSGI Framework that I am developing, I decided not to provide functions like `run()`.
Instead, Please use this library.

This library is designed to be widely used in the development of WSGI applications.
Please make use of your own WSGI Framework or projects that do not use WSGI Framework.

Requirements
============

- Python 3.3 or later
- click
- wsgi-static-middleware

License
=======

This software is licensed under the MIT License.


