An open API service indexing awesome lists of open source software.

https://github.com/qin2dim/clashbyte

Clash.Meta 生态组件
https://github.com/qin2dim/clashbyte

clashmeta hysteria tuic tuic-v5

Last synced: 8 months ago
JSON representation

Clash.Meta 生态组件

Awesome Lists containing this project

README

          

# ClashByte
Clash & Clash.Meta 外部控制的 Python 实现

## Get started

1. Install package

```bash
pip install -U clashbyte
```

2. hello world

```python
from clashbyte import ClashMetaAPI

CONTROLLER_URL = "http://127.0.0.1:9090"

if __name__ == '__main__':
clash = ClashMetaAPI()
if clash.is_alive:
print(f"{clash.version=}")
```