pyefun.核心支持库.系统处理 module

提示

系统处理

代码示例
 1import unittest
 2
 3from pyefun import *
 4
 5
 6class TestSystemProcessingBase(unittest.TestCase):
 7
 8    def test_1(self):
 9        pass
10        data = 运行("ipconfig")
11        print(data)
12
13    def test_2(self):
14        pass
15        # data = 取鼠标位置()
16        # print(data.x)
17        # print(data.y)
pyefun.核心支持库.系统处理.延时(: int)[源代码]
pyefun.核心支持库.系统处理.控制台_取当前编码为()[源代码]
pyefun.核心支持库.系统处理.控制台_设置编码为UTF8()[源代码]
pyefun.核心支持库.系统处理.系统_是否为linux系统()[源代码]
pyefun.核心支持库.系统处理.系统_是否为mac系统()[源代码]
pyefun.核心支持库.系统处理.系统_是否为window系统()[源代码]
pyefun.核心支持库.系统处理.运行(cmd)[源代码]