Skip to content
/ buzi Public
forked from ybrs/buzi

buzi is a simple mikro services architecture

Notifications You must be signed in to change notification settings

tunavargi/buzi

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

buzi

buzi is a simple mikro service architecture

from buzi.deco import service, services

@service("foo")
def foo(a, b):
    return a + b


if __name__ == '__main__':
    from buzi.runner import run
    run()

and the calling code

from buzi.caller import call
print call("foo", 2, 4)

its in early stage so api and all is subject to change

install

About

buzi is a simple mikro services architecture

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%