-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
41 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,39 @@ | ||
Metadata-Version: 2.1 | ||
Name: i2cylib | ||
Version: 1.12.0 | ||
Version: 1.12.1 | ||
Summary: A Python library contains a lot of useful functions and tools | ||
Home-page: https://github.com/i2cy/i2cylib | ||
Author: I2cy Cloud | ||
Author-email: [email protected] | ||
License: UNKNOWN | ||
Project-URL: Bug Tracker, https://github.com/i2cy/i2cylib/issues | ||
Project-URL: Source Code, https://github.com/i2cy/i2cylib | ||
Project-URL: Documentation, https://github.com/i2cy/I2cylib/wiki/API-Document | ||
Description: # 主要包含 | ||
- `ICCode` i2cy常用的混淆算法 | ||
- `Dynkey` 动态验证密匙生成/验证工具 | ||
- `SQLiteDB` SQLite3数据库面向对象式API | ||
- `ICFat64` 类FAT虚拟文件系统 | ||
- `I2TCP` 高度封装的用户层通讯协议 | ||
- `PID` 异步PID模组 | ||
- `utils` 各种常用的小工具 | ||
|
||
# 安装方法 | ||
`pip install i2cylib` | ||
|
||
# 内嵌命令行工具 | ||
- `icen` 基于ICCode混淆算法的文件加密工具 | ||
- `i2cydbserver` 基于SQLite的数据库服务端 | ||
- `i2scan` 端口扫描、系统推断工具 | ||
|
||
# 环境需求 | ||
`Python3.6+` | ||
|
||
# API文档 | ||
[Project Wiki](https://github.com/i2cy/I2cylib/wiki/API-Document) | ||
Platform: UNKNOWN | ||
Classifier: Programming Language :: Python :: 3 | ||
Classifier: License :: OSI Approved :: MIT License | ||
Classifier: Operating System :: OS Independent | ||
Requires-Python: >=3.6 | ||
Description-Content-Type: text/markdown | ||
License-File: LICENSE | ||
|
||
# 主要包含 | ||
- `ICCode` i2cy常用的混淆算法 | ||
- `Dynkey` 动态验证密匙生成/验证工具 | ||
- `SQLiteDB` SQLite3数据库面向对象式API | ||
- `ICFat64` 类FAT虚拟文件系统 | ||
- `I2TCP` 高度封装的用户层通讯协议 | ||
- `PID` 异步PID模组 | ||
- `utils` 各种常用的小工具 | ||
|
||
# 安装方法 | ||
`pip install i2cylib` | ||
|
||
# 内嵌命令行工具 | ||
- `icen` 基于ICCode混淆算法的文件加密工具 | ||
- `i2cydbserver` 基于SQLite的数据库服务端 | ||
- `i2scan` 端口扫描、系统推断工具 | ||
|
||
# 环境需求 | ||
`Python3.6+` | ||
|
||
# API文档 | ||
[Project Wiki](https://github.com/i2cy/I2cylib/wiki/API-Document) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
LICENSE | ||
README.md | ||
pyproject.toml | ||
setup.py | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
|
||
setuptools.setup( | ||
name="i2cylib", # Replace with your own username | ||
version="1.12.0", | ||
version="1.12.1", | ||
author="I2cy Cloud", | ||
author_email="[email protected]", | ||
description="A Python library contains a lot of useful functions and tools", | ||
|