sycommon-python-lib 0.2.5a8__tar.gz → 0.2.5a9__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.
Files changed (291) hide show
  1. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/PKG-INFO +153 -152
  2. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/README.md +107 -107
  3. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/pyproject.toml +60 -59
  4. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/setup.cfg +4 -4
  5. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/__init__.py +28 -28
  6. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/cli.py +457 -457
  7. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/core/__init__.py +19 -19
  8. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/core/console.py +36 -36
  9. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/core/models.py +78 -78
  10. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/core/project.py +310 -310
  11. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/core/utils.py +31 -31
  12. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/__init__.py +1 -1
  13. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/agent/README.md.tpl +88 -88
  14. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/agent/__init__.py +1 -1
  15. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/agent/agent/__init__.py.tpl +6 -6
  16. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/agent/agent/main_agent.py.tpl +51 -51
  17. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/agent/agent/nodes/__init__.py.tpl +6 -6
  18. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/agent/agent/nodes/example_node.py.tpl +33 -33
  19. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/agent/agent/states/__init__.py.tpl +6 -6
  20. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/agent/agent/states/agent_state.py.tpl +30 -30
  21. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/agent/api/__init__.py.tpl +3 -3
  22. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/agent/api/query.py.tpl +30 -30
  23. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/agent/api/sse/__init__.py.tpl +6 -6
  24. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/agent/api/sse/agent.py.tpl +30 -30
  25. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/agent/app.py.tpl +95 -95
  26. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/agent/client/__init__.py.tpl +3 -3
  27. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/agent/db/__init__.py.tpl +8 -8
  28. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/agent/db/model/__init__.py.tpl +8 -8
  29. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/agent/db/model/entity.py.tpl +24 -24
  30. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/agent/db/service.py.tpl +37 -37
  31. {sycommon_python_lib-0.2.5a8/src/command/templates/web → sycommon_python_lib-0.2.5a9/src/command/templates/agent}/model/__init__.py.tpl +3 -3
  32. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/agent/model/parse.py.tpl +22 -22
  33. {sycommon_python_lib-0.2.5a8/src/command/templates/web → sycommon_python_lib-0.2.5a9/src/command/templates/agent}/tools/__init__.py.tpl +3 -3
  34. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/agent/tools/mq.py.tpl +66 -66
  35. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/base/.env.tpl +9 -9
  36. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/base/.gitignore.tpl +38 -38
  37. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/base/Dockerfile.tpl +19 -19
  38. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/base/README.md.tpl +62 -62
  39. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/base/__init__.py +1 -1
  40. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/base/app.py.tpl +66 -66
  41. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/base/app.yaml.tpl +29 -29
  42. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/base/client/FileServiceClient.py.tpl +15 -15
  43. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/base/model/file_info.py.tpl +14 -14
  44. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/base/requirements.txt.tpl +32 -32
  45. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/cli/README.md.tpl +54 -54
  46. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/cli/__init__.py +1 -1
  47. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/cli/app.py.tpl +45 -45
  48. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/cli/commands/__init__.py.tpl +1 -1
  49. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/cli/commands/hello.py.tpl +6 -6
  50. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/cli/pyproject.toml.tpl +14 -14
  51. {sycommon_python_lib-0.2.5a8/src/command/templates/agent → sycommon_python_lib-0.2.5a9/src/command/templates/cli}/tools/__init__.py.tpl +3 -3
  52. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/web/README.md.tpl +80 -80
  53. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/web/__init__.py +1 -1
  54. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/web/api/__init__.py.tpl +6 -6
  55. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/web/api/echo.py.tpl +28 -28
  56. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/web/api/sse/__init__.py.tpl +8 -8
  57. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/web/api/sse/echo.py.tpl +37 -37
  58. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/web/app.py.tpl +99 -99
  59. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/web/client/__init__.py.tpl +3 -3
  60. {sycommon_python_lib-0.2.5a8/src/command/templates/agent → sycommon_python_lib-0.2.5a9/src/command/templates/web}/model/__init__.py.tpl +3 -3
  61. {sycommon_python_lib-0.2.5a8/src/command/templates/cli → sycommon_python_lib-0.2.5a9/src/command/templates/web}/tools/__init__.py.tpl +3 -3
  62. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/web/tools/mq.py.tpl +29 -29
  63. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/nexus/__init__.py +40 -40
  64. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/__init__.py +3 -3
  65. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/__main__.py +6 -6
  66. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/agents/__init__.py +1 -1
  67. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/agents/factory.py +245 -245
  68. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/agents/prompts.py +469 -469
  69. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/cdp/__init__.py +1 -1
  70. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/cdp/browser.py +214 -214
  71. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/cdp/capabilities/__init__.py +1 -1
  72. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/cdp/capabilities/console.py +85 -85
  73. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/cdp/capabilities/dom.py +53 -53
  74. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/cdp/capabilities/network.py +119 -119
  75. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/cdp/capabilities/page_errors.py +91 -91
  76. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/cdp/capabilities/performance.py +67 -67
  77. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/cdp/capabilities/screenshot.py +61 -61
  78. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/cdp/client.py +148 -148
  79. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/cdp/protocol.py +133 -133
  80. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/cdp/repl.py +267 -267
  81. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/cli.py +558 -558
  82. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/commands/__init__.py +1 -1
  83. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/commands/cdp_cmd.py +271 -271
  84. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/commands/chat_cmd.py +283 -283
  85. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/commands/create_cmd.py +122 -122
  86. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/commands/evaluate_cmd.py +180 -180
  87. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/commands/init_cmd.py +164 -164
  88. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/commands/memory_cmd.py +168 -168
  89. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/commands/resume_cmd.py +234 -234
  90. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/commands/rollback_cmd.py +52 -52
  91. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/commands/run_cmd.py +112 -112
  92. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/core/__init__.py +31 -31
  93. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/core/backend.py +36 -36
  94. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/core/config.py +4 -4
  95. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/core/display.py +96 -96
  96. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/core/git_integration.py +198 -198
  97. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/core/llm.py +63 -63
  98. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/core/state.py +40 -40
  99. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/evaluate/__init__.py +1 -1
  100. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/evaluate/api_evaluator.py +696 -696
  101. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/memory/__init__.py +1 -1
  102. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/memory/compressor.py +134 -134
  103. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/memory/full.py +74 -74
  104. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/memory/hot.py +92 -92
  105. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/memory/manager.py +253 -253
  106. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/memory/warm.py +85 -85
  107. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/mode/__init__.py +1 -1
  108. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/mode/create.py +501 -501
  109. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/mode/optimize.py +40 -40
  110. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/models/__init__.py +1 -1
  111. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/models/config_models.py +212 -212
  112. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/rl/__init__.py +1 -1
  113. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/rl/baseline_tests.py +245 -245
  114. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/rl/checkpoint.py +497 -497
  115. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/rl/convergence.py +226 -226
  116. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/rl/diagnosis.py +195 -195
  117. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/rl/engine.py +1792 -1792
  118. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/rl/environment.py +489 -489
  119. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/rl/experience.py +230 -230
  120. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/rl/harness_prompts.py +93 -93
  121. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/rl/history.py +136 -136
  122. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/rl/optimization_logger.py +264 -264
  123. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/rl/pre_validation.py +106 -106
  124. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/rl/reward.py +132 -132
  125. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/rl/strategy_bandit.py +291 -291
  126. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/rl/strategy_generator.py +218 -218
  127. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/rl/strategy_prompts.py +97 -97
  128. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycli/skills/__init__.py +5 -5
  129. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/agent/__init__.py +176 -176
  130. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/agent/agent_manager.py +445 -445
  131. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/agent/chat_events.py +447 -447
  132. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/agent/deep_agent.py +752 -752
  133. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/agent/mcp/__init__.py +30 -30
  134. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/agent/mcp/models.py +56 -56
  135. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/agent/mcp/tool_loader.py +218 -211
  136. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/agent/multi_agent_team.py +723 -723
  137. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/agent/sandbox/__init__.py +103 -103
  138. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/agent/sandbox/file_ops.py +632 -632
  139. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/agent/sandbox/http_sandbox_backend.py +1355 -1355
  140. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/agent/sandbox/minio_sync.py +513 -513
  141. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/agent/sandbox/sandbox_pool.py +267 -267
  142. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/agent/sandbox/sandbox_recovery.py +201 -201
  143. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/agent/sandbox/session.py +82 -82
  144. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/agent/summarization_utils.py +192 -192
  145. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/auth/__init__.py +69 -69
  146. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/auth/ldap_service.py +340 -340
  147. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/auth/oa_cache.py +95 -95
  148. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/auth/oa_crypto.py +60 -60
  149. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/auth/oa_service.py +201 -201
  150. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/auth/wecom_ldap_service.py +533 -533
  151. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/config/Config.py +175 -175
  152. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/config/DatabaseConfig.py +34 -34
  153. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/config/ElasticsearchConfig.py +65 -65
  154. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/config/EmbeddingConfig.py +15 -15
  155. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/config/LLMConfig.py +20 -20
  156. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/config/LangfuseConfig.py +15 -15
  157. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/config/MQConfig.py +15 -15
  158. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/config/PgConfig.py +54 -54
  159. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/config/RedisConfig.py +150 -150
  160. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/config/RerankerConfig.py +14 -14
  161. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/config/SentryConfig.py +13 -13
  162. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/config/XxlJobConfig.py +17 -17
  163. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/database/async_base_db_service.py +36 -36
  164. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/database/async_database_service.py +115 -115
  165. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/database/base_db_service.py +30 -30
  166. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/database/database_service.py +98 -98
  167. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/database/elasticsearch_service.py +104 -104
  168. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/database/pg_checkpoint_service.py +132 -132
  169. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/database/redis_service.py +767 -767
  170. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/database/token_usage_db_service.py +181 -181
  171. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/health/health_check.py +17 -17
  172. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/health/metrics.py +13 -13
  173. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/health/ping.py +13 -13
  174. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/heartbeat_process/__init__.py +67 -67
  175. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/heartbeat_process/heartbeat_config.py +137 -137
  176. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/heartbeat_process/heartbeat_process_manager.py +299 -299
  177. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/heartbeat_process/heartbeat_process_worker.py +466 -466
  178. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/llm/embedding.py +455 -455
  179. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/llm/get_llm.py +193 -193
  180. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/llm/llm_logger.py +77 -77
  181. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/llm/llm_tokens.py +127 -127
  182. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/llm/llm_with_token_tracking.py +259 -259
  183. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/llm/native_with_fallback_runnable.py +201 -201
  184. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/llm/output_fixing_runnable.py +216 -216
  185. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/llm/struct_token.py +545 -514
  186. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/llm/sy_langfuse.py +120 -120
  187. sycommon_python_lib-0.2.5a9/src/sycommon/llm/tiktoken_cache/9b5ad71b2ce5302211f9c61530b329a4922fc6a4 +100256 -0
  188. sycommon_python_lib-0.2.5a9/src/sycommon/llm/tiktoken_cache/fb374d419588a4632f3f557e76b4b70aebbca790 +199998 -0
  189. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/llm/token_usage_es_service.py +539 -539
  190. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/llm/token_usage_mysql_service.py +818 -818
  191. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/llm/usage_token.py +186 -186
  192. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/logging/async_sql_logger.py +65 -65
  193. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/logging/kafka_log.py +339 -339
  194. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/logging/logger_levels.py +23 -23
  195. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/logging/logger_wrapper.py +25 -25
  196. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/logging/process_logger.py +177 -177
  197. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/logging/sql_logger.py +53 -53
  198. sycommon_python_lib-0.2.5a9/src/sycommon/mcp_server/__init__.py +13 -0
  199. sycommon_python_lib-0.2.5a9/src/sycommon/mcp_server/server.py +184 -0
  200. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/middleware/background_execution.py +568 -568
  201. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/middleware/context.py +5 -5
  202. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/middleware/cors.py +16 -16
  203. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/middleware/docs.py +30 -30
  204. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/middleware/exception.py +79 -79
  205. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/middleware/middleware.py +55 -51
  206. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/middleware/monitor_memory.py +22 -22
  207. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/middleware/mq.py +8 -8
  208. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/middleware/sandbox.py +1713 -1713
  209. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/middleware/timeout.py +44 -44
  210. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/middleware/token_tracking.py +173 -173
  211. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/middleware/tool_result_truncation.py +273 -273
  212. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/middleware/traceid.py +312 -312
  213. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/models/base_http.py +101 -101
  214. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/models/log.py +30 -30
  215. sycommon_python_lib-0.2.5a9/src/sycommon/models/mcp_server_config.py +36 -0
  216. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/models/mqlistener_config.py +39 -39
  217. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/models/mqmsg_model.py +11 -11
  218. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/models/mqsend_config.py +8 -8
  219. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/models/sandbox.py +341 -341
  220. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/models/sso_user.py +66 -66
  221. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/models/token_usage.py +25 -25
  222. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/models/token_usage_mysql.py +59 -59
  223. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/models/xxljob_handler_config.py +11 -11
  224. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/notice/__init__.py +5 -5
  225. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/notice/uvicorn_monitor.py +346 -346
  226. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/notice/wecom_message.py +328 -328
  227. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/rabbitmq/process_pool_consumer.py +850 -850
  228. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/rabbitmq/rabbitmq_client.py +494 -455
  229. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/rabbitmq/rabbitmq_pool.py +324 -324
  230. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/rabbitmq/rabbitmq_service.py +242 -242
  231. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/rabbitmq/rabbitmq_service_client_manager.py +277 -252
  232. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/rabbitmq/rabbitmq_service_connection_monitor.py +138 -108
  233. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/rabbitmq/rabbitmq_service_consumer_manager.py +258 -243
  234. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/rabbitmq/rabbitmq_service_core.py +130 -130
  235. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/rabbitmq/rabbitmq_service_producer_manager.py +231 -231
  236. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/sentry/sy_sentry.py +35 -35
  237. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/services.py +553 -521
  238. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/sse/__init__.py +4 -4
  239. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/sse/event.py +97 -97
  240. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/sse/sse.py +289 -289
  241. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/synacos/__init__.py +9 -9
  242. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/synacos/example.py +248 -248
  243. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/synacos/example2.py +227 -227
  244. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/synacos/feign.py +313 -313
  245. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/synacos/feign_client.py +435 -435
  246. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/synacos/nacos_client_base.py +171 -171
  247. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/synacos/nacos_config_manager.py +163 -163
  248. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/synacos/nacos_heartbeat_manager.py +245 -245
  249. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/synacos/nacos_service.py +286 -286
  250. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/synacos/nacos_service_discovery.py +245 -245
  251. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/synacos/nacos_service_registration.py +263 -263
  252. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/synacos/param.py +75 -75
  253. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/tests/deep_agent_server.py +535 -535
  254. sycommon_python_lib-0.2.5a9/src/sycommon/tests/test_consumer_recovery.py +283 -0
  255. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/tests/test_deep_agent.py +160 -160
  256. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/tests/test_email.py +172 -172
  257. sycommon_python_lib-0.2.5a9/src/sycommon/tests/test_encoding_cache.py +148 -0
  258. sycommon_python_lib-0.2.5a9/src/sycommon/tests/test_mcp_server.py +401 -0
  259. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/tests/test_minimax_reasoning.py +290 -290
  260. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/tests/test_mq.py +128 -128
  261. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/tests/test_oa_login.py +229 -229
  262. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/tests/test_real_summarization.py +166 -166
  263. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/tests/test_summarization_config.py +463 -463
  264. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/tests/test_summarization_real.py +329 -329
  265. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/tools/async_utils.py +26 -26
  266. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/tools/docs.py +42 -42
  267. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/tools/env.py +62 -62
  268. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/tools/merge_headers.py +135 -135
  269. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/tools/snowflake.py +263 -263
  270. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/tools/syemail.py +173 -173
  271. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/tools/timing.py +73 -73
  272. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/xxljob/__init__.py +3 -3
  273. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/xxljob/xxljob_service.py +196 -196
  274. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon_python_lib.egg-info/PKG-INFO +153 -152
  275. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon_python_lib.egg-info/SOURCES.txt +8 -0
  276. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon_python_lib.egg-info/requires.txt +9 -8
  277. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/tests/test_sycli.py +1873 -1873
  278. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/base/client/__init__.py.tpl +0 -0
  279. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/command/templates/base/model/__init__.py.tpl +0 -0
  280. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/__init__.py +0 -0
  281. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/config/__init__.py +0 -0
  282. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/health/__init__.py +0 -0
  283. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/llm/__init__.py +0 -0
  284. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/logging/__init__.py +0 -0
  285. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/middleware/__init__.py +0 -0
  286. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/models/__init__.py +0 -0
  287. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/sentry/__init__.py +0 -0
  288. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon/tools/__init__.py +0 -0
  289. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon_python_lib.egg-info/dependency_links.txt +0 -0
  290. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon_python_lib.egg-info/entry_points.txt +0 -0
  291. {sycommon_python_lib-0.2.5a8 → sycommon_python_lib-0.2.5a9}/src/sycommon_python_lib.egg-info/top_level.txt +0 -0
