53 lines
946 B
Python
53 lines
946 B
Python
# Python 兼容版本 3.8+
|
|
|
|
from typing import Optional
|
|
|
|
|
|
class IcaStatus:
|
|
@property
|
|
def login(self) -> bool:
|
|
...
|
|
@property
|
|
def online(self) -> bool:
|
|
...
|
|
@property
|
|
def self_id(self) -> Optional[bool]:
|
|
...
|
|
@property
|
|
def nick_name(self) -> Optional[str]:
|
|
...
|
|
@property
|
|
def ica_version(self) -> Optional[str]:
|
|
...
|
|
@property
|
|
def os_info(self) -> Optional[str]:
|
|
...
|
|
@property
|
|
def resident_set_size(self) -> Optional[str]:
|
|
...
|
|
@property
|
|
def head_used(self) -> Optional[str]:
|
|
...
|
|
@property
|
|
def load_average(self) -> Optional[str]:
|
|
...
|
|
|
|
|
|
class ReplyMessage:
|
|
...
|
|
|
|
|
|
class SendMessage:
|
|
...
|
|
|
|
|
|
class NewMessage:
|
|
def reply_with(self, message: str) -> SendMessage:
|
|
...
|
|
|
|
|
|
class IcaClient:
|
|
@staticmethod
|
|
async def send_message(client: "IcaClient", message: SendMessage) -> bool:
|
|
...
|