Metadata-Version: 2.1
Name: magicoca
Version: 1.0.5
Summary: A communication library for Python
Author-Email: snowykami <snowykami@outlook.com>
License: MIT
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# magicoca
A communication library for Python

## 支持的通信方式
- 进程通信

## 稀奇古怪的语法

```python
from magicoca.chan import Chan

ch = Chan()

# 发送消息

ch << "hello"

# 接受消息

msg = str << ch

# 通道关闭

ch.close()

# 可跨进程通信
```