pylhb 0.2.6__tar.gz → 0.3.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pylhb
3
- Version: 0.2.6
3
+ Version: 0.3.0
4
4
  Summary: Mr.Lee's Helpers
5
5
  License: Non-Commercial Use License
6
6
 
@@ -222,7 +222,7 @@ if __name__ == "__main__":
222
222
 
223
223
  ## 🌺mysqlite
224
224
 
225
- SQLite配置操作
225
+ SQLite操作
226
226
 
227
227
  使用示例:
228
228
 
@@ -189,7 +189,7 @@ if __name__ == "__main__":
189
189
 
190
190
  ## 🌺mysqlite
191
191
 
192
- SQLite配置操作
192
+ SQLite操作
193
193
 
194
194
  使用示例:
195
195
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pylhb"
3
- version = "0.2.6"
3
+ version = "0.3.0"
4
4
  description = "Mr.Lee's Helpers"
5
5
  readme = "README.md"
6
6
  license = {file = "LICENSE"}
@@ -0,0 +1,7 @@
1
+ from .myconfig import MyConfig
2
+ from .myjson import MyJSON
3
+ from .mylog import MyLog
4
+ from .myodbc import MSSQL
5
+ from .mysqlite import SQLite
6
+
7
+ __all__=["MyConfig","MyJSON","MyLog","MSSQL","SQLite"]
@@ -1,2 +0,0 @@
1
- def main() -> None:
2
- print("Hello from pylhb!")
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes