Browse Source

添加点描述

lqg 2 years ago
parent
commit
52e8294c14
4 changed files with 16 additions and 10 deletions
  1. 5 5
      README.md
  2. 2 1
      conf/config.json
  3. 1 4
      sharemouse/client.py
  4. 8 0
      sharemouse/utils/__init__.py

+ 5 - 5
README.md

@@ -5,7 +5,7 @@
 
 [English](./README.md) | [中文](./README.zh-CN.md)
 
-python 多设备鼠标键盘共享工具
+python 多设备鼠标,键盘,剪切板共享工具
 
 ![](https://git.yoqi.me/attachments/e92bbdd3-08bf-4b75-8526-a5bd68f75da0)
 
@@ -16,13 +16,13 @@ python 多设备鼠标键盘共享工具
 * Review [source code changes](https://git.yoqi.me/lyq/Saying/pulls) 
 * Leave a message to us: liuyuqi.gov@msn.cn
 
-source build:
+run:
 ```
-./gradlew assembleDebug
+virtualvenv .venv
+pip install -r requirements.txt
+python main.py
 ```
 
 ## License
 
-如果您在你的项目中使用我们的代码,请保留 License 声明,谢谢
-
 Licensed under the [Apache 2.0](LICENSE) © [liuyuqi.gov@msn.cn](https://github.com/jianboy)

+ 2 - 1
conf/config.json

@@ -1,6 +1,7 @@
 {
     "username": "",
-    "token": "",
     "pwd": "",
+    "node": "",
+    "token": "",
     "port": ""
 }

+ 1 - 4
sharemouse/client.py

@@ -1,13 +1,10 @@
-from email import header
-
-
 #!/usr/bin/env python
 # -*- encoding: utf-8 -*-
 '''
 @Contact :   liuyuqi.gov@msn.cn
 @Time    :   2022/10/30 19:48:21
 @License :   Copyright © 2017-2022 liuyuqi. All Rights Reserved.
-@Desc    :   
+@Desc    :   client 
 '''
 
 class Client(object):

+ 8 - 0
sharemouse/utils/__init__.py

@@ -0,0 +1,8 @@
+#!/usr/bin/env python
+# -*- encoding: utf-8 -*-
+'''
+@Contact :   liuyuqi.gov@msn.cn
+@Time    :   2022/11/09 02:33:42
+@License :   Copyright © 2017-2022 liuyuqi. All Rights Reserved.
+@Desc    :   
+'''