xwdata 0.1.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.
Files changed (130) hide show
  1. xwdata-0.1.0.1/.github/workflows/publish.yml +73 -0
  2. xwdata-0.1.0.1/.gitignore +290 -0
  3. xwdata-0.1.0.1/LICENSE +21 -0
  4. xwdata-0.1.0.1/PKG-INFO +384 -0
  5. xwdata-0.1.0.1/README.md +356 -0
  6. xwdata-0.1.0.1/pyproject.toml +127 -0
  7. xwdata-0.1.0.1/src/exonware/__init__.py +16 -0
  8. xwdata-0.1.0.1/src/exonware/xwdata/__init__.py +239 -0
  9. xwdata-0.1.0.1/src/exonware/xwdata/base.py +524 -0
  10. xwdata-0.1.0.1/src/exonware/xwdata/builder.py +243 -0
  11. xwdata-0.1.0.1/src/exonware/xwdata/common/__init__.py +17 -0
  12. xwdata-0.1.0.1/src/exonware/xwdata/common/benchmarking.py +236 -0
  13. xwdata-0.1.0.1/src/exonware/xwdata/common/caching/__init__.py +24 -0
  14. xwdata-0.1.0.1/src/exonware/xwdata/common/caching/base.py +18 -0
  15. xwdata-0.1.0.1/src/exonware/xwdata/common/caching/cache_manager.py +110 -0
  16. xwdata-0.1.0.1/src/exonware/xwdata/common/caching/contracts.py +18 -0
  17. xwdata-0.1.0.1/src/exonware/xwdata/common/caching/strategies.py +115 -0
  18. xwdata-0.1.0.1/src/exonware/xwdata/common/monitoring/__init__.py +24 -0
  19. xwdata-0.1.0.1/src/exonware/xwdata/common/monitoring/metrics.py +35 -0
  20. xwdata-0.1.0.1/src/exonware/xwdata/common/monitoring/performance.py +83 -0
  21. xwdata-0.1.0.1/src/exonware/xwdata/common/patterns/__init__.py +23 -0
  22. xwdata-0.1.0.1/src/exonware/xwdata/common/patterns/factory.py +39 -0
  23. xwdata-0.1.0.1/src/exonware/xwdata/common/patterns/registry.py +76 -0
  24. xwdata-0.1.0.1/src/exonware/xwdata/config.py +788 -0
  25. xwdata-0.1.0.1/src/exonware/xwdata/contracts.py +486 -0
  26. xwdata-0.1.0.1/src/exonware/xwdata/data/__init__.py +28 -0
  27. xwdata-0.1.0.1/src/exonware/xwdata/data/base.py +25 -0
  28. xwdata-0.1.0.1/src/exonware/xwdata/data/contracts.py +28 -0
  29. xwdata-0.1.0.1/src/exonware/xwdata/data/engine.py +1437 -0
  30. xwdata-0.1.0.1/src/exonware/xwdata/data/factory.py +176 -0
  31. xwdata-0.1.0.1/src/exonware/xwdata/data/lazy.py +217 -0
  32. xwdata-0.1.0.1/src/exonware/xwdata/data/metadata/__init__.py +25 -0
  33. xwdata-0.1.0.1/src/exonware/xwdata/data/metadata/base.py +18 -0
  34. xwdata-0.1.0.1/src/exonware/xwdata/data/metadata/contracts.py +18 -0
  35. xwdata-0.1.0.1/src/exonware/xwdata/data/metadata/extractor.py +74 -0
  36. xwdata-0.1.0.1/src/exonware/xwdata/data/metadata/processor.py +250 -0
  37. xwdata-0.1.0.1/src/exonware/xwdata/data/metadata/universal.py +83 -0
  38. xwdata-0.1.0.1/src/exonware/xwdata/data/node.py +594 -0
  39. xwdata-0.1.0.1/src/exonware/xwdata/data/references/__init__.py +25 -0
  40. xwdata-0.1.0.1/src/exonware/xwdata/data/references/base.py +18 -0
  41. xwdata-0.1.0.1/src/exonware/xwdata/data/references/contracts.py +18 -0
  42. xwdata-0.1.0.1/src/exonware/xwdata/data/references/detector.py +66 -0
  43. xwdata-0.1.0.1/src/exonware/xwdata/data/references/patterns.py +54 -0
  44. xwdata-0.1.0.1/src/exonware/xwdata/data/references/resolver.py +502 -0
  45. xwdata-0.1.0.1/src/exonware/xwdata/data/strategies/__init__.py +48 -0
  46. xwdata-0.1.0.1/src/exonware/xwdata/data/strategies/base.py +20 -0
  47. xwdata-0.1.0.1/src/exonware/xwdata/data/strategies/contracts.py +21 -0
  48. xwdata-0.1.0.1/src/exonware/xwdata/data/strategies/csv.py +217 -0
  49. xwdata-0.1.0.1/src/exonware/xwdata/data/strategies/json.py +125 -0
  50. xwdata-0.1.0.1/src/exonware/xwdata/data/strategies/registry.py +171 -0
  51. xwdata-0.1.0.1/src/exonware/xwdata/data/strategies/toml.py +165 -0
  52. xwdata-0.1.0.1/src/exonware/xwdata/data/strategies/xml.py +156 -0
  53. xwdata-0.1.0.1/src/exonware/xwdata/data/strategies/yaml.py +117 -0
  54. xwdata-0.1.0.1/src/exonware/xwdata/defs.py +281 -0
  55. xwdata-0.1.0.1/src/exonware/xwdata/errors.py +378 -0
  56. xwdata-0.1.0.1/src/exonware/xwdata/facade.py +1805 -0
  57. xwdata-0.1.0.1/src/exonware/xwdata/operations/__init__.py +62 -0
  58. xwdata-0.1.0.1/src/exonware/xwdata/operations/batch_operations.py +195 -0
  59. xwdata-0.1.0.1/src/exonware/xwdata/operations/data_diff.py +77 -0
  60. xwdata-0.1.0.1/src/exonware/xwdata/operations/data_merge.py +119 -0
  61. xwdata-0.1.0.1/src/exonware/xwdata/operations/data_patch.py +80 -0
  62. xwdata-0.1.0.1/src/exonware/xwdata/serialization/__init__.py +26 -0
  63. xwdata-0.1.0.1/src/exonware/xwdata/serialization/base.py +18 -0
  64. xwdata-0.1.0.1/src/exonware/xwdata/serialization/contracts.py +18 -0
  65. xwdata-0.1.0.1/src/exonware/xwdata/serialization/json5.py +152 -0
  66. xwdata-0.1.0.1/src/exonware/xwdata/serialization/jsonlines.py +171 -0
  67. xwdata-0.1.0.1/src/exonware/xwdata/serialization/registry.py +118 -0
  68. xwdata-0.1.0.1/src/exonware/xwdata/shortcuts.py +549 -0
  69. xwdata-0.1.0.1/src/exonware/xwdata/utils/__init__.py +33 -0
  70. xwdata-0.1.0.1/src/exonware/xwdata/utils/format_helpers.py +219 -0
  71. xwdata-0.1.0.1/src/exonware/xwdata/version.py +77 -0
  72. xwdata-0.1.0.1/src/xdata.py +19 -0
  73. xwdata-0.1.0.1/src/xwdata.py +23 -0
  74. xwdata-0.1.0.1/tests/0.core/__init__.py +13 -0
  75. xwdata-0.1.0.1/tests/0.core/benchmark_lazy_proxy.py +246 -0
  76. xwdata-0.1.0.1/tests/0.core/conftest.py +22 -0
  77. xwdata-0.1.0.1/tests/0.core/runner.py +98 -0
  78. xwdata-0.1.0.1/tests/0.core/simple_benchmark.py +160 -0
  79. xwdata-0.1.0.1/tests/0.core/test_core_as_methods.py +113 -0
  80. xwdata-0.1.0.1/tests/0.core/test_core_detection.py +424 -0
  81. xwdata-0.1.0.1/tests/0.core/test_core_ecosystem_integration.py +514 -0
  82. xwdata-0.1.0.1/tests/0.core/test_core_indexing.py +174 -0
  83. xwdata-0.1.0.1/tests/0.core/test_core_lazy.py +159 -0
  84. xwdata-0.1.0.1/tests/0.core/test_core_lazy_proxy_performance.py +313 -0
  85. xwdata-0.1.0.1/tests/0.core/test_core_lazy_xwdata_integration.py +284 -0
  86. xwdata-0.1.0.1/tests/0.core/test_core_load_save.py +99 -0
  87. xwdata-0.1.0.1/tests/0.core/test_core_query.py +218 -0
  88. xwdata-0.1.0.1/tests/0.core/test_core_query_integration.py +139 -0
  89. xwdata-0.1.0.1/tests/0.core/test_core_references.py +151 -0
  90. xwdata-0.1.0.1/tests/0.core/test_core_roundtrip.py +112 -0
  91. xwdata-0.1.0.1/tests/0.core/test_xwdata_xwquery_integration.py +79 -0
  92. xwdata-0.1.0.1/tests/1.unit/__init__.py +13 -0
  93. xwdata-0.1.0.1/tests/1.unit/builder_tests/__init__.py +4 -0
  94. xwdata-0.1.0.1/tests/1.unit/builder_tests/test_builder_metadata_config.py +144 -0
  95. xwdata-0.1.0.1/tests/1.unit/conftest.py +22 -0
  96. xwdata-0.1.0.1/tests/1.unit/data_tests/__init__.py +13 -0
  97. xwdata-0.1.0.1/tests/1.unit/data_tests/runner.py +77 -0
  98. xwdata-0.1.0.1/tests/1.unit/data_tests/test_engine.py +62 -0
  99. xwdata-0.1.0.1/tests/1.unit/metadata_tests/__init__.py +4 -0
  100. xwdata-0.1.0.1/tests/1.unit/metadata_tests/test_metadata_processor.py +165 -0
  101. xwdata-0.1.0.1/tests/1.unit/operations_tests/__init__.py +6 -0
  102. xwdata-0.1.0.1/tests/1.unit/operations_tests/test_integration.py +159 -0
  103. xwdata-0.1.0.1/tests/1.unit/references_tests/__init__.py +15 -0
  104. xwdata-0.1.0.1/tests/1.unit/references_tests/conftest.py +170 -0
  105. xwdata-0.1.0.1/tests/1.unit/references_tests/runner.py +63 -0
  106. xwdata-0.1.0.1/tests/1.unit/references_tests/test_json_refs.py +211 -0
  107. xwdata-0.1.0.1/tests/1.unit/references_tests/test_resolver.py +398 -0
  108. xwdata-0.1.0.1/tests/1.unit/runner.py +109 -0
  109. xwdata-0.1.0.1/tests/1.unit/shortcuts_tests/__init__.py +4 -0
  110. xwdata-0.1.0.1/tests/1.unit/shortcuts_tests/test_quick_validate.py +243 -0
  111. xwdata-0.1.0.1/tests/1.unit/test_xdata.py +68 -0
  112. xwdata-0.1.0.1/tests/2.integration/__init__.py +12 -0
  113. xwdata-0.1.0.1/tests/2.integration/conftest.py +15 -0
  114. xwdata-0.1.0.1/tests/2.integration/runner.py +78 -0
  115. xwdata-0.1.0.1/tests/2.integration/test_async_sync_patterns.py +212 -0
  116. xwdata-0.1.0.1/tests/2.integration/test_format_conversion.py +39 -0
  117. xwdata-0.1.0.1/tests/2.integration/test_reference_resolution.py +275 -0
  118. xwdata-0.1.0.1/tests/2.integration/test_xwnode_delegation.py +196 -0
  119. xwdata-0.1.0.1/tests/__init__.py +12 -0
  120. xwdata-0.1.0.1/tests/conftest.py +124 -0
  121. xwdata-0.1.0.1/tests/core/__init__.py +9 -0
  122. xwdata-0.1.0.1/tests/core/conftest.py +29 -0
  123. xwdata-0.1.0.1/tests/core/runner.py +27 -0
  124. xwdata-0.1.0.1/tests/core/test_core.py +53 -0
  125. xwdata-0.1.0.1/tests/integration/__init__.py +9 -0
  126. xwdata-0.1.0.1/tests/integration/runner.py +27 -0
  127. xwdata-0.1.0.1/tests/runner.py +216 -0
  128. xwdata-0.1.0.1/tests/unit/__init__.py +9 -0
  129. xwdata-0.1.0.1/tests/unit/runner.py +27 -0
  130. xwdata-0.1.0.1/tests/verify_installation.py +140 -0
