Metadata-Version: 1.1
Name: pyrs
Version: 0.4
Summary: Python microservice framework
Home-page: http://pyrs.readthedocs.org/
Author: Csaba Palankai
Author-email: csaba.palankai@gmail.com
License: MIT
Description: =============================
        Python MicroService framework
        =============================
        
        .. image:: https://travis-ci.org/palankai/pyrs.svg?branch=master
            :target: https://travis-ci.org/palankai/pyrs
        
        .. image:: https://coveralls.io/repos/palankai/pyrs/badge.svg?branch=master&service=github
            :target: https://coveralls.io/github/palankai/pyrs?branch=master
        
        .. image:: https://readthedocs.org/projects/pyrs/badge/
            :target: http://pyrs.readthedocs.org/
            :alt: Documentation Status
        
        
        | Project homepage: `<https://github.com/palankai/pyrs>`_
        | Documentation: `<http://pyrs.readthedocs.org/>`_
        | Issues: `<https://github.com/palankai/pyrs/issues>`_
        |
        
        What is this package for
        ------------------------
        
        This package basically an umbrella for other packages. Ensure basic helpers
        for them like configuration, context, decorators, etc.
        
        The ecosystem
        -------------
        
        Schema validation, serialization
        ````````````````````````````````
        With this module you can define schemas then you can validate and serialize
        your data.
        
        | Project homepage: `<https://github.com/palankai/pyrs-schema>`_
        | Documentation: `<http://pyrs-schema.readthedocs.org/>`_
        |
        
        Restful web framework
        `````````````````````
        This module ensure a routing and dispatching through defined resources.
        Baased on schema you can define interface which would be validate.
        It's an independent solution could work with Flask, Django or even Odoo.
        
        | Project homepage: `<https://github.com/palankai/pyrs-resource>`_
        | Documentation: `<http://pyrs-resource.readthedocs.org/>`_
        |
        
        Swagger builder
        ```````````````
        If you know `Swagger <http://swagger.io/>`_ then you know in python world there
        is not that easy to use that. You have to make your documentation by hand.
        This package aim to make it much more easier.
        
        | Project homepage: `<https://github.com/palankai/pyrs-swagger>`_
        | Documentation: `<http://pyrs-swagger.readthedocs.org/>`_
        |
        
        Installation
        ------------
        
        .. code::
        
            $ pip install pyrs
        
        .. note::
           You have to install the other packages independently.
        
        
        Extending the exist functionality
        ---------------------------------
        
        The `pyrs.ext` and the `pyrs` itself are namespace packages.
        If you would like to extend an exist functionality of a package check that
        given package documentation for further information.
        
        If you would like to implement a new funcionality, just create a new package
        inside `pyrs` package. Make sure the `pyrs` package still remain namespace
        package.
        
        Dependencies
        ------------
        
        See requirements.txt. But The goal is less dependency as possible. Aim to work
        with python 2.7, 3.3, 3.4+ (tested agains them).
        
        Important caveats
        -----------------
        
        This code is in beta version. I working hard on write stable as possible API in
        the first place but while this code in 0.x version you should expect some major
        modification on the API.
        
        Contribution
        ------------
        
        I really welcome any comments!
        I would be happy if you fork my code or create pull requests.
        I've already really strong opinions what I want to achieve and how, though any
        help would be welcomed.
        
        Feel free drop a message to me!
        
Keywords: service,rest,restful,swagger,resource
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
