Skip to main content

The Python micro framework for building gPRC application.

Project description

gRPCAlchemy

https://img.shields.io/pypi/v/grpcalchemy.svg https://img.shields.io/travis/GuangTianLi/grpcalchemy.svg Documentation Status https://img.shields.io/pypi/pyversions/grpcalchemy.svg https://codecov.io/gh/GuangTianLi/grpcalchemy/branch/master/graph/badge.svg

The Python micro framework for building gPRC application.

Installation

Disclaimer: Still at an early stage of development. Rapidly evolving APIs.
$ pipenv install grpcalchemy
✨🍰✨

Only Python 3.6+ is supported.

Example

Server

from grpcalchemy.orm import Message, StringField
from grpcalchemy import Server, Context

app = Server('server')

class HelloMessage(Message):
    __filename__ = 'hello'
    text = StringField()

@app.register
def test(request: HelloMessage, context: Context) -> HelloMessage:
    return HelloMessage(text=f'Hello {request.text}')

if __name__ == '__main__':
    app.run()

Features

  • gPRC Service Support

  • gRPC Client Support

  • gRPC Message Support
    • Scalar Value Types

    • Message Types

    • Repeated Field

    • Maps

  • Middleware And Listeners

  • Global Variable Support

  • Current App Context Support

  • Current Rpc Context Support

TODO

  • Stream Method Support

  • Error Handler Support

History

0.2.7-9(2019-04-16)

  • Improve Implement of Server with grpc.server

  • Support YAML file in Config Module

  • Improve Config Module

  • Add context in current rpc

0.2.5-6(2019-03-06)

  • Implement Rpc Context

  • Improve Config Module

0.2.4(2019-03-01)

  • Implement Globals Variable

  • Implement APP Context

0.2.2-3 (2019-02-26)

  • Improve Config module

  • Improve rpc_call_wrap

0.2.1 (2019-02-14)

  • Implement Own gRPC Server

  • Implement gRPC Server Test Client

0.2.0 (2019-01-30)

  • Change gRPCAlchemy Server register to register_blueprint

  • Make gRPCAlchemy Server inherit from Blueprint

  • Support Json Format

  • Support Inheritance Message

0.1.6 (2019-01-21)

  • Various bug-fixes

  • Improve tests

  • Change Client API

  • Add PreProcess And PostProcess

  • Import Config Object

  • Add Event Listener

  • Change Field Object Into Descriptor

0.1.5 (2018-12-14)

  • Various bug-fixes

  • Improve tests

  • Add client

0.1.4 (2018-12-11)

  • First release on PyPI.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

grpcalchemy-0.2.9.tar.gz (31.5 kB view hashes)

Uploaded Source

Built Distribution

grpcalchemy-0.2.9-py2.py3-none-any.whl (22.0 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page