@@ -0,0 +1,73 @@
1
+ name: Dual PyPI Publish - exonware-xwdata & xwdata
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - 'v*' # Triggers on version tags like v0.0.2, v1.0.0, etc.
7
+ workflow_dispatch: # Allows manual trigger of the workflow
8
+
9
+ jobs:
10
+ publish:
11
+ runs-on: ubuntu-latest
12
+
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+
16
+ - name: Set up Python
17
+ uses: actions/setup-python@v4
18
+ with:
19
+ python-version: '3.8'
20
+
21
+ - name: Install dependencies
22
+ run: |
23
+ python -m pip install --upgrade pip
24
+ pip install build twine
25
+
26
+ - name: Build exonware-xwdata package
27
+ run: |
28
+ echo "Building exonware-xwdata package..."
29
+ python -m build
30
+
31
+ - name: Build xwdata package
32
+ run: |
33
+ echo "Building xwdata package..."
34
+ cp pyproject.toml pyproject.backup.toml
35
+ cp pyproject.xwdata.toml pyproject.toml
36
+ python -m build
37
+ mv pyproject.backup.toml pyproject.toml
38
+
39
+ - name: List built packages
40
+ run: |
41
+ echo "Built packages:"
42
+ find dist -name "*.whl" -o -name "*.tar.gz" | sort
43
+
44
+ - name: Publish exonware-xwdata to PyPI
45
+ env:
46
+ TWINE_USERNAME: __token__
47
+ TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
48
+ run: |
49
+ echo "Publishing exonware-xwdata to PyPI..."
50
+ ls -la dist/
51
+ twine upload dist/exonware_xwdata-*.whl dist/exonware_xwdata-*.tar.gz
52
+
53
+ - name: Publish xwdata to PyPI
54
+ env:
55
+ TWINE_USERNAME: __token__
56
+ TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
57
+ run: |
58
+ echo "Publishing xwdata to PyPI..."
59
+ twine upload dist/xwdata-*.whl dist/xwdata-*.tar.gz
60
+
61
+ - name: Success notification
62
+ run: |
63
+ echo "Successfully published both packages:"
64
+ echo " exonware-xwdata v${{ github.ref_name }}"
65
+ echo " xwdata v${{ github.ref_name }}"
66
+ echo ""
67
+ echo "PyPI URLs:"
68
+ echo " https://pypi.org/project/exonware-xwdata/"
69
+ echo " https://pypi.org/project/xwdata/"
70
+ echo ""
71
+ echo "Install with:"
72
+ echo " pip install exonware-xwdata"
73
+ echo " pip install xwdata"
@@ -0,0 +1,290 @@
1
+ # ========================================
2
+ # eXonware {LIBRARY_NAME} .gitignore
3
+ # ========================================
4
+
5
+ # CI/CD Tools (keep private)
6
+ .ci/
7
+
8
+ # Migration/legacy directories (may contain paths too long for Windows)
9
+ MIGRAT/
10
+ MIGRATE/
11
+
12
+ # ========================================
13
+ # Python
14
+ # ========================================
15
+ __pycache__/
16
+ *.py[cod]
17
+ *$py.class
18
+ *.so
19
+ .Python
20
+ build/
21
+ develop-eggs/
22
+ dist/
23
+ downloads/
24
+ eggs/
25
+ .eggs/
26
+ lib/
27
+ lib64/
28
+ parts/
29
+ sdist/
30
+ var/
31
+ wheels/
32
+ pip-wheel-metadata/
33
+ share/python-wheels/
34
+ *.egg-info/
35
+ .installed.cfg
36
+ *.egg
37
+ MANIFEST
38
+
39
+ # PyInstaller
40
+ *.manifest
41
+ *.spec
42
+
43
+ # Installer logs
44
+ pip-log.txt
45
+ pip-delete-this-directory.txt
46
+
47
+ # Unit test / coverage reports
48
+ htmlcov/
49
+ .tox/
50
+ .nox/
51
+ .coverage
52
+ .coverage.*
53
+ .cache
54
+ nosetests.xml
55
+ coverage.xml
56
+ *.cover
57
+ *.py,cover
58
+ .hypothesis/
59
+ .pytest_cache/
60
+ cover/
61
+
62
+ # Translations
63
+ *.mo
64
+ *.pot
65
+
66
+ # Django stuff
67
+ *.log
68
+ local_settings.py
69
+ db.sqlite3
70
+ db.sqlite3-journal
71
+
72
+ # Flask stuff
73
+ instance/
74
+ .webassets-cache
75
+
76
+ # Scrapy stuff
77
+ .scrapy
78
+
79
+ # Sphinx documentation
80
+ docs/_build/
81
+
82
+ # PyBuilder
83
+ .pybuilder/
84
+ target/
85
+
86
+ # Jupyter Notebook
87
+ .ipynb_checkpoints
88
+
89
+ # IPython
90
+ profile_default/
91
+ ipython_config.py
92
+
93
+ # pyenv
94
+ # For a library or package, you might want to ignore these files since the code is
95
+ # intended to run in multiple environments; otherwise, check them in:
96
+ # .python-version
97
+
98
+ # pipenv
99
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
100
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
101
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
102
+ # install all needed dependencies.
103
+ #Pipfile.lock
104
+
105
+ # poetry
106
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
107
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
108
+ # commonly ignored for libraries.
109
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
110
+ #poetry.lock
111
+
112
+ # pdm
113
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
114
+ #pdm.lock
115
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
116
+ # in version control.
117
+ # https://pdm.fming.dev/#use-with-ide
118
+ .pdm.toml
119
+
120
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
121
+ __pypackages__/
122
+
123
+ # Celery stuff
124
+ celerybeat-schedule
125
+ celerybeat.pid
126
+
127
+ # SageMath parsed files
128
+ *.sage.py
129
+
130
+ # Environments
131
+ .env
132
+ .venv
133
+ env/
134
+ venv/
135
+ ENV/
136
+ env.bak/
137
+ venv.bak/
138
+
139
+ # Spyder project settings
140
+ .spyderproject
141
+ .spyproject
142
+
143
+ # Rope project settings
144
+ .ropeproject
145
+
146
+ # mkdocs documentation
147
+ /site
148
+
149
+ # mypy
150
+ .mypy_cache/
151
+ .dmypy.json
152
+ dmypy.json
153
+
154
+ # Pyre type checker
155
+ .pyre/
156
+
157
+ # pytype static type analyzer
158
+ .pytype/
159
+
160
+ # Cython debug symbols
161
+ cython_debug/
162
+
163
+ # ========================================
164
+ # IDEs and Editors
165
+ # ========================================
166
+
167
+ # Visual Studio Code
168
+ .vscode/
169
+ !.vscode/settings.json
170
+ !.vscode/tasks.json
171
+ !.vscode/launch.json
172
+ !.vscode/extensions.json
173
+ !.vscode/*.code-snippets
174
+
175
+ # Local History for Visual Studio Code
176
+ .history/
177
+
178
+ # Built Visual Studio Code Extensions
179
+ *.vsix
180
+
181
+ # PyCharm
182
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
183
+ # be added to the global gitignore or merged into this file. For a more nuclear
184
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
185
+ .idea/
186
+
187
+ # Sublime Text
188
+ *.tmlanguage.cache
189
+ *.tmPreferences.cache
190
+ *.stTheme.cache
191
+ *.sublime-workspace
192
+ *.sublime-project
193
+
194
+ # Vim
195
+ *~
196
+ *.swp
197
+ *.swo
198
+ *tmp
199
+
200
+ # Emacs
201
+ *~
202
+ \#*\#
203
+ /.emacs.desktop
204
+ /.emacs.desktop.lock
205
+ *.elc
206
+ auto-save-list
207
+ tramp
208
+ .\#*
209
+
210
+ # ========================================
211
+ # Operating Systems
212
+ # ========================================
213
+
214
+ # Windows
215
+ Thumbs.db
216
+ Thumbs.db:encryptable
217
+ ehthumbs.db
218
+ ehthumbs_vista.db
219
+ *.stackdump
220
+ [Dd]esktop.ini
221
+ $RECYCLE.BIN/
222
+ *.cab
223
+ *.msi
224
+ *.msix
225
+ *.msm
226
+ *.msp
227
+ *.lnk
228
+
229
+ # macOS
230
+ .DS_Store
231
+ .AppleDouble
232
+ .LSOverride
233
+ Icon
234
+ ._*
235
+ .DocumentRevisions-V100
236
+ .fseventsd
237
+ .Spotlight-V100
238
+ .TemporaryItems
239
+ .Trashes
240
+ .VolumeIcon.icns
241
+ .com.apple.timemachine.donotpresent
242
+ .AppleDB
243
+ .AppleDesktop
244
+ Network Trash Folder
245
+ Temporary Items
246
+ .apdisk
247
+
248
+ # Linux
249
+ *~
250
+ .fuse_hidden*
251
+ .directory
252
+ .Trash-*
253
+ .nfs*
254
+
255
+ # ========================================
256
+ # Development Tools
257
+ # ========================================
258
+
259
+ # Test runner output files (auto-generated)
260
+ **/runner_out.md
261
+ tests/runner_out.md
262
+ tests/*/runner_out.md
263
+ tests/*/*/runner_out.md
264
+
265
+ # Backup files
266
+ *.bak
267
+ *.backup
268
+ *.tmp
269
+ *.temp
270
+
271
+ # Log files
272
+ *.log
273
+ logs/
274
+
275
+ # Database files
276
+ *.sqlite
277
+ *.sqlite3
278
+ *.db
279
+
280
+ # Configuration files with secrets
281
+ config.ini
282
+ secrets.json
283
+ .secrets
284
+ credentials.json
285
+
286
+ # Local environment files
287
+ .env.local
288
+ .env.development.local
289
+ .env.test.local
290
+ .env.production.local
xwdata-0.1.0.1/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 eXonware.com - Eng. Muhammad AlShehri
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.