Homi Save Abandoned

grpc framework like flask

Project README

warning

This project is no longer maintained. Creating a gRPC framework with Python was a big challenge. However, it became difficult to maintain the homei because I didn't use gRPC often after changing jobs. When I started this project, I made it hoping that gRPC would be actively used in many languages. Sadly, however, most of the gRPC's main customers are still in the go language. So I'm going to close this project and focus a little more on grpc-requests.

homi

PyPI - Python Version PyPI PyPI download month codecov ViewCount

micro grpc framework like flask

install

pip install homi

Feature

  • config less to run server
  • use decorator pattern to connect service method
  • auto parse request data to dict, you don't use grpc request object
  • auto set argument what you want
  • support all grpc service type(unary-unary,unary-stream,stream-unary,stream-stream)
  • TLS support
  • you just return dict type, not grpc object
  • support async grpc server
  • test your server very easy(HomiRealServerTestCase(support sync & async server), HomiTestCase(only sync server))

Example

check more example

from homi import App, Server
from homi.extend.service import reflection_service, health_service


from helloworld_pb2 import DESCRIPTOR

svc_desc = DESCRIPTOR.services_by_name['Greeter']

app = App(
    services=[
        svc_desc,
        reflection_service,
        health_service,
    ]
)

# unary-unary method
@app.method('helloworld.Greeter')
def SayHello(name, **kwargs):
    print(f"{name} is request SayHello")
    return {"message": f"Hello {name}!"}


# or 
@app.method('helloworld.Greeter','SayHello')
def hello(request,context):
    print(f"{request.name} is request SayHello")
    return {"message": f"Hello {request.name}!"}

# or
def hello_func(request,context):
    return {"message":"hi"}

app.register_method('helloworld.Greeter','SayHello',hello_func)

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

Service Example

The service class is similar to the blueprint of flask. You can separate files on a service basis or add services created by others. Also, we will be able to override the method already registered in the future.

from homi import App, Server,Service
from homi.extend.service import reflection_service, health_service

from helloworld_pb2 import DESCRIPTOR

app = App(services=[reflection_service,health_service,])

greeter = Service(DESCRIPTOR.services_by_name['Greeter'])

@greeter.method()
def SayHello(name, **kwargs):
    print(f"{name} is request SayHello")
    return {"message": f"Hello {name}!"}

# you can share service to pypi
app.add_service(greeter)

run server

# if app file name is app.py
homi run

# run ohter app file
homi run other_app.py

# change port
homi run -p 50055

# change total worker
homi run -w 5

# run TLS server
homi run --private_key server.key --certificate server.crt

Relation Project

  • grpc_requests : GRPC for Humans! python grpc reflection support client

Change Logs

  • 0.2.2

    • HotFix for TypedDict compatibility issue
  • 0.2.1

    • Feature - 3.6, 3.7 compatibility support
  • 0.2.0

    • Feature
      • #37 : support AsyncIO API Server! example
  • 0.1.7

    • Fix Bugs
      • remove HomiRealServerTestCase, HomiTestCase from init.py, please import test class direct
      • add cryptography dependency
  • 0.1.6

    • Feature
      • #30 : support atls server [Experimental]
  • 0.1.5

    • Feature
      • #29 : support tls server
  • 0.1.1

    • Fix Bugs
      • #23 : change support python version >= 3.8 (for TypedDict)
      • #22 : remove handler wrapper self arguments
  • 0.1.0

    • Breaking Change!!! #19
      • Add App
        • now you must make server using App class!
      • Add Service
        • You can separate the code by service or method.
      • Add Config
        • now you can use service config and overwrite in app
  • 0.0.4.alpha

    • add real server testcase
    • support grpc-health
  • 0.0.3

    • support all method type
    • add flak8 lint
    • add test case
    • #9 auto parse response message
  • 0.0.1 (init project)

    • run server using cli
    • helloworld example
Open Source Agenda is not affiliated with "Homi" Project. README Source: spaceone-dev/homi
Stars
50
Open Issues
4
Last Commit
1 year ago
License

Open Source Agenda Badge

Open Source Agenda Rating