Metadata-Version: 1.1
Name: kobin
Version: 0.1.10
Summary: Type Hints friendly WSGI Framework for Python3.
Home-page: https://github.com/kobinpy/kobin
Author: Masashi Shibata <contact@c-bata.link>
Author-email: contact@c-bata.link
License: MIT License
Description: =====
        Kobin
        =====
        
        .. image:: https://travis-ci.org/kobinpy/kobin.svg?branch=master
           :target: https://travis-ci.org/kobinpy/kobin
        
        .. image:: https://badge.fury.io/py/kobin.svg
           :target: https://badge.fury.io/py/kobin
        
        .. image:: https://coveralls.io/repos/github/kobinpy/kobin/badge.svg?branch=master
           :target: https://coveralls.io/github/kobinpy/kobin?branch=master
        
        .. image:: https://codeclimate.com/github/c-bata/kobin/badges/gpa.svg
           :target: https://codeclimate.com/github/kobinpy/kobin
           :alt: Code Climate
        
        .. image:: https://readthedocs.org/projects/kobin/badge/?version=latest
           :target: http://kobin.readthedocs.org/en/latest/?badge=latest
           :alt: Documentation Status
        
        
        Type Hints friendly WSGI Framework for Python3.
        **This library is a pre-release. Expect missing docs and breaking API changes.**
        
        Kobin has following features.
        
        - Decorator based Routing System exploited Type Hints.
        - WSGI request and response Wrapper.
        - Provide type annotations from stub files.
        - and other convenient utilities...
        
        And Kobin has **NO** following features:
        
        - *WSGI Server Adapters*: Please use `WSGICLI <https://github.com/kobinpy/wsgicli>`_ or Gunicorn CLI.
        - *Serving static contents*: Please use `wsgi-static-middleware <https://github.com/kobinpy/wsgi-static-middleware>`_ or Nginx.
        - *Template Engine*: But Kobin provides template adapter for Jinja2.
        
        Requirements
        ============
        
        Supported python versions are python 3.6 or later.
        And Kobin has no required dependencies other than the Python Standard Libraries.
        
        The following packages are optional:
        
        * wsgicli - Command Line Interface for developing WSGI application.
        * jinja2 - Jinja2 is a full featured template engine for Python.
        
        Resources
        =========
        
        * `Documentation (English) <https://kobin.readthedocs.org/en/latest/>`_
        * `Documentation (Japanese) <https://kobin.readthedocs.org/ja/latest/>`_
        * `Github <https://github.com/kobinpy/kobin>`_
        * `PyPI <https://pypi.python.org/pypi/kobin>`_
        * `Kobin Todo <https://github.com/kobinpy/kobin-todo>`_
        
        
        Kobin's documentation is not yet complete very much.
        If you want to know the best practices in Kobin,
        Please check  `Kobin Todo <https://github.com/kobinpy/kobin-todo>`_ .
        
        .. image:: docs/source/_static/kobin-example.gif
           :alt: Kobin Todo Demo Animation
           :align: center
        
        License
        =======
        
        This software is licensed under the MIT License (See `LICENSE <./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 :: Dynamic Content :: CGI Tools/Libraries
Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Server
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3 :: Only
