maapy 0.1.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.
- maapy-0.1.0/.gitignore +10 -0
- maapy-0.1.0/.idea/.gitignore +10 -0
- maapy-0.1.0/.idea/inspectionProfiles/Project_Default.xml +80 -0
- maapy-0.1.0/.idea/inspectionProfiles/profiles_settings.xml +7 -0
- maapy-0.1.0/.idea/maapy.iml +15 -0
- maapy-0.1.0/.idea/misc.xml +7 -0
- maapy-0.1.0/.idea/modules.xml +8 -0
- maapy-0.1.0/.idea/pyLspTools.xml +34 -0
- maapy-0.1.0/.idea/pyProjectModel.xml +7 -0
- maapy-0.1.0/.idea/vcs.xml +6 -0
- maapy-0.1.0/.idea/workspace.xml +199 -0
- maapy-0.1.0/.python-version +1 -0
- maapy-0.1.0/LICENSE +8 -0
- maapy-0.1.0/PKG-INFO +24 -0
- maapy-0.1.0/README.md +1 -0
- maapy-0.1.0/docs/DESIGN.md +911 -0
- maapy-0.1.0/docs/maa-core-integration.md +1256 -0
- maapy-0.1.0/docs/type_coverage_checklist.md +140 -0
- maapy-0.1.0/examples/basic_usage.py +730 -0
- maapy-0.1.0/pyproject.toml +33 -0
- maapy-0.1.0/src/maapy/__init__.py +93 -0
- maapy-0.1.0/src/maapy/_callback/__init__.py +9 -0
- maapy-0.1.0/src/maapy/_callback/common.py +47 -0
- maapy-0.1.0/src/maapy/_callback/global_taskchain.py +282 -0
- maapy-0.1.0/src/maapy/_callback/parser.py +851 -0
- maapy-0.1.0/src/maapy/_callback/payloads.py +392 -0
- maapy-0.1.0/src/maapy/_callback/subtask.py +70 -0
- maapy-0.1.0/src/maapy/_callback/subtask_roguelike.py +164 -0
- maapy-0.1.0/src/maapy/_callback/subtask_structured.py +491 -0
- maapy-0.1.0/src/maapy/_ffi.py +129 -0
- maapy-0.1.0/src/maapy/_json.py +38 -0
- maapy-0.1.0/src/maapy/_loader.py +77 -0
- maapy-0.1.0/src/maapy/_lowlevel.py +238 -0
- maapy-0.1.0/src/maapy/callback.py +314 -0
- maapy-0.1.0/src/maapy/client.py +843 -0
- maapy-0.1.0/src/maapy/connection.py +50 -0
- maapy-0.1.0/src/maapy/constants.py +325 -0
- maapy-0.1.0/src/maapy/events/__init__.py +295 -0
- maapy-0.1.0/src/maapy/events/_base.py +26 -0
- maapy-0.1.0/src/maapy/events/global_events.py +195 -0
- maapy-0.1.0/src/maapy/events/rules.py +380 -0
- maapy-0.1.0/src/maapy/events/subtask_events.py +654 -0
- maapy-0.1.0/src/maapy/events/taskchain_events.py +40 -0
- maapy-0.1.0/src/maapy/exceptions.py +38 -0
- maapy-0.1.0/src/maapy/game_data.py +119 -0
- maapy-0.1.0/src/maapy/instance.py +274 -0
- maapy-0.1.0/src/maapy/py.typed +0 -0
- maapy-0.1.0/src/maapy/tasks/__init__.py +55 -0
- maapy-0.1.0/src/maapy/tasks/_base.py +130 -0
- maapy-0.1.0/src/maapy/tasks/award.py +20 -0
- maapy-0.1.0/src/maapy/tasks/closedown.py +21 -0
- maapy-0.1.0/src/maapy/tasks/copilot.py +106 -0
- maapy-0.1.0/src/maapy/tasks/custom.py +110 -0
- maapy-0.1.0/src/maapy/tasks/debug.py +14 -0
- maapy-0.1.0/src/maapy/tasks/depot.py +14 -0
- maapy-0.1.0/src/maapy/tasks/fight.py +52 -0
- maapy-0.1.0/src/maapy/tasks/infrast.py +35 -0
- maapy-0.1.0/src/maapy/tasks/mall.py +23 -0
- maapy-0.1.0/src/maapy/tasks/operbox.py +14 -0
- maapy-0.1.0/src/maapy/tasks/reclamation.py +21 -0
- maapy-0.1.0/src/maapy/tasks/recruit.py +82 -0
- maapy-0.1.0/src/maapy/tasks/roguelike.py +58 -0
- maapy-0.1.0/src/maapy/tasks/startup.py +23 -0
- maapy-0.1.0/src/maapy/utils/__init__.py +1 -0
- maapy-0.1.0/src/maapy/utils/image.py +27 -0
- maapy-0.1.0/tests/min.py +144 -0
- maapy-0.1.0/tests/test.py +142 -0
- maapy-0.1.0/tests/test_connection_extras.py +68 -0
- maapy-0.1.0/tests/test_depot_operbox.py +185 -0
- maapy-0.1.0/tests/test_event_rules.py +105 -0
- maapy-0.1.0/tests/test_game_data.py +61 -0
- maapy-0.1.0/tests/test_subtask_typed_events.py +480 -0
- maapy-0.1.0/tests/test_task_definitions.py +104 -0
- maapy-0.1.0/tests/test_taskchain_global_events.py +156 -0
- maapy-0.1.0/uv.lock +165 -0
maapy-0.1.0/.gitignore
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
<component name="InspectionProjectProfileManager">
|
|
2
|
+
<profile version="1.0">
|
|
3
|
+
<option name="myName" value="Project Default" />
|
|
4
|
+
<inspection_tool class="DuplicatedCode" enabled="true" level="WEAK WARNING" enabled_by_default="true">
|
|
5
|
+
<Languages>
|
|
6
|
+
<language minSize="68" name="Python" />
|
|
7
|
+
</Languages>
|
|
8
|
+
</inspection_tool>
|
|
9
|
+
<inspection_tool class="EmptyDirectory" enabled="true" level="WARNING" enabled_by_default="true" />
|
|
10
|
+
<inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
|
|
11
|
+
<inspection_tool class="GrazieInspection" enabled="false" level="GRAMMAR_ERROR" enabled_by_default="false" />
|
|
12
|
+
<inspection_tool class="HtmlRequiredSummaryAttribute" enabled="true" level="INFORMATION" enabled_by_default="true" />
|
|
13
|
+
<inspection_tool class="HtmlRequiredTitleAttribute" enabled="true" level="INFORMATION" enabled_by_default="true" />
|
|
14
|
+
<inspection_tool class="LanguageDetectionInspection" enabled="false" level="WEAK WARNING" enabled_by_default="false" />
|
|
15
|
+
<inspection_tool class="LongLine" enabled="true" level="WARNING" enabled_by_default="true" />
|
|
16
|
+
<inspection_tool class="ProblematicWhitespace" enabled="true" level="WARNING" enabled_by_default="true" />
|
|
17
|
+
<inspection_tool class="PyAugmentAssignmentInspection" enabled="true" level="WEAK WARNING" enabled_by_default="true" />
|
|
18
|
+
<inspection_tool class="PyCompatibilityInspection" enabled="true" level="ERROR" enabled_by_default="true" editorAttributes="ERRORS_ATTRIBUTES">
|
|
19
|
+
<option name="ourVersions">
|
|
20
|
+
<value>
|
|
21
|
+
<list size="1">
|
|
22
|
+
<item index="0" class="java.lang.String" itemvalue="3.14" />
|
|
23
|
+
</list>
|
|
24
|
+
</value>
|
|
25
|
+
</option>
|
|
26
|
+
</inspection_tool>
|
|
27
|
+
<inspection_tool class="PyMethodMayBeStaticInspection" enabled="false" level="WEAK WARNING" enabled_by_default="false" />
|
|
28
|
+
<inspection_tool class="PyMissingTypeHintsInspection" enabled="true" level="WEAK WARNING" enabled_by_default="true" />
|
|
29
|
+
<inspection_tool class="PyPackageRequirementsInspection" enabled="false" level="WARNING" enabled_by_default="false" />
|
|
30
|
+
<inspection_tool class="PyPep8Inspection" enabled="true" level="WEAK WARNING" enabled_by_default="true">
|
|
31
|
+
<option name="ignoredErrors">
|
|
32
|
+
<list>
|
|
33
|
+
<option value="E402" />
|
|
34
|
+
<option value="E501" />
|
|
35
|
+
<option value="E722" />
|
|
36
|
+
</list>
|
|
37
|
+
</option>
|
|
38
|
+
</inspection_tool>
|
|
39
|
+
<inspection_tool class="PyPep8NamingInspection" enabled="true" level="WEAK WARNING" enabled_by_default="true">
|
|
40
|
+
<option name="ignoredErrors">
|
|
41
|
+
<list>
|
|
42
|
+
<option value="N802" />
|
|
43
|
+
</list>
|
|
44
|
+
</option>
|
|
45
|
+
</inspection_tool>
|
|
46
|
+
<inspection_tool class="PyUnresolvedReferencesInspection" enabled="true" level="WARNING" enabled_by_default="true">
|
|
47
|
+
<option name="ignoredIdentifiers">
|
|
48
|
+
<list>
|
|
49
|
+
<option value="types.NoneType.*" />
|
|
50
|
+
</list>
|
|
51
|
+
</option>
|
|
52
|
+
</inspection_tool>
|
|
53
|
+
<inspection_tool class="RegExpAnonymousGroup" enabled="true" level="WARNING" enabled_by_default="true" />
|
|
54
|
+
<inspection_tool class="SpellCheckingInspection" enabled="false" level="TYPO" enabled_by_default="false">
|
|
55
|
+
<option name="processCode" value="true" />
|
|
56
|
+
<option name="processLiterals" value="true" />
|
|
57
|
+
<option name="processComments" value="true" />
|
|
58
|
+
</inspection_tool>
|
|
59
|
+
<inspection_tool class="TodoComment" enabled="true" level="WARNING" enabled_by_default="true" />
|
|
60
|
+
<inspection_tool class="UseEllipsisInPropertyInspection" enabled="true" level="WARNING" enabled_by_default="true" />
|
|
61
|
+
<inspection_tool class="VulnerableLibrariesLocal" enabled="true" level="WEAK WARNING" enabled_by_default="true" editorAttributes="INFO_ATTRIBUTES">
|
|
62
|
+
<option name="isIgnoringEnabled" value="true" />
|
|
63
|
+
<option name="ignoredModules">
|
|
64
|
+
<list>
|
|
65
|
+
<option value="MuiceBot" />
|
|
66
|
+
</list>
|
|
67
|
+
</option>
|
|
68
|
+
<option name="ignoredPackages">
|
|
69
|
+
<list>
|
|
70
|
+
<option value="null:pillow:10.2.0" />
|
|
71
|
+
</list>
|
|
72
|
+
</option>
|
|
73
|
+
<option name="ignoredReasons">
|
|
74
|
+
<list>
|
|
75
|
+
<option value="进行中" />
|
|
76
|
+
</list>
|
|
77
|
+
</option>
|
|
78
|
+
</inspection_tool>
|
|
79
|
+
</profile>
|
|
80
|
+
</component>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module external.system.id="pyproject.toml" type="PYTHON_MODULE" version="4">
|
|
3
|
+
<component name="NewModuleRootManager">
|
|
4
|
+
<content url="file://$MODULE_DIR$">
|
|
5
|
+
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
|
|
6
|
+
<excludeFolder url="file://$MODULE_DIR$/.venv" />
|
|
7
|
+
</content>
|
|
8
|
+
<orderEntry type="jdk" jdkName="F:\aaaa\arknight\maa-ark\.venv (2)" jdkType="Python SDK" />
|
|
9
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
10
|
+
</component>
|
|
11
|
+
<component name="PyDocumentationSettings">
|
|
12
|
+
<option name="format" value="PLAIN" />
|
|
13
|
+
<option name="myDocStringFormat" value="Plain" />
|
|
14
|
+
</component>
|
|
15
|
+
</module>
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="PyToolsState">
|
|
4
|
+
<option name="tools">
|
|
5
|
+
<map>
|
|
6
|
+
<entry key="black">
|
|
7
|
+
<value>
|
|
8
|
+
<ToolEntry />
|
|
9
|
+
</value>
|
|
10
|
+
</entry>
|
|
11
|
+
<entry key="pyrefly">
|
|
12
|
+
<value>
|
|
13
|
+
<ToolEntry />
|
|
14
|
+
</value>
|
|
15
|
+
</entry>
|
|
16
|
+
<entry key="pyright">
|
|
17
|
+
<value>
|
|
18
|
+
<ToolEntry />
|
|
19
|
+
</value>
|
|
20
|
+
</entry>
|
|
21
|
+
<entry key="ruff">
|
|
22
|
+
<value>
|
|
23
|
+
<ToolEntry />
|
|
24
|
+
</value>
|
|
25
|
+
</entry>
|
|
26
|
+
<entry key="ty">
|
|
27
|
+
<value>
|
|
28
|
+
<ToolEntry />
|
|
29
|
+
</value>
|
|
30
|
+
</entry>
|
|
31
|
+
</map>
|
|
32
|
+
</option>
|
|
33
|
+
</component>
|
|
34
|
+
</project>
|
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="AutoImportSettings">
|
|
4
|
+
<option name="autoReloadType" value="ALL" />
|
|
5
|
+
</component>
|
|
6
|
+
<component name="ChangeListManager">
|
|
7
|
+
<list default="true" id="aee6dab2-795d-4205-a7d9-379514251f07" name="更改" comment="添加许可证文件,更新项目描述和元数据以支持MIT许可" />
|
|
8
|
+
<option name="SHOW_DIALOG" value="false" />
|
|
9
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
10
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
11
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
|
12
|
+
</component>
|
|
13
|
+
<component name="ChangesViewManager">
|
|
14
|
+
<option name="groupingKeys">
|
|
15
|
+
<option value="directory" />
|
|
16
|
+
<option value="repository" />
|
|
17
|
+
</option>
|
|
18
|
+
</component>
|
|
19
|
+
<component name="CopilotChats">
|
|
20
|
+
<option name="panelChat">
|
|
21
|
+
<chat>
|
|
22
|
+
<option name="activeSessionId" value="15a6de2c-6152-4000-a68f-f33e90526746" />
|
|
23
|
+
<option name="sessions">
|
|
24
|
+
<session>
|
|
25
|
+
<option name="chatType" value="PANEL" />
|
|
26
|
+
<option name="id" value="15a6de2c-6152-4000-a68f-f33e90526746" />
|
|
27
|
+
<option name="modeId" value="Agent" />
|
|
28
|
+
<option name="modelType" value="builtin_family" />
|
|
29
|
+
<option name="modelValue" value="gemini-3.1-pro-preview" />
|
|
30
|
+
<option name="targetType" value="LOCAL" />
|
|
31
|
+
</session>
|
|
32
|
+
</option>
|
|
33
|
+
<option name="type" value="PANEL" />
|
|
34
|
+
</chat>
|
|
35
|
+
</option>
|
|
36
|
+
</component>
|
|
37
|
+
<component name="CopilotPersistence">
|
|
38
|
+
<persistenceIdMap>
|
|
39
|
+
<entry key="_F:/aaaa/arknight/maa-ark" value="3EB3gwDoCt3Wsj39QvzD41jSO6T" />
|
|
40
|
+
</persistenceIdMap>
|
|
41
|
+
</component>
|
|
42
|
+
<component name="Git.Settings">
|
|
43
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
|
44
|
+
</component>
|
|
45
|
+
<component name="GitHubPullRequestSearchHistory">{
|
|
46
|
+
"lastFilter": {
|
|
47
|
+
"state": "OPEN",
|
|
48
|
+
"assignee": "ptrfufu"
|
|
49
|
+
}
|
|
50
|
+
}</component>
|
|
51
|
+
<component name="GithubPullRequestsUISettings">{
|
|
52
|
+
"selectedUrlAndAccountId": {
|
|
53
|
+
"url": "https://github.com/ptrfufu/maapy",
|
|
54
|
+
"accountId": "41ac0c9a-e7e0-4953-8d51-9e50d7f8a4a7"
|
|
55
|
+
}
|
|
56
|
+
}</component>
|
|
57
|
+
<component name="ProjectColorInfo">{
|
|
58
|
+
"associatedIndex": 4,
|
|
59
|
+
"fromUser": false
|
|
60
|
+
}</component>
|
|
61
|
+
<component name="ProjectId" id="3EB3gwDoCt3Wsj39QvzD41jSO6T" />
|
|
62
|
+
<component name="ProjectLevelVcsManager">
|
|
63
|
+
<ConfirmationsSetting value="2" id="Add" />
|
|
64
|
+
</component>
|
|
65
|
+
<component name="ProjectViewState">
|
|
66
|
+
<option name="hideEmptyMiddlePackages" value="true" />
|
|
67
|
+
<option name="showLibraryContents" value="true" />
|
|
68
|
+
</component>
|
|
69
|
+
<component name="PropertiesComponent"><![CDATA[{
|
|
70
|
+
"keyToString": {
|
|
71
|
+
"ModuleVcsDetector.initialDetectionPerformed": "true",
|
|
72
|
+
"Python.basic_usage.executor": "Run",
|
|
73
|
+
"RunOnceActivity.ShowReadmeOnStart": "true",
|
|
74
|
+
"RunOnceActivity.git.unshallow": "true",
|
|
75
|
+
"RunOnceActivity.typescript.service.memoryLimit.init": "true",
|
|
76
|
+
"codeWithMe.voiceChat.enabledByDefault": "false",
|
|
77
|
+
"git-widget-placeholder": "main",
|
|
78
|
+
"git.auto.fetch.suggestion.counter": "2",
|
|
79
|
+
"last_opened_file_path": "F:/aaaa/arknight/maa-ark",
|
|
80
|
+
"node.js.detected.package.eslint": "true",
|
|
81
|
+
"node.js.detected.package.tslint": "true",
|
|
82
|
+
"node.js.selected.package.eslint": "(autodetect)",
|
|
83
|
+
"node.js.selected.package.tslint": "(autodetect)",
|
|
84
|
+
"nodejs_package_manager_path": "npm",
|
|
85
|
+
"settings.editor.selected.configurable": "python.external.tools.group.settings"
|
|
86
|
+
}
|
|
87
|
+
}]]></component>
|
|
88
|
+
<component name="SharedIndexes">
|
|
89
|
+
<attachedChunks>
|
|
90
|
+
<set>
|
|
91
|
+
<option value="bundled-js-predefined-d6986cc7102b-6f3a0af6a84c-JavaScript-PY-262.6653.28" />
|
|
92
|
+
<option value="bundled-python-sdk-5f31611aadf2-87ad3c12dea2-com.jetbrains.pycharm.pro.sharedIndexes.bundled-PY-262.6653.28" />
|
|
93
|
+
</set>
|
|
94
|
+
</attachedChunks>
|
|
95
|
+
</component>
|
|
96
|
+
<component name="TaskManager">
|
|
97
|
+
<task active="true" id="Default" summary="默认任务">
|
|
98
|
+
<changelist id="aee6dab2-795d-4205-a7d9-379514251f07" name="更改" comment="" />
|
|
99
|
+
<created>1779638249801</created>
|
|
100
|
+
<option name="number" value="Default" />
|
|
101
|
+
<option name="presentableId" value="Default" />
|
|
102
|
+
<updated>1779638249801</updated>
|
|
103
|
+
<workItem from="1779638250825" duration="450000" />
|
|
104
|
+
<workItem from="1779896893170" duration="1044000" />
|
|
105
|
+
<workItem from="1779980159646" duration="932000" />
|
|
106
|
+
<workItem from="1780191713080" duration="362000" />
|
|
107
|
+
<workItem from="1780235948756" duration="355000" />
|
|
108
|
+
<workItem from="1780241900063" duration="46000" />
|
|
109
|
+
<workItem from="1780414432313" duration="778000" />
|
|
110
|
+
</task>
|
|
111
|
+
<task id="LOCAL-00001" summary="构建项目基础功能">
|
|
112
|
+
<option name="closed" value="true" />
|
|
113
|
+
<created>1779638524341</created>
|
|
114
|
+
<option name="number" value="00001" />
|
|
115
|
+
<option name="presentableId" value="LOCAL-00001" />
|
|
116
|
+
<option name="project" value="LOCAL" />
|
|
117
|
+
<updated>1779638524341</updated>
|
|
118
|
+
</task>
|
|
119
|
+
<task id="LOCAL-00002" summary="优化事件管理和任务处理,重构回调机制以提高性能和可维护性">
|
|
120
|
+
<option name="closed" value="true" />
|
|
121
|
+
<created>1779896960924</created>
|
|
122
|
+
<option name="number" value="00002" />
|
|
123
|
+
<option name="presentableId" value="LOCAL-00002" />
|
|
124
|
+
<option name="project" value="LOCAL" />
|
|
125
|
+
<updated>1779896960925</updated>
|
|
126
|
+
</task>
|
|
127
|
+
<task id="LOCAL-00003" summary="添加干员/材料的id<->name映射,重构获取干员数据/获取仓库数据解析器以支持流式">
|
|
128
|
+
<option name="closed" value="true" />
|
|
129
|
+
<created>1779984885457</created>
|
|
130
|
+
<option name="number" value="00003" />
|
|
131
|
+
<option name="presentableId" value="LOCAL-00003" />
|
|
132
|
+
<option name="project" value="LOCAL" />
|
|
133
|
+
<updated>1779984885457</updated>
|
|
134
|
+
</task>
|
|
135
|
+
<task id="LOCAL-00004" summary="添加回调解析子模块,重构任务基类以支持 JSON 模型和参数验证">
|
|
136
|
+
<option name="closed" value="true" />
|
|
137
|
+
<created>1780236165455</created>
|
|
138
|
+
<option name="number" value="00004" />
|
|
139
|
+
<option name="presentableId" value="LOCAL-00004" />
|
|
140
|
+
<option name="project" value="LOCAL" />
|
|
141
|
+
<updated>1780236165455</updated>
|
|
142
|
+
</task>
|
|
143
|
+
<task id="LOCAL-00005" summary="添加许可证文件,更新项目描述和元数据以支持MIT许可">
|
|
144
|
+
<option name="closed" value="true" />
|
|
145
|
+
<created>1780414946319</created>
|
|
146
|
+
<option name="number" value="00005" />
|
|
147
|
+
<option name="presentableId" value="LOCAL-00005" />
|
|
148
|
+
<option name="project" value="LOCAL" />
|
|
149
|
+
<updated>1780414946319</updated>
|
|
150
|
+
</task>
|
|
151
|
+
<option name="localTasksCounter" value="6" />
|
|
152
|
+
<servers />
|
|
153
|
+
</component>
|
|
154
|
+
<component name="TypeScriptGeneratedFilesManager">
|
|
155
|
+
<option name="version" value="3" />
|
|
156
|
+
</component>
|
|
157
|
+
<component name="Vcs.Log.Tabs.Properties">
|
|
158
|
+
<option name="TAB_STATES">
|
|
159
|
+
<map>
|
|
160
|
+
<entry key="MAIN">
|
|
161
|
+
<value>
|
|
162
|
+
<State>
|
|
163
|
+
<option name="FILTERS">
|
|
164
|
+
<map>
|
|
165
|
+
<entry key="branch">
|
|
166
|
+
<value>
|
|
167
|
+
<list>
|
|
168
|
+
<option value="origin/main" />
|
|
169
|
+
</list>
|
|
170
|
+
</value>
|
|
171
|
+
</entry>
|
|
172
|
+
</map>
|
|
173
|
+
</option>
|
|
174
|
+
</State>
|
|
175
|
+
</value>
|
|
176
|
+
</entry>
|
|
177
|
+
</map>
|
|
178
|
+
</option>
|
|
179
|
+
</component>
|
|
180
|
+
<component name="VcsManagerConfiguration">
|
|
181
|
+
<MESSAGE value="构建项目基础功能" />
|
|
182
|
+
<MESSAGE value="优化事件管理和任务处理,重构回调机制以提高性能和可维护性" />
|
|
183
|
+
<MESSAGE value="添加干员/材料的id<->name映射,重构获取干员数据/获取仓库数据解析器以支持流式" />
|
|
184
|
+
<MESSAGE value="添加回调解析子模块,重构任务基类以支持 JSON 模型和参数验证" />
|
|
185
|
+
<MESSAGE value="添加许可证文件,更新项目描述和元数据以支持MIT许可" />
|
|
186
|
+
<option name="LAST_COMMIT_MESSAGE" value="添加许可证文件,更新项目描述和元数据以支持MIT许可" />
|
|
187
|
+
</component>
|
|
188
|
+
<component name="com.intellij.coverage.CoverageDataManagerImpl">
|
|
189
|
+
<SUITE FILE_PATH="coverage/maa_ark$basic_usage.coverage" NAME="basic_usage 覆盖结果" MODIFIED="1779897909855" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="coverage.py" COVERAGE_BY_TEST_ENABLED="false" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$/examples" />
|
|
190
|
+
</component>
|
|
191
|
+
<component name="github-copilot-workspace">
|
|
192
|
+
<instructionFileLocations>
|
|
193
|
+
<option value=".github/instructions" />
|
|
194
|
+
</instructionFileLocations>
|
|
195
|
+
<promptFileLocations>
|
|
196
|
+
<option value=".github/prompts" />
|
|
197
|
+
</promptFileLocations>
|
|
198
|
+
</component>
|
|
199
|
+
</project>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.13
|
maapy-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
Copyright © 2026 <copyright holders>
|
|
3
|
+
|
|
4
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
5
|
+
|
|
6
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
7
|
+
|
|
8
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
maapy-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: maapy
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: maa的python绑定
|
|
5
|
+
Project-URL: Homepage, https://github.com/ptrfufu/maapy
|
|
6
|
+
Project-URL: Bug Tracker, https://github.com/ptrfufu/maapy/issues
|
|
7
|
+
Author-email: ptrfufu <ptrfufu@outlook.com>
|
|
8
|
+
License-Expression: MIT
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Requires-Python: >=3.10
|
|
20
|
+
Requires-Dist: cffi>=1.15
|
|
21
|
+
Requires-Dist: msgspec>=0.18
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
|
|
24
|
+
maa的python绑定, 使用cffi
|
maapy-0.1.0/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
maa的python绑定, 使用cffi
|