keepassxc-cli 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.
Files changed (39) hide show
  1. keepassxc_cli-0.1.0/.github/workflows/auto-merge-dependabot.yml +32 -0
  2. keepassxc_cli-0.1.0/.github/workflows/auto-release.yml +41 -0
  3. keepassxc_cli-0.1.0/.github/workflows/lint_and_test.yml +59 -0
  4. keepassxc_cli-0.1.0/.github/workflows/pypi.yml +79 -0
  5. keepassxc_cli-0.1.0/.gitignore +207 -0
  6. keepassxc_cli-0.1.0/CLAUDE.md +116 -0
  7. keepassxc_cli-0.1.0/LICENSE +21 -0
  8. keepassxc_cli-0.1.0/PKG-INFO +226 -0
  9. keepassxc_cli-0.1.0/README.md +211 -0
  10. keepassxc_cli-0.1.0/keepassxc_cli/__init__.py +1 -0
  11. keepassxc_cli-0.1.0/keepassxc_cli/__main__.py +77 -0
  12. keepassxc_cli-0.1.0/keepassxc_cli/commands/__init__.py +1 -0
  13. keepassxc_cli-0.1.0/keepassxc_cli/commands/add.py +48 -0
  14. keepassxc_cli-0.1.0/keepassxc_cli/commands/clip.py +61 -0
  15. keepassxc_cli-0.1.0/keepassxc_cli/commands/edit.py +56 -0
  16. keepassxc_cli-0.1.0/keepassxc_cli/commands/generate.py +47 -0
  17. keepassxc_cli-0.1.0/keepassxc_cli/commands/lock.py +32 -0
  18. keepassxc_cli-0.1.0/keepassxc_cli/commands/ls.py +33 -0
  19. keepassxc_cli-0.1.0/keepassxc_cli/commands/mkdir.py +33 -0
  20. keepassxc_cli-0.1.0/keepassxc_cli/commands/rm.py +40 -0
  21. keepassxc_cli-0.1.0/keepassxc_cli/commands/search.py +41 -0
  22. keepassxc_cli-0.1.0/keepassxc_cli/commands/setup.py +33 -0
  23. keepassxc_cli-0.1.0/keepassxc_cli/commands/show.py +37 -0
  24. keepassxc_cli-0.1.0/keepassxc_cli/commands/status.py +49 -0
  25. keepassxc_cli-0.1.0/keepassxc_cli/commands/totp.py +33 -0
  26. keepassxc_cli-0.1.0/keepassxc_cli/config.py +50 -0
  27. keepassxc_cli-0.1.0/keepassxc_cli/output.py +167 -0
  28. keepassxc_cli-0.1.0/keepassxc_cli.egg-info/PKG-INFO +226 -0
  29. keepassxc_cli-0.1.0/keepassxc_cli.egg-info/SOURCES.txt +37 -0
  30. keepassxc_cli-0.1.0/keepassxc_cli.egg-info/dependency_links.txt +1 -0
  31. keepassxc_cli-0.1.0/keepassxc_cli.egg-info/entry_points.txt +2 -0
  32. keepassxc_cli-0.1.0/keepassxc_cli.egg-info/requires.txt +6 -0
  33. keepassxc_cli-0.1.0/keepassxc_cli.egg-info/top_level.txt +1 -0
  34. keepassxc_cli-0.1.0/pyproject.toml +34 -0
  35. keepassxc_cli-0.1.0/setup.cfg +4 -0
  36. keepassxc_cli-0.1.0/tests/conftest.py +80 -0
  37. keepassxc_cli-0.1.0/tests/test_commands.py +316 -0
  38. keepassxc_cli-0.1.0/tests/test_config.py +80 -0
  39. keepassxc_cli-0.1.0/tests/test_output.py +161 -0
