deepagents-acp 0.0.1__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.
- deepagents_acp-0.0.1/.env.example +7 -0
- deepagents_acp-0.0.1/.gitignore +225 -0
- deepagents_acp-0.0.1/Makefile +54 -0
- deepagents_acp-0.0.1/PKG-INFO +86 -0
- deepagents_acp-0.0.1/README.md +63 -0
- deepagents_acp-0.0.1/deepagents_acp/__init__.py +0 -0
- deepagents_acp-0.0.1/deepagents_acp/__main__.py +22 -0
- deepagents_acp-0.0.1/deepagents_acp/agent.py +648 -0
- deepagents_acp-0.0.1/deepagents_acp/py.typed.py +0 -0
- deepagents_acp-0.0.1/deepagents_acp/utils.py +77 -0
- deepagents_acp-0.0.1/pyproject.toml +72 -0
- deepagents_acp-0.0.1/run.sh +6 -0
- deepagents_acp-0.0.1/static/img/deepagentsacp.gif +0 -0
- deepagents_acp-0.0.1/static/img/newdeepagent.png +0 -0
- deepagents_acp-0.0.1/tests/__init__.py +0 -0
- deepagents_acp-0.0.1/tests/chat_model.py +210 -0
- deepagents_acp-0.0.1/tests/conftest.py +10 -0
- deepagents_acp-0.0.1/tests/test_agent.py +759 -0
- deepagents_acp-0.0.1/uv.lock +1719 -0
|
@@ -0,0 +1,225 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[codz]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
share/python-wheels/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.installed.cfg
|
|
26
|
+
*.egg
|
|
27
|
+
MANIFEST
|
|
28
|
+
|
|
29
|
+
# PyInstaller
|
|
30
|
+
# Usually these files are written by a python script from a template
|
|
31
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
32
|
+
*.manifest
|
|
33
|
+
*.spec
|
|
34
|
+
|
|
35
|
+
# Installer logs
|
|
36
|
+
pip-log.txt
|
|
37
|
+
pip-delete-this-directory.txt
|
|
38
|
+
|
|
39
|
+
# Unit test / coverage reports
|
|
40
|
+
htmlcov/
|
|
41
|
+
.tox/
|
|
42
|
+
.nox/
|
|
43
|
+
.coverage
|
|
44
|
+
.coverage.*
|
|
45
|
+
.cache
|
|
46
|
+
nosetests.xml
|
|
47
|
+
coverage.xml
|
|
48
|
+
*.cover
|
|
49
|
+
*.py.cover
|
|
50
|
+
.hypothesis/
|
|
51
|
+
.pytest_cache/
|
|
52
|
+
cover/
|
|
53
|
+
|
|
54
|
+
# Translations
|
|
55
|
+
*.mo
|
|
56
|
+
*.pot
|
|
57
|
+
|
|
58
|
+
# Django stuff:
|
|
59
|
+
*.log
|
|
60
|
+
local_settings.py
|
|
61
|
+
db.sqlite3
|
|
62
|
+
db.sqlite3-journal
|
|
63
|
+
|
|
64
|
+
# Flask stuff:
|
|
65
|
+
instance/
|
|
66
|
+
.webassets-cache
|
|
67
|
+
|
|
68
|
+
# Scrapy stuff:
|
|
69
|
+
.scrapy
|
|
70
|
+
|
|
71
|
+
# Sphinx documentation
|
|
72
|
+
docs/_build/
|
|
73
|
+
|
|
74
|
+
# PyBuilder
|
|
75
|
+
.pybuilder/
|
|
76
|
+
target/
|
|
77
|
+
|
|
78
|
+
# Jupyter Notebook
|
|
79
|
+
.ipynb_checkpoints
|
|
80
|
+
|
|
81
|
+
# IPython
|
|
82
|
+
profile_default/
|
|
83
|
+
ipython_config.py
|
|
84
|
+
|
|
85
|
+
# pyenv
|
|
86
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
87
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
88
|
+
# .python-version
|
|
89
|
+
|
|
90
|
+
# pipenv
|
|
91
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
92
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
93
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
94
|
+
# install all needed dependencies.
|
|
95
|
+
#Pipfile.lock
|
|
96
|
+
|
|
97
|
+
# UV
|
|
98
|
+
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
|
|
99
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
100
|
+
# commonly ignored for libraries.
|
|
101
|
+
#uv.lock
|
|
102
|
+
|
|
103
|
+
# poetry
|
|
104
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
105
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
106
|
+
# commonly ignored for libraries.
|
|
107
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
108
|
+
#poetry.lock
|
|
109
|
+
#poetry.toml
|
|
110
|
+
|
|
111
|
+
# pdm
|
|
112
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
113
|
+
# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
|
|
114
|
+
# https://pdm-project.org/en/latest/usage/project/#working-with-version-control
|
|
115
|
+
#pdm.lock
|
|
116
|
+
#pdm.toml
|
|
117
|
+
.pdm-python
|
|
118
|
+
.pdm-build/
|
|
119
|
+
|
|
120
|
+
# pixi
|
|
121
|
+
# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
|
|
122
|
+
#pixi.lock
|
|
123
|
+
# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
|
|
124
|
+
# in the .venv directory. It is recommended not to include this directory in version control.
|
|
125
|
+
.pixi
|
|
126
|
+
|
|
127
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
128
|
+
__pypackages__/
|
|
129
|
+
|
|
130
|
+
# Celery stuff
|
|
131
|
+
celerybeat-schedule
|
|
132
|
+
celerybeat.pid
|
|
133
|
+
|
|
134
|
+
# SageMath parsed files
|
|
135
|
+
*.sage.py
|
|
136
|
+
|
|
137
|
+
# Environments
|
|
138
|
+
.env
|
|
139
|
+
.envrc
|
|
140
|
+
.venv
|
|
141
|
+
env/
|
|
142
|
+
venv/
|
|
143
|
+
ENV/
|
|
144
|
+
env.bak/
|
|
145
|
+
venv.bak/
|
|
146
|
+
|
|
147
|
+
# Spyder project settings
|
|
148
|
+
.spyderproject
|
|
149
|
+
.spyproject
|
|
150
|
+
|
|
151
|
+
# Rope project settings
|
|
152
|
+
.ropeproject
|
|
153
|
+
|
|
154
|
+
# mkdocs documentation
|
|
155
|
+
/site
|
|
156
|
+
|
|
157
|
+
# mypy
|
|
158
|
+
.mypy_cache/
|
|
159
|
+
.dmypy.json
|
|
160
|
+
dmypy.json
|
|
161
|
+
|
|
162
|
+
# Pyre type checker
|
|
163
|
+
.pyre/
|
|
164
|
+
|
|
165
|
+
# pytype static type analyzer
|
|
166
|
+
.pytype/
|
|
167
|
+
|
|
168
|
+
# Cython debug symbols
|
|
169
|
+
cython_debug/
|
|
170
|
+
|
|
171
|
+
# PyCharm
|
|
172
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
173
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
174
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
175
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
176
|
+
#.idea/
|
|
177
|
+
|
|
178
|
+
# Abstra
|
|
179
|
+
# Abstra is an AI-powered process automation framework.
|
|
180
|
+
# Ignore directories containing user credentials, local state, and settings.
|
|
181
|
+
# Learn more at https://abstra.io/docs
|
|
182
|
+
.abstra/
|
|
183
|
+
|
|
184
|
+
# Visual Studio Code
|
|
185
|
+
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
|
|
186
|
+
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
|
|
187
|
+
# and can be added to the global gitignore or merged into this file. However, if you prefer,
|
|
188
|
+
# you could uncomment the following to ignore the entire vscode folder
|
|
189
|
+
# .vscode/
|
|
190
|
+
|
|
191
|
+
# Ruff stuff:
|
|
192
|
+
.ruff_cache/
|
|
193
|
+
|
|
194
|
+
# PyPI configuration file
|
|
195
|
+
.pypirc
|
|
196
|
+
|
|
197
|
+
# Cursor
|
|
198
|
+
# Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
|
|
199
|
+
# exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
|
|
200
|
+
# refer to https://docs.cursor.com/context/ignore-files
|
|
201
|
+
.cursorignore
|
|
202
|
+
.cursorindexingignore
|
|
203
|
+
|
|
204
|
+
# Marimo
|
|
205
|
+
marimo/_static/
|
|
206
|
+
marimo/_lsp/
|
|
207
|
+
__marimo__/
|
|
208
|
+
|
|
209
|
+
# LangGraph
|
|
210
|
+
.langgraph_api
|
|
211
|
+
|
|
212
|
+
#claude
|
|
213
|
+
.claude
|
|
214
|
+
|
|
215
|
+
.idea
|
|
216
|
+
TEXTUAL_REFACTOR_PLAN.md
|
|
217
|
+
libs/cli/TEXTUAL_PROGRESS.md
|
|
218
|
+
|
|
219
|
+
/tmp/
|
|
220
|
+
|
|
221
|
+
# macOS
|
|
222
|
+
.DS_Store
|
|
223
|
+
*/tmp/.DS_Store
|
|
224
|
+
|
|
225
|
+
CLAUDE.md
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
.PHONY: all lint format test help
|
|
2
|
+
|
|
3
|
+
# Default target executed when no arguments are given to make.
|
|
4
|
+
all: help
|
|
5
|
+
|
|
6
|
+
######################
|
|
7
|
+
# TESTING AND COVERAGE
|
|
8
|
+
######################
|
|
9
|
+
|
|
10
|
+
# Define a variable for the test file path.
|
|
11
|
+
TEST_FILE ?= tests/
|
|
12
|
+
|
|
13
|
+
test:
|
|
14
|
+
uv run pytest --disable-socket --allow-unix-socket $(TEST_FILE) --timeout 10
|
|
15
|
+
|
|
16
|
+
test_watch:
|
|
17
|
+
uv run ptw . -- $(TEST_FILE)
|
|
18
|
+
|
|
19
|
+
toad:
|
|
20
|
+
uv run toad acp "deepacp"
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
######################
|
|
24
|
+
# LINTING AND FORMATTING
|
|
25
|
+
######################
|
|
26
|
+
|
|
27
|
+
# Define a variable for Python and notebook files.
|
|
28
|
+
lint format: PYTHON_FILES=deepagents_acp/ tests/
|
|
29
|
+
lint_diff format_diff: PYTHON_FILES=$(shell git diff --relative=. --name-only --diff-filter=d master | grep -E '\.py$$|\.ipynb$$')
|
|
30
|
+
|
|
31
|
+
lint lint_diff:
|
|
32
|
+
[ "$(PYTHON_FILES)" = "" ] || uv run --group test ruff format $(PYTHON_FILES) --diff
|
|
33
|
+
[ "$(PYTHON_FILES)" = "" ] || uv run --group test ruff check $(PYTHON_FILES) --diff
|
|
34
|
+
# [ "$(PYTHON_FILES)" = "" ] || uv run --group dev ty check $(PYTHON_FILES)
|
|
35
|
+
|
|
36
|
+
format format_diff:
|
|
37
|
+
[ "$(PYTHON_FILES)" = "" ] || uv run --group test ruff format $(PYTHON_FILES)
|
|
38
|
+
[ "$(PYTHON_FILES)" = "" ] || uv run --group test ruff check --fix $(PYTHON_FILES)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
######################
|
|
43
|
+
# HELP
|
|
44
|
+
######################
|
|
45
|
+
|
|
46
|
+
help:
|
|
47
|
+
@echo '===================='
|
|
48
|
+
@echo '-- LINTING --'
|
|
49
|
+
@echo 'format - run code formatters'
|
|
50
|
+
@echo 'lint - run linters'
|
|
51
|
+
@echo '-- TESTS --'
|
|
52
|
+
@echo 'test - run unit tests'
|
|
53
|
+
@echo 'test TEST_FILE=<test_file> - run all tests in file'
|
|
54
|
+
@echo '-- DOCUMENTATION tasks are from the top-level Makefile --'
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: deepagents-acp
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Agent Client Protocol integration for Deep Agents
|
|
5
|
+
Project-URL: Homepage, https://docs.langchain.com/oss/python/deepagents/overview
|
|
6
|
+
Project-URL: Documentation, https://reference.langchain.com/python/deepagents/
|
|
7
|
+
Project-URL: Repository, https://github.com/langchain-ai/deepagents
|
|
8
|
+
Project-URL: Issues, https://github.com/langchain-ai/deepagents/issues
|
|
9
|
+
Project-URL: Twitter, https://x.com/LangChain
|
|
10
|
+
License: MIT
|
|
11
|
+
Keywords: acp,agent,agent-client-protocol,ai-agents,deepagents
|
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
17
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
18
|
+
Requires-Python: >=3.11
|
|
19
|
+
Requires-Dist: agent-client-protocol>=0.7.1
|
|
20
|
+
Requires-Dist: deepagents
|
|
21
|
+
Requires-Dist: python-dotenv>=1.2.1
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
|
|
24
|
+
# DeepAgents ACP integration
|
|
25
|
+
|
|
26
|
+
This repo contains an [Agent Client Protocol (ACP)](https://agentclientprotocol.com/overview/introduction) connector that allows you to run a Python [DeepAgent](https://docs.langchain.com/oss/python/deepagents/overview) within a text editor that supports ACP such as [Zed](https://zed.dev/).
|
|
27
|
+
|
|
28
|
+
The DeepAgent lives as code in `deepagents_acp/agent.py`, and can interact with the files of a project you have open in your ACP-compatible editor.
|
|
29
|
+
|
|
30
|
+

|
|
31
|
+
|
|
32
|
+
Out of the box, your agent uses Anthropic's Claude models to do things like write code with its built-in filesystem tools, but you can also extend it with additional tools or agent architectures!
|
|
33
|
+
|
|
34
|
+
## Getting started
|
|
35
|
+
|
|
36
|
+
First, make sure you have [Zed](https://zed.dev/) and [`uv`](https://docs.astral.sh/uv/) installed.
|
|
37
|
+
|
|
38
|
+
Next, clone this repo:
|
|
39
|
+
|
|
40
|
+
```sh
|
|
41
|
+
git clone git@github.com:langchain-ai/deepagents.git
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
Then, navigate into the newly created folder and run `uv sync`:
|
|
45
|
+
|
|
46
|
+
```sh
|
|
47
|
+
cd deepagents/libs/acp
|
|
48
|
+
uv sync
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
Rename the `.env.example` file to `.env` and add your [Anthropic](https://claude.com/platform/api) API key. You may also optionally set up tracing for your DeepAgent using [LangSmith](https://smith.langchain.com/) by populating the other env vars in the example file:
|
|
52
|
+
|
|
53
|
+
```ini
|
|
54
|
+
ANTHROPIC_API_KEY=""
|
|
55
|
+
|
|
56
|
+
# Set up LangSmith tracing for your DeepAgent (optional)
|
|
57
|
+
|
|
58
|
+
# LANGSMITH_TRACING=true
|
|
59
|
+
# LANGSMITH_API_KEY=""
|
|
60
|
+
# LANGSMITH_PROJECT="deepagents-acp"
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
Finally, add this to your Zed `settings.json`:
|
|
64
|
+
|
|
65
|
+
```json
|
|
66
|
+
{
|
|
67
|
+
"agent_servers": {
|
|
68
|
+
"DeepAgents": {
|
|
69
|
+
"type": "custom",
|
|
70
|
+
"command": "/your/absolute/path/to/deepagents-acp/run.sh"
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
You must also make sure that the `run.sh` entrypoint file is executable - this should be the case by default, but if you see permissions issues, run:
|
|
77
|
+
|
|
78
|
+
```sh
|
|
79
|
+
chmod +x run.sh
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
Now, open Zed's Agents Panel (e.g. with `CMD + Shift + ?`). You should see an option to create a new DeepAgent thread:
|
|
83
|
+
|
|
84
|
+

|
|
85
|
+
|
|
86
|
+
And that's it! You can now use the DeepAgent in Zed to interact with your project.
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# DeepAgents ACP integration
|
|
2
|
+
|
|
3
|
+
This repo contains an [Agent Client Protocol (ACP)](https://agentclientprotocol.com/overview/introduction) connector that allows you to run a Python [DeepAgent](https://docs.langchain.com/oss/python/deepagents/overview) within a text editor that supports ACP such as [Zed](https://zed.dev/).
|
|
4
|
+
|
|
5
|
+
The DeepAgent lives as code in `deepagents_acp/agent.py`, and can interact with the files of a project you have open in your ACP-compatible editor.
|
|
6
|
+
|
|
7
|
+

|
|
8
|
+
|
|
9
|
+
Out of the box, your agent uses Anthropic's Claude models to do things like write code with its built-in filesystem tools, but you can also extend it with additional tools or agent architectures!
|
|
10
|
+
|
|
11
|
+
## Getting started
|
|
12
|
+
|
|
13
|
+
First, make sure you have [Zed](https://zed.dev/) and [`uv`](https://docs.astral.sh/uv/) installed.
|
|
14
|
+
|
|
15
|
+
Next, clone this repo:
|
|
16
|
+
|
|
17
|
+
```sh
|
|
18
|
+
git clone git@github.com:langchain-ai/deepagents.git
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Then, navigate into the newly created folder and run `uv sync`:
|
|
22
|
+
|
|
23
|
+
```sh
|
|
24
|
+
cd deepagents/libs/acp
|
|
25
|
+
uv sync
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Rename the `.env.example` file to `.env` and add your [Anthropic](https://claude.com/platform/api) API key. You may also optionally set up tracing for your DeepAgent using [LangSmith](https://smith.langchain.com/) by populating the other env vars in the example file:
|
|
29
|
+
|
|
30
|
+
```ini
|
|
31
|
+
ANTHROPIC_API_KEY=""
|
|
32
|
+
|
|
33
|
+
# Set up LangSmith tracing for your DeepAgent (optional)
|
|
34
|
+
|
|
35
|
+
# LANGSMITH_TRACING=true
|
|
36
|
+
# LANGSMITH_API_KEY=""
|
|
37
|
+
# LANGSMITH_PROJECT="deepagents-acp"
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Finally, add this to your Zed `settings.json`:
|
|
41
|
+
|
|
42
|
+
```json
|
|
43
|
+
{
|
|
44
|
+
"agent_servers": {
|
|
45
|
+
"DeepAgents": {
|
|
46
|
+
"type": "custom",
|
|
47
|
+
"command": "/your/absolute/path/to/deepagents-acp/run.sh"
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
You must also make sure that the `run.sh` entrypoint file is executable - this should be the case by default, but if you see permissions issues, run:
|
|
54
|
+
|
|
55
|
+
```sh
|
|
56
|
+
chmod +x run.sh
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
Now, open Zed's Agents Panel (e.g. with `CMD + Shift + ?`). You should see an option to create a new DeepAgent thread:
|
|
60
|
+
|
|
61
|
+

|
|
62
|
+
|
|
63
|
+
And that's it! You can now use the DeepAgent in Zed to interact with your project.
|
|
File without changes
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import argparse
|
|
2
|
+
import asyncio
|
|
3
|
+
import os
|
|
4
|
+
|
|
5
|
+
from deepagents_acp.agent import run_agent
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
def main():
|
|
9
|
+
parser = argparse.ArgumentParser(description="Run ACP DeepAgent with specified root directory")
|
|
10
|
+
parser.add_argument(
|
|
11
|
+
"--root-dir",
|
|
12
|
+
type=str,
|
|
13
|
+
default=None,
|
|
14
|
+
help="Root directory accessible to the agent (default: current working directory)",
|
|
15
|
+
)
|
|
16
|
+
args = parser.parse_args()
|
|
17
|
+
root_dir = args.root_dir if args.root_dir else os.getcwd()
|
|
18
|
+
asyncio.run(run_agent(root_dir))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
if __name__ == "__main__":
|
|
22
|
+
main()
|