Skip to content

drinkwithwater/pyskynet

 
 

Repository files navigation

PySkynet

PySkynet is a library for using skynet in python. Including a lua library numsky for dealing with numpy.ndarray object.

Install

$ pip install pyskynet

Quick Start

Call lua from python

import pyskynet
import pyskynet.foreign as foreign

pyskynet.start()

lua_service = pyskynet.scriptservice("""
		local pyskynet = require "pyskynet"
		local foreign = require "pyskynet.foreign"
		pyskynet.start(function()
			foreign.dispatch("echo", function(a)
				print("[lua]arg from python:", a)
				return "lua pong"
			end)
		end)
""")

lua_re = foreign.call(lua_service, "echo", "python ping")
print("[python]call lua return:", lua_re)

Call python from lua

import pyskynet
import pyskynet.foreign as foreign

pyskynet.start()

@foreign.dispatch("echo")
def echo(data):
	print("[python]arg from lua:", data)
	return "python pong"

lua_service = pyskynet.scriptservice("""
		local pyskynet = require "pyskynet"
		local foreign = require "pyskynet.foreign"
		pyskynet.start(function()
			local a = foreign.call(".python", "echo", "rewrew")
			print("[lua]return from python:", a)
		end)
""")

About

PySkynet is a library for using skynet in python.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 72.4%
  • Lua 10.0%
  • C 8.5%
  • Python 5.8%
  • Cython 2.2%
  • C# 0.8%
  • Other 0.3%