@@ -0,0 +1,32 @@
1
+ name: Auto Merge Dependabot
2
+ on:
3
+ pull_request:
4
+ types:
5
+ - opened
6
+ branches:
7
+ - main
8
+
9
+ permissions:
10
+ pull-requests: write
11
+ contents: write
12
+
13
+ jobs:
14
+ auto-merge:
15
+ name: Auto Merge Dependabot PR
16
+ runs-on: ubuntu-24.04
17
+ if: github.actor == 'dependabot[bot]'
18
+ steps:
19
+ - uses: actions/checkout@v6
20
+ - uses: actions/create-github-app-token@v3
21
+ id: generate-token
22
+ with:
23
+ app-id: ${{ secrets.APP_ID_MERGE }}
24
+ private-key: ${{ secrets.APP_PRIVATE_KEY_MERGE }}
25
+ - name: Enable Pull Request Automerge
26
+ run: gh pr merge --squash --auto "${{ github.event.pull_request.number }}"
27
+ env:
28
+ GH_TOKEN: ${{ steps.generate-token.outputs.token }}
29
+ - name: Auto approve
30
+ run: gh pr review --approve "${{ github.event.pull_request.number }}"
31
+ env:
32
+ GH_TOKEN: ${{ steps.generate-token.outputs.token }}
@@ -0,0 +1,41 @@
1
+ name: Auto Release
2
+ on:
3
+ pull_request:
4
+ types:
5
+ - closed
6
+
7
+ permissions:
8
+ contents: read
9
+
10
+ jobs:
11
+ auto-release:
12
+ if: github.event.pull_request.merged == true && github.event.pull_request.user.login == 'dependabot[bot]' && contains(github.event.pull_request.labels.*.name, 'pip')
13
+
14
+ name: Auto Release
15
+ runs-on: ubuntu-24.04
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@v6
19
+ with:
20
+ fetch-depth: 0
21
+ - name: Get Version
22
+ id: get-version
23
+ run: |
24
+ LATEST_TAG=$(curl -s "https://api.github.com/repos/${GITHUB_REPOSITORY}/releases/latest" | jq -r '.name')
25
+ # Strip leading 'v' if present
26
+ VERSION="${LATEST_TAG#v}"
27
+ # Parse semver components
28
+ IFS='.' read -r MAJOR MINOR PATCH <<< "$VERSION"
29
+ # Bump minor, reset patch
30
+ MINOR=$((MINOR + 1))
31
+ PATCH=0
32
+ echo "version=v${MAJOR}.${MINOR}.${PATCH}" >> $GITHUB_OUTPUT
33
+ - uses: actions/create-github-app-token@v3
34
+ id: generate-token
35
+ with:
36
+ app-id: ${{ secrets.APP_ID_MERGE }}
37
+ private-key: ${{ secrets.APP_PRIVATE_KEY_MERGE }}
38
+ - name: Create Release
39
+ run: gh release create ${{ steps.get-version.outputs.version }} --generate-notes
40
+ env:
41
+ GH_TOKEN: ${{ steps.generate-token.outputs.token }}
@@ -0,0 +1,59 @@
1
+ name: Python Lint and Test
2
+
3
+ on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
+ paths-ignore:
8
+ - "**.md"
9
+ push:
10
+ branches:
11
+ - main
12
+ paths-ignore:
13
+ - "**.md"
14
+
15
+ permissions:
16
+ contents: read
17
+
18
+ jobs:
19
+ Test:
20
+ runs-on: ubuntu-24.04
21
+ strategy:
22
+ matrix:
23
+ python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
24
+ fail-fast: false
25
+
26
+ steps:
27
+ - uses: actions/checkout@v6
28
+ - name: Set up Python ${{ matrix.python-version }}
29
+ uses: actions/setup-python@v6
30
+ with:
31
+ python-version: ${{ matrix.python-version }}
32
+ - name: Install dependencies
33
+ run: |
34
+ python -m pip install --upgrade pip
35
+ pip install ruff
36
+ pip install -e ".[dev]"
37
+ - name: Test with pytest
38
+ run: |
39
+ pytest --cov=keepassxc_cli --cov-report=term-missing
40
+ - name: Lint with ruff
41
+ env:
42
+ PY_VER: ${{ matrix.python-version }}
43
+ run: |
44
+ PY_VER=$(echo py${PY_VER} | tr -d '.')
45
+ ruff check --output-format=github --ignore=E501 --exclude=__init__.py --target-version=${PY_VER} ./keepassxc_cli
46
+
47
+ Check-Test:
48
+ if: ${{ always() }}
49
+ runs-on: ubuntu-24.04
50
+ needs:
51
+ - Test
52
+ steps:
53
+ - run: |
54
+ result="${{ needs.Test.result }}"
55
+ if [[ $result == "success" || $result == "skipped" ]]; then
56
+ exit 0
57
+ else
58
+ exit 1
59
+ fi
@@ -0,0 +1,79 @@
1
+ name: Build & Upload Python Package
2
+
3
+ on:
4
+ release:
5
+ types:
6
+ - published
7
+
8
+ permissions:
9
+ contents: read
10
+
11
+ jobs:
12
+ Setup:
13
+ runs-on: ubuntu-24.04
14
+ outputs:
15
+ version: ${{ steps.set-version.outputs.version }}
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@v6
19
+ with:
20
+ fetch-depth: 0
21
+ - name: Get Version
22
+ id: set-version
23
+ env:
24
+ VERSION: ${{ github.ref_name }}
25
+ run: |
26
+ if grep -c -E '^v[[:digit:]]{1,3}\.[[:digit:]]{1,3}\.[[:digit:]]{1,3}$' <<< ${VERSION}; then
27
+ VERSION=$(sed 's/^.\{1\}//g' <<< ${VERSION})
28
+ else
29
+ echo "This branch shouldn't be build: ${VERSION}"
30
+ exit 1
31
+ fi
32
+ echo "version=$(echo ${VERSION})" >> $GITHUB_OUTPUT
33
+
34
+ Deploy:
35
+ runs-on: ubuntu-24.04
36
+ needs: Setup
37
+ environment:
38
+ name: pypi
39
+ url: https://pypi.org/p/keepassxc-cli/
40
+ permissions:
41
+ id-token: write
42
+ contents: read
43
+ steps:
44
+ - uses: actions/checkout@v6
45
+ with:
46
+ fetch-depth: 0
47
+ - name: Set up Python
48
+ uses: actions/setup-python@v6
49
+ with:
50
+ python-version: '3.x'
51
+ - name: Install dependencies
52
+ run: |
53
+ python -m pip install --upgrade pip
54
+ pip install build
55
+ - name: Build package
56
+ env:
57
+ SETUPTOOLS_SCM_PRETEND_VERSION: ${{ needs.Setup.outputs.version }}
58
+ run: python -m build
59
+ - name: Publish package
60
+ uses: pypa/gh-action-pypi-publish@v1.14.0
61
+
62
+ Notify-Homebrew:
63
+ runs-on: ubuntu-24.04
64
+ needs: [Setup, Deploy]
65
+ steps:
66
+ - uses: actions/create-github-app-token@v3
67
+ id: generate-token
68
+ with:
69
+ app-id: ${{ secrets.APP_ID_MERGE }}
70
+ private-key: ${{ secrets.APP_PRIVATE_KEY_MERGE }}
71
+ owner: ${{ github.repository_owner }}
72
+ repositories: homebrew-tap
73
+ - name: Trigger Homebrew formula update
74
+ env:
75
+ GH_TOKEN: ${{ steps.generate-token.outputs.token }}
76
+ run: |
77
+ gh api repos/${{ github.repository_owner }}/homebrew-tap/dispatches \
78
+ -f event_type=update-keepassxc-cli \
79
+ -f "client_payload[version]=${{ needs.Setup.outputs.version }}"
@@ -0,0 +1,207 @@
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__/
@@ -0,0 +1,116 @@
1
+ # CLAUDE.md — keepassxc-cli
2
+
3
+ This document provides context for AI assistants working on this project.
4
+
5
+ ## Project Purpose
6
+
7
+ `keepassxc-cli` is a Python command-line tool that communicates with a running KeePassXC instance using the KeePassXC Browser Extension protocol (native messaging over a Unix socket). It enables terminal users to interact with KeePassXC — listing, searching, adding, editing, and deleting entries — while leveraging KeePassXC's biometric (TouchID/fingerprint) unlock support.
8
+
9
+ ## Package Structure
10
+
11
+ ```
12
+ keepassxc_cli/
13
+ ├── __init__.py # empty (just from __future__ import annotations)
14
+ ├── __main__.py # CLI entry point; argument parsing; dispatches to commands
15
+ ├── config.py # CliConfig dataclass; save/load ~/.keepassxc/cli.json
16
+ ├── output.py # Output formatting: table, json, tsv
17
+ └── commands/
18
+ ├── __init__.py # empty
19
+ ├── setup.py # associate with KeePassXC
20
+ ├── status.py # show connection/association status
21
+ ├── show.py # show entries by URL
22
+ ├── search.py # search all entries
23
+ ├── ls.py # list entries or groups
24
+ ├── add.py # add new entry
25
+ ├── edit.py # edit existing entry by UUID
26
+ ├── rm.py # delete entry by UUID
27
+ ├── totp.py # get TOTP code
28
+ ├── clip.py # copy field to clipboard
29
+ ├── generate.py # generate password
30
+ ├── lock.py # lock database
31
+ └── mkdir.py # create group
32
+
33
+ tests/
34
+ ├── conftest.py # fixtures: mock_entry, mock_group, mock_browser_config, mock_client
35
+ ├── test_config.py # CliConfig unit tests
36
+ ├── test_output.py # output formatting tests
37
+ └── test_commands.py # command run() function tests with mocked BrowserClient
38
+ ```
39
+
40
+ ## Dependency: keepassxc-browser-api
41
+
42
+ This package depends on `keepassxc-browser-api` (local package at `../mietzen-keepassxc-browser-api/`), which provides:
43
+
44
+ - `BrowserClient` — the main client that communicates with KeePassXC
45
+ - `BrowserConfig` — configuration dataclass (associations, keys)
46
+ - `Entry`, `Group` — data models
47
+ - Exceptions: `KeePassXCError`, `AssociationError`, `NotAssociatedError`, `DatabaseLockedError`, `ProtocolError`, `ConnectionError`
48
+
49
+ Import path: `from keepassxc_browser_api import BrowserClient, BrowserConfig, Entry, Group`
50
+
51
+ ## Command Module Convention
52
+
53
+ Every command module (`keepassxc_cli/commands/*.py`) must implement:
54
+
55
+ ```python
56
+ def add_parser(subparsers) -> None:
57
+ p = subparsers.add_parser("name", help="...")
58
+ # add arguments
59
+ p.set_defaults(func=run)
60
+
61
+ def run(client, args, cli_config, browser_config, browser_config_path, *, fmt="table") -> int:
62
+ # returns 0 on success, non-zero on failure
63
+ ...
64
+ ```
65
+
66
+ The `run()` function signature is always:
67
+ ```python
68
+ def run(
69
+ client: BrowserClient,
70
+ args: argparse.Namespace,
71
+ cli_config: CliConfig,
72
+ browser_config: BrowserConfig,
73
+ browser_config_path: Path,
74
+ *,
75
+ fmt: str = "table",
76
+ ) -> int:
77
+ ```
78
+
79
+ ## How to Build, Test, and Lint
80
+
81
+ ```bash
82
+ # Create venv and install
83
+ python3 -m venv .venv
84
+ source .venv/bin/activate
85
+ pip install ../mietzen-keepassxc-browser-api/ # local dependency
86
+ pip install -e ".[dev]"
87
+
88
+ # Run tests
89
+ pytest --tb=short -q
90
+ pytest --cov=keepassxc_cli --cov-report=term-missing
91
+
92
+ # Lint
93
+ ruff check --ignore=E501 --exclude=__init__.py ./keepassxc_cli
94
+ ```
95
+
96
+ ## Key Conventions
97
+
98
+ - **`from __future__ import annotations`** must be the first line of every `.py` source file.
99
+ - **Ruff**: `ruff check --ignore=E501 --exclude=__init__.py ./keepassxc_cli`
100
+ - **No async code**: Everything is synchronous. No threads in the CLI.
101
+ - **Output**: Use `print()` for normal output, `sys.stderr` for errors.
102
+ - **Exit codes**: `run()` functions return `int` (0 = success, 1 = failure).
103
+ - **Config permissions**: Config files are written with `0o600` (owner read/write only).
104
+ - **Venv**: Always use `.venv` for development.
105
+ - **Python ≥ 3.10** required.
106
+
107
+ ## Config Files
108
+
109
+ | File | Purpose |
110
+ |------|---------|
111
+ | `~/.keepassxc/cli.json` | CLI preferences (default format, custom browser-api config path). Only non-default values stored. |
112
+ | `~/.keepassxc/browser-api.json` | Shared with keepassxc-browser-api. Contains association keys. Written by `setup` command. |
113
+
114
+ ## Output Formats
115
+
116
+ Three formats are supported everywhere: `table` (default), `json`, `tsv`. The `--format` global flag or `default_format` in `cli.json` controls the default.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Nils
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.