Metadata-Version: 1.1
Name: waspy
Version: 0.4.1
Summary: Async Microservices Framework
Home-page: https://github.com/wasp/waspy
Author: nhumrich
Author-email: nick at humrich dot us
License: Apache 2.0
Description: WASPy
        =====
        
        Waspy is the python framework for the `WASP
        project <https://github.com/wasp/wasp>`__. In other words its an
        asynchronous "transport-agnostic" web framework.
        
        Language agnostic concepts
        --------------------------
        
        While this framework is for python, the patterns used in wasp are
        language agnostic. You should be able to call other services in
        different languages assuming they all follow the same patterns. This
        framework has a pluggable architecture for the transport layer, which
        allows you to switch from http to using a message bus, or vice-versa.
        You could even listen on both at the same time without having to modify
        your code at all.
        
        Example
        -------
        
        Look at ``examples/`` folder for some quick examples
        
        Alpha
        -----
        
        This project is currently in alpha state. There are a lot of features
        missing.
        
        Features for beta: - [x]: HTTP Transport - [x]: Routing - [x]: RabbitMQ
        transporty - [x]: Support middlewares - [x]: Client library (for calling
        other services) - [x]: HTTP client transport (with envvar service
        discovery) - [ ]: RabbitMQ client transport
        
        Wish List: - [ ]: Transport classes for nats (nats.io) - [ ]: Transport
        classes for kafka - [ ]: pattern for synchronous "worker-tier" - [ ]:
        decorators for adding routes - [ ]: configuration package - [ ]:
        auto-reloading when in debug mode - [ ]: sentry integration - [ ]: jwt
        handling
        
        License
        -------
        
        Apache-2.0
        
        Installing
        ----------
        
        To install, just run ``pip install waspy``
        
        Developing
        ----------
        
        ``python setup.py develop``
        
Keywords: wasp async asyncio curio rest framework rabbitmq
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
