Metadata-Version: 2.1
Name: VmLogin
Version: 0.1.3
Summary: 操作VMLogin
Home-page: https://github.com/chensav/VmLogin
Author: chensav
Author-email: chensav@163.com
License: MIT
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.8.16
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests


### VmLogin API

操作VmLogin API的方法

#### 安装

#### 源码安装

```bash
git clone 
cd VmLogin
pip install -r requirements.txt
```

#### pip安装

```bash
pip install VmLogin
```


#### 使用

```python
# 本地接口
from VmLogin.local import Local

online = Local()
# 重启VmLogin
data = online.restart()
```
```python
# 远程接口
from VmLogin.online import Online
token = "your token"
online = Online(token=token)
# 获取所有配置
data = online.get_profile_list()
```


