A communication library for Python
from magicoca.chan import Chan ch = Chan() # 发送消息 ch << "hello" # 接受消息 msg = str << ch # 通道关闭 ch.close() # 可跨进程通信