@@ -1,152 +1,153 @@
1
- Metadata-Version: 2.4
2
- Name: sycommon-python-lib
3
- Version: 0.2.5a8
4
- Summary: Add your description here
5
- Requires-Python: >=3.11
6
- Description-Content-Type: text/markdown
7
- Requires-Dist: aio-pika==9.6.2
8
- Requires-Dist: aiohttp==3.13.5
9
- Requires-Dist: aiomysql==0.3.2
10
- Requires-Dist: anyio==4.12.1
11
- Requires-Dist: decorator==5.3.1
12
- Requires-Dist: deepagents==0.6.1
13
- Requires-Dist: elasticsearch==9.4.0
14
- Requires-Dist: fastapi==0.136.1
15
- Requires-Dist: jinja2==3.1.6
16
- Requires-Dist: kafka-python==2.3.1
17
- Requires-Dist: langchain==1.3.1
18
- Requires-Dist: langchain-core==1.4.0
19
- Requires-Dist: langchain-openai==1.2.1
20
- Requires-Dist: langfuse==4.6.1
21
- Requires-Dist: langgraph==1.2.0
22
- Requires-Dist: langgraph-checkpoint-postgres==3.1.0
23
- Requires-Dist: langgraph-checkpoint-redis==0.4.1
24
- Requires-Dist: ldap3==2.9.1
25
- Requires-Dist: loguru==0.7.3
26
- Requires-Dist: mysql-connector-python==9.6.0
27
- Requires-Dist: nacos-sdk-python<3.0,==2.0.11
28
- Requires-Dist: psutil==7.2.2
29
- Requires-Dist: pyxxl==0.4.6
30
- Requires-Dist: pydantic==2.13.4
31
- Requires-Dist: python-dotenv==1.2.2
32
- Requires-Dist: python-multipart==0.0.29
33
- Requires-Dist: pyyaml==6.0.3
34
- Requires-Dist: redis==7.3.0
35
- Requires-Dist: sentry-sdk[fastapi]==2.60.0
36
- Requires-Dist: sqlalchemy[asyncio]==2.0.48
37
- Requires-Dist: starlette[full]==1.0.0
38
- Requires-Dist: tiktoken==0.13.0
39
- Requires-Dist: uvicorn==0.47.0
40
- Requires-Dist: wecom-aibot-python-sdk==1.0.2
41
- Requires-Dist: twine==6.2.0
42
- Requires-Dist: minio==7.2.20
43
- Requires-Dist: langchain-mcp-adapters==0.2.2
44
- Requires-Dist: psycopg[binary,pool]==3.3.4
45
-
46
- # sycommon-python-lib
47
-
48
- 常用 python 依赖库
49
-
50
- pip install sycommon-python-lib -i http://192.168.2.174:8081/repository/pypy-group/simple/ --trusted-host 192.168.2.174
51
-
52
- ## Getting started
53
-
54
- To make it easy for you to get started with GitLab, here's a list of recommended next steps.
55
-
56
- Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)!
57
-
58
- ## Add your files
59
-
60
- - [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files
61
- - [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command:
62
-
63
- ```
64
- cd existing_repo
65
- git remote add origin http://git.syf.com/syai/sycommon-python-lib.git
66
- git branch -M main
67
- git push -uf origin main
68
- ```
69
-
70
- ## Integrate with your tools
71
-
72
- - [ ] [Set up project integrations](http://git.syf.com/syai/sycommon-python-lib/-/settings/integrations)
73
-
74
- ## Collaborate with your team
75
-
76
- - [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/)
77
- - [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html)
78
- - [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically)
79
- - [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/)
80
- - [ ] [Automatically merge when pipeline succeeds](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html)
81
-
82
- ## Test and Deploy
83
-
84
- Use the built-in continuous integration in GitLab.
85
-
86
- - [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html)
87
- - [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing(SAST)](https://docs.gitlab.com/ee/user/application_security/sast/)
88
- - [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html)
89
- - [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/)
90
- - [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html)
91
-
92
- ---
93
-
94
- # Editing this README
95
-
96
- When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thank you to [makeareadme.com](https://www.makeareadme.com/) for this template.
97
-
98
- ## Suggestions for a good README
99
-
100
- Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information.
101
-
102
- ## Name
103
-
104
- Choose a self-explaining name for your project.
105
-
106
- ## Description
107
-
108
- Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors.
109
-
110
- ## Badges
111
-
112
- On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge.
113
-
114
- ## Visuals
115
-
116
- Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method.
117
-
118
- ## Installation
119
-
120
- Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection.
121
-
122
- ## Usage
123
-
124
- Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README.
125
-
126
- ## Support
127
-
128
- Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc.
129
-
130
- ## Roadmap
131
-
132
- If you have ideas for releases in the future, it is a good idea to list them in the README.
133
-
134
- ## Contributing
135
-
136
- State if you are open to contributions and what your requirements are for accepting them.
137
-
138
- For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self.
139
-
140
- You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser.
141
-
142
- ## Authors and acknowledgment
143
-
144
- Show your appreciation to those who have contributed to the project.
145
-
146
- ## License
147
-
148
- For open source projects, say how it is licensed.
149
-
150
- ## Project status
151
-
152
- If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers.
1
+ Metadata-Version: 2.4
2
+ Name: sycommon-python-lib
3
+ Version: 0.2.5a9
4
+ Summary: Add your description here
5
+ Requires-Python: >=3.11
6
+ Description-Content-Type: text/markdown
7
+ Requires-Dist: aio-pika==9.6.2
8
+ Requires-Dist: aiohttp==3.13.5
9
+ Requires-Dist: aiomysql==0.3.2
10
+ Requires-Dist: anyio==4.13.0
11
+ Requires-Dist: decorator==5.3.1
12
+ Requires-Dist: deepagents==0.6.3
13
+ Requires-Dist: elasticsearch==9.4.0
14
+ Requires-Dist: fastapi==0.136.1
15
+ Requires-Dist: jinja2==3.1.6
16
+ Requires-Dist: kafka-python==2.3.1
17
+ Requires-Dist: langchain==1.3.1
18
+ Requires-Dist: langchain-core==1.4.0
19
+ Requires-Dist: langchain-openai==1.2.1
20
+ Requires-Dist: langfuse==4.6.1
21
+ Requires-Dist: langgraph==1.2.1
22
+ Requires-Dist: langgraph-checkpoint-postgres==3.1.0
23
+ Requires-Dist: langgraph-checkpoint-redis==0.4.1
24
+ Requires-Dist: ldap3==2.9.1
25
+ Requires-Dist: loguru==0.7.3
26
+ Requires-Dist: mysql-connector-python==9.7.0
27
+ Requires-Dist: nacos-sdk-python<3.0,==2.0.11
28
+ Requires-Dist: psutil==7.2.2
29
+ Requires-Dist: pyxxl==0.4.7
30
+ Requires-Dist: pydantic==2.13.4
31
+ Requires-Dist: python-dotenv==1.2.2
32
+ Requires-Dist: python-multipart==0.0.29
33
+ Requires-Dist: pyyaml==6.0.3
34
+ Requires-Dist: redis==7.4.0
35
+ Requires-Dist: sentry-sdk[fastapi]==2.60.0
36
+ Requires-Dist: sqlalchemy[asyncio]==2.0.49
37
+ Requires-Dist: starlette[full]==1.0.1
38
+ Requires-Dist: tiktoken==0.13.0
39
+ Requires-Dist: uvicorn==0.47.0
40
+ Requires-Dist: wecom-aibot-python-sdk==1.0.2
41
+ Requires-Dist: twine==6.2.0
42
+ Requires-Dist: minio==7.2.20
43
+ Requires-Dist: langchain-mcp-adapters==0.2.2
44
+ Requires-Dist: fastapi-mcp==0.4.0
45
+ Requires-Dist: psycopg[binary,pool]==3.3.4
46
+
47
+ # sycommon-python-lib
48
+
49
+ 常用 python 依赖库
50
+
51
+ pip install sycommon-python-lib -i http://192.168.2.174:8081/repository/pypy-group/simple/ --trusted-host 192.168.2.174
52
+
53
+ ## Getting started
54
+
55
+ To make it easy for you to get started with GitLab, here's a list of recommended next steps.
56
+
57
+ Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)!
58
+
59
+ ## Add your files
60
+
61
+ - [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files
62
+ - [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command:
63
+
64
+ ```
65
+ cd existing_repo
66
+ git remote add origin http://git.syf.com/syai/sycommon-python-lib.git
67
+ git branch -M main
68
+ git push -uf origin main
69
+ ```
70
+
71
+ ## Integrate with your tools
72
+
73
+ - [ ] [Set up project integrations](http://git.syf.com/syai/sycommon-python-lib/-/settings/integrations)
74
+
75
+ ## Collaborate with your team
76
+
77
+ - [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/)
78
+ - [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html)
79
+ - [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically)
80
+ - [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/)
81
+ - [ ] [Automatically merge when pipeline succeeds](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html)
82
+
83
+ ## Test and Deploy
84
+
85
+ Use the built-in continuous integration in GitLab.
86
+
87
+ - [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html)
88
+ - [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing(SAST)](https://docs.gitlab.com/ee/user/application_security/sast/)
89
+ - [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html)
90
+ - [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/)
91
+ - [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html)
92
+
93
+ ---
94
+
95
+ # Editing this README
96
+
97
+ When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thank you to [makeareadme.com](https://www.makeareadme.com/) for this template.
98
+
99
+ ## Suggestions for a good README
100
+
101
+ Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information.
102
+
103
+ ## Name
104
+
105
+ Choose a self-explaining name for your project.
106
+
107
+ ## Description
108
+
109
+ Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors.
110
+
111
+ ## Badges
112
+
113
+ On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge.
114
+
115
+ ## Visuals
116
+
117
+ Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method.
118
+
119
+ ## Installation
120
+
121
+ Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection.
122
+
123
+ ## Usage
124
+
125
+ Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README.
126
+
127
+ ## Support
128
+
129
+ Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc.
130
+
131
+ ## Roadmap
132
+
133
+ If you have ideas for releases in the future, it is a good idea to list them in the README.
134
+
135
+ ## Contributing
136
+
137
+ State if you are open to contributions and what your requirements are for accepting them.
138
+
139
+ For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self.
140
+
141
+ You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser.
142
+
143
+ ## Authors and acknowledgment
144
+
145
+ Show your appreciation to those who have contributed to the project.
146
+
147
+ ## License
148
+
149
+ For open source projects, say how it is licensed.
150
+
151
+ ## Project status
152
+
153
+ If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers.
@@ -1,107 +1,107 @@
1
- # sycommon-python-lib
2
-
3
- 常用 python 依赖库
4
-
5
- pip install sycommon-python-lib -i http://192.168.2.174:8081/repository/pypy-group/simple/ --trusted-host 192.168.2.174
6
-
7
- ## Getting started
8
-
9
- To make it easy for you to get started with GitLab, here's a list of recommended next steps.
10
-
11
- Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)!
12
-
13
- ## Add your files
14
-
15
- - [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files
16
- - [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command:
17
-
18
- ```
19
- cd existing_repo
20
- git remote add origin http://git.syf.com/syai/sycommon-python-lib.git
21
- git branch -M main
22
- git push -uf origin main
23
- ```
24
-
25
- ## Integrate with your tools
26
-
27
- - [ ] [Set up project integrations](http://git.syf.com/syai/sycommon-python-lib/-/settings/integrations)
28
-
29
- ## Collaborate with your team
30
-
31
- - [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/)
32
- - [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html)
33
- - [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically)
34
- - [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/)
35
- - [ ] [Automatically merge when pipeline succeeds](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html)
36
-
37
- ## Test and Deploy
38
-
39
- Use the built-in continuous integration in GitLab.
40
-
41
- - [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html)
42
- - [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing(SAST)](https://docs.gitlab.com/ee/user/application_security/sast/)
43
- - [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html)
44
- - [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/)
45
- - [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html)
46
-
47
- ---
48
-
49
- # Editing this README
50
-
51
- When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thank you to [makeareadme.com](https://www.makeareadme.com/) for this template.
52
-
53
- ## Suggestions for a good README
54
-
55
- Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information.
56
-
57
- ## Name
58
-
59
- Choose a self-explaining name for your project.
60
-
61
- ## Description
62
-
63
- Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors.
64
-
65
- ## Badges
66
-
67
- On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge.
68
-
69
- ## Visuals
70
-
71
- Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method.
72
-
73
- ## Installation
74
-
75
- Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection.
76
-
77
- ## Usage
78
-
79
- Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README.
80
-
81
- ## Support
82
-
83
- Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc.
84
-
85
- ## Roadmap
86
-
87
- If you have ideas for releases in the future, it is a good idea to list them in the README.
88
-
89
- ## Contributing
90
-
91
- State if you are open to contributions and what your requirements are for accepting them.
92
-
93
- For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self.
94
-
95
- You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser.
96
-
97
- ## Authors and acknowledgment
98
-
99
- Show your appreciation to those who have contributed to the project.
100
-
101
- ## License
102
-
103
- For open source projects, say how it is licensed.
104
-
105
- ## Project status
106
-
107
- If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers.
1
+ # sycommon-python-lib
2
+
3
+ 常用 python 依赖库
4
+
5
+ pip install sycommon-python-lib -i http://192.168.2.174:8081/repository/pypy-group/simple/ --trusted-host 192.168.2.174
6
+
7
+ ## Getting started
8
+
9
+ To make it easy for you to get started with GitLab, here's a list of recommended next steps.
10
+
11
+ Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)!
12
+
13
+ ## Add your files
14
+
15
+ - [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files
16
+ - [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command:
17
+
18
+ ```
19
+ cd existing_repo
20
+ git remote add origin http://git.syf.com/syai/sycommon-python-lib.git
21
+ git branch -M main
22
+ git push -uf origin main
23
+ ```
24
+
25
+ ## Integrate with your tools
26
+
27
+ - [ ] [Set up project integrations](http://git.syf.com/syai/sycommon-python-lib/-/settings/integrations)
28
+
29
+ ## Collaborate with your team
30
+
31
+ - [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/)
32
+ - [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html)
33
+ - [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically)
34
+ - [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/)
35
+ - [ ] [Automatically merge when pipeline succeeds](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html)
36
+
37
+ ## Test and Deploy
38
+
39
+ Use the built-in continuous integration in GitLab.
40
+
41
+ - [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html)
42
+ - [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing(SAST)](https://docs.gitlab.com/ee/user/application_security/sast/)
43
+ - [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html)
44
+ - [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/)
45
+ - [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html)
46
+
47
+ ---
48
+
49
+ # Editing this README
50
+
51
+ When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thank you to [makeareadme.com](https://www.makeareadme.com/) for this template.
52
+
53
+ ## Suggestions for a good README
54
+
55
+ Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information.
56
+
57
+ ## Name
58
+
59
+ Choose a self-explaining name for your project.
60
+
61
+ ## Description
62
+
63
+ Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors.
64
+
65
+ ## Badges
66
+
67
+ On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge.
68
+
69
+ ## Visuals
70
+
71
+ Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method.
72
+
73
+ ## Installation
74
+
75
+ Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection.
76
+
77
+ ## Usage
78
+
79
+ Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README.
80
+
81
+ ## Support
82
+
83
+ Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc.
84
+
85
+ ## Roadmap
86
+
87
+ If you have ideas for releases in the future, it is a good idea to list them in the README.
88
+
89
+ ## Contributing
90
+
91
+ State if you are open to contributions and what your requirements are for accepting them.
92
+
93
+ For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self.
94
+
95
+ You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser.
96
+
97
+ ## Authors and acknowledgment
98
+
99
+ Show your appreciation to those who have contributed to the project.
100
+
101
+ ## License
102
+
103
+ For open source projects, say how it is licensed.
104
+
105
+ ## Project status
106
+
107
+ If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers.