vws-python-mock 2026.8.4__py3-none-any.whl
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.
- mock_vws/__init__.py +9 -0
- mock_vws/_base64_decoding.py +35 -0
- mock_vws/_constants.py +84 -0
- mock_vws/_database_matchers.py +107 -0
- mock_vws/_flask_server/Dockerfile +32 -0
- mock_vws/_flask_server/__init__.py +1 -0
- mock_vws/_flask_server/healthcheck.py +31 -0
- mock_vws/_flask_server/target_manager.py +447 -0
- mock_vws/_flask_server/vwq.py +173 -0
- mock_vws/_flask_server/vws.py +954 -0
- mock_vws/_mock_common.py +75 -0
- mock_vws/_model_target_web_api.py +486 -0
- mock_vws/_query_tools.py +136 -0
- mock_vws/_query_validators/__init__.py +128 -0
- mock_vws/_query_validators/accept_header_validators.py +31 -0
- mock_vws/_query_validators/auth_validators.py +143 -0
- mock_vws/_query_validators/content_length_validators.py +90 -0
- mock_vws/_query_validators/content_type_validators.py +65 -0
- mock_vws/_query_validators/date_validators.py +110 -0
- mock_vws/_query_validators/exceptions.py +769 -0
- mock_vws/_query_validators/fields_validators.py +47 -0
- mock_vws/_query_validators/image_validators.py +197 -0
- mock_vws/_query_validators/include_target_data_validators.py +51 -0
- mock_vws/_query_validators/num_results_validators.py +64 -0
- mock_vws/_query_validators/project_state_validators.py +49 -0
- mock_vws/_requests_mock_server/__init__.py +1 -0
- mock_vws/_requests_mock_server/decorators.py +275 -0
- mock_vws/_requests_mock_server/mock_web_query_api.py +139 -0
- mock_vws/_requests_mock_server/mock_web_services_api.py +954 -0
- mock_vws/_respx_mock_server/__init__.py +1 -0
- mock_vws/_respx_mock_server/decorators.py +186 -0
- mock_vws/_services_validators/__init__.py +186 -0
- mock_vws/_services_validators/active_flag_validators.py +43 -0
- mock_vws/_services_validators/auth_validators.py +124 -0
- mock_vws/_services_validators/content_length_validators.py +102 -0
- mock_vws/_services_validators/content_type_validators.py +42 -0
- mock_vws/_services_validators/date_validators.py +78 -0
- mock_vws/_services_validators/exceptions.py +858 -0
- mock_vws/_services_validators/image_validators.py +220 -0
- mock_vws/_services_validators/json_validators.py +69 -0
- mock_vws/_services_validators/key_validators.py +171 -0
- mock_vws/_services_validators/metadata_validators.py +106 -0
- mock_vws/_services_validators/name_validators.py +235 -0
- mock_vws/_services_validators/project_state_validators.py +76 -0
- mock_vws/_services_validators/request_quota_validators.py +42 -0
- mock_vws/_services_validators/target_quota_validators.py +41 -0
- mock_vws/_services_validators/target_validators.py +69 -0
- mock_vws/_services_validators/width_validators.py +38 -0
- mock_vws/database.py +257 -0
- mock_vws/database_type.py +13 -0
- mock_vws/image_matchers.py +124 -0
- mock_vws/model_target.py +79 -0
- mock_vws/py.typed +0 -0
- mock_vws/states.py +20 -0
- mock_vws/target.py +285 -0
- mock_vws/target_manager.py +178 -0
- mock_vws/target_raters.py +109 -0
- vws_python_mock-2026.8.4.dist-info/METADATA +177 -0
- vws_python_mock-2026.8.4.dist-info/RECORD +62 -0
- vws_python_mock-2026.8.4.dist-info/WHEEL +5 -0
- vws_python_mock-2026.8.4.dist-info/licenses/LICENSE +21 -0
- vws_python_mock-2026.8.4.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: vws-python-mock
|
|
3
|
+
Version: 2026.8.4
|
|
4
|
+
Summary: A mock for the Vuforia Web Services (VWS) API.
|
|
5
|
+
Author-email: Adam Dangoor <adamdangoor@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Documentation, https://vws-python.github.io/vws-python-mock/
|
|
8
|
+
Project-URL: Source, https://github.com/VWS-Python/vws-python-mock
|
|
9
|
+
Keywords: client,fake,mock,vuforia,vws
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
+
Classifier: Environment :: Web Environment
|
|
12
|
+
Classifier: Framework :: Pytest
|
|
13
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
14
|
+
Classifier: Operating System :: POSIX
|
|
15
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
17
|
+
Requires-Python: >=3.14
|
|
18
|
+
Description-Content-Type: text/x-rst
|
|
19
|
+
License-File: LICENSE
|
|
20
|
+
Requires-Dist: beartype>=0.22.9
|
|
21
|
+
Requires-Dist: flask>=3.0.3
|
|
22
|
+
Requires-Dist: httpx>=0.27.0
|
|
23
|
+
Requires-Dist: numpy>=1.26.4
|
|
24
|
+
Requires-Dist: pillow>=11.0.0
|
|
25
|
+
Requires-Dist: piq>=0.8.0
|
|
26
|
+
Requires-Dist: pydantic-settings>=2.6.1
|
|
27
|
+
Requires-Dist: requests>=2.32.3
|
|
28
|
+
Requires-Dist: responses>=0.25.3
|
|
29
|
+
Requires-Dist: respx>=0.21.0
|
|
30
|
+
Requires-Dist: torch>=2.5.1
|
|
31
|
+
Requires-Dist: torchmetrics>=1.5.1
|
|
32
|
+
Requires-Dist: torchvision>=0.20.1
|
|
33
|
+
Requires-Dist: tzdata; sys_platform == "win32"
|
|
34
|
+
Requires-Dist: vws-auth-tools>=2024.7.12
|
|
35
|
+
Requires-Dist: werkzeug>=3.1.2
|
|
36
|
+
Provides-Extra: dev
|
|
37
|
+
Requires-Dist: actionlint-py==1.7.12.24; extra == "dev"
|
|
38
|
+
Requires-Dist: check-manifest==0.51; extra == "dev"
|
|
39
|
+
Requires-Dist: check-wheel-contents==0.6.3; extra == "dev"
|
|
40
|
+
Requires-Dist: coverage==7.15.2; extra == "dev"
|
|
41
|
+
Requires-Dist: deptry==0.25.1; extra == "dev"
|
|
42
|
+
Requires-Dist: dirty-equals==0.11; extra == "dev"
|
|
43
|
+
Requires-Dist: doc8==2.0.0; extra == "dev"
|
|
44
|
+
Requires-Dist: doccmd==2026.7.19; extra == "dev"
|
|
45
|
+
Requires-Dist: docker==7.2.0; extra == "dev"
|
|
46
|
+
Requires-Dist: freezegun==1.5.5; extra == "dev"
|
|
47
|
+
Requires-Dist: furo==2025.12.19; extra == "dev"
|
|
48
|
+
Requires-Dist: interrogate==1.7.0; extra == "dev"
|
|
49
|
+
Requires-Dist: mypy[faster-cache]==2.3.0; extra == "dev"
|
|
50
|
+
Requires-Dist: mypy-strict-kwargs==2026.7.19.1; extra == "dev"
|
|
51
|
+
Requires-Dist: prek==0.4.11; extra == "dev"
|
|
52
|
+
Requires-Dist: pydocstringformatter==1.0.0; extra == "dev"
|
|
53
|
+
Requires-Dist: pydocstyle==6.3; extra == "dev"
|
|
54
|
+
Requires-Dist: pylint[spelling]==4.0.6; extra == "dev"
|
|
55
|
+
Requires-Dist: pylint-per-file-ignores==3.2.1; extra == "dev"
|
|
56
|
+
Requires-Dist: pyproject-fmt==2.26.0; extra == "dev"
|
|
57
|
+
Requires-Dist: pyrefly==1.1.1; extra == "dev"
|
|
58
|
+
Requires-Dist: pyright==1.1.411; extra == "dev"
|
|
59
|
+
Requires-Dist: pyroma==5.0.1; extra == "dev"
|
|
60
|
+
Requires-Dist: pytest==9.1.1; extra == "dev"
|
|
61
|
+
Requires-Dist: pytest-beartype-tests==2026.4.26; extra == "dev"
|
|
62
|
+
Requires-Dist: pytest-retry==1.7.0; extra == "dev"
|
|
63
|
+
Requires-Dist: pytest-xdist==3.8.0; extra == "dev"
|
|
64
|
+
Requires-Dist: pyyaml==6.0.3; extra == "dev"
|
|
65
|
+
Requires-Dist: requests-mock-flask==2026.4.2; extra == "dev"
|
|
66
|
+
Requires-Dist: ruff==0.16.1; extra == "dev"
|
|
67
|
+
Requires-Dist: shellcheck-py==0.11.0.1; extra == "dev"
|
|
68
|
+
Requires-Dist: shfmt-py==4.0.0; extra == "dev"
|
|
69
|
+
Requires-Dist: sphinx==9.1.0; extra == "dev"
|
|
70
|
+
Requires-Dist: sphinx-copybutton==0.5.2; extra == "dev"
|
|
71
|
+
Requires-Dist: sphinx-lint==1.0.2; extra == "dev"
|
|
72
|
+
Requires-Dist: sphinx-paramlinks==0.6; extra == "dev"
|
|
73
|
+
Requires-Dist: sphinx-pyproject==0.3.0; extra == "dev"
|
|
74
|
+
Requires-Dist: sphinx-substitution-extensions==2026.6.17; extra == "dev"
|
|
75
|
+
Requires-Dist: sphinx-toolbox==4.3.0; extra == "dev"
|
|
76
|
+
Requires-Dist: sphinxcontrib-httpdomain==2.0.0; extra == "dev"
|
|
77
|
+
Requires-Dist: sphinxcontrib-spelling==8.0.2; extra == "dev"
|
|
78
|
+
Requires-Dist: sphinxcontrib-towncrier==0.5.0a0; extra == "dev"
|
|
79
|
+
Requires-Dist: strict-kwargs==2026.7.24; extra == "dev"
|
|
80
|
+
Requires-Dist: sybil==10.1.0; extra == "dev"
|
|
81
|
+
Requires-Dist: tenacity==9.1.4; extra == "dev"
|
|
82
|
+
Requires-Dist: towncrier==25.8.0; extra == "dev"
|
|
83
|
+
Requires-Dist: ty==0.0.65; extra == "dev"
|
|
84
|
+
Requires-Dist: types-docker==7.2.0.20260728; extra == "dev"
|
|
85
|
+
Requires-Dist: types-pyyaml==6.0.12.20260724; extra == "dev"
|
|
86
|
+
Requires-Dist: types-requests==2.33.0.20260712; extra == "dev"
|
|
87
|
+
Requires-Dist: urllib3==2.7.0; extra == "dev"
|
|
88
|
+
Requires-Dist: vulture==2.16; extra == "dev"
|
|
89
|
+
Requires-Dist: vws-python==2026.2.25.1; extra == "dev"
|
|
90
|
+
Requires-Dist: vws-test-fixtures==2023.3.5; extra == "dev"
|
|
91
|
+
Requires-Dist: vws-web-tools==2026.5.21; extra == "dev"
|
|
92
|
+
Requires-Dist: yamlfix==1.19.1; extra == "dev"
|
|
93
|
+
Requires-Dist: zizmor==1.28.0; extra == "dev"
|
|
94
|
+
Provides-Extra: release
|
|
95
|
+
Requires-Dist: check-wheel-contents==0.6.3; extra == "release"
|
|
96
|
+
Requires-Dist: towncrier==25.8.0; extra == "release"
|
|
97
|
+
Dynamic: license-file
|
|
98
|
+
|
|
99
|
+
|Build Status| |PyPI|
|
|
100
|
+
|
|
101
|
+
VWS Mock
|
|
102
|
+
========
|
|
103
|
+
|
|
104
|
+
.. contents::
|
|
105
|
+
:local:
|
|
106
|
+
|
|
107
|
+
Mock for the Vuforia Web Services (VWS) API, the Vuforia Web Query API, and the Model Target Web API.
|
|
108
|
+
|
|
109
|
+
Mocking calls made to Vuforia
|
|
110
|
+
------------------------------
|
|
111
|
+
|
|
112
|
+
``MockVWS`` intercepts requests made with `requests`_ or `httpx`_.
|
|
113
|
+
|
|
114
|
+
.. code-block:: shell
|
|
115
|
+
|
|
116
|
+
pip install vws-python-mock
|
|
117
|
+
|
|
118
|
+
This requires Python |minimum-python-version|\+.
|
|
119
|
+
|
|
120
|
+
.. code-block:: python
|
|
121
|
+
|
|
122
|
+
"""Make a request to the Vuforia Web Services API mock."""
|
|
123
|
+
|
|
124
|
+
import requests
|
|
125
|
+
|
|
126
|
+
from mock_vws import MockVWS
|
|
127
|
+
from mock_vws.database import CloudDatabase
|
|
128
|
+
|
|
129
|
+
with MockVWS() as mock:
|
|
130
|
+
database = CloudDatabase()
|
|
131
|
+
mock.add_cloud_database(cloud_database=database)
|
|
132
|
+
# This will use the Vuforia mock.
|
|
133
|
+
requests.get(url="https://vws.vuforia.com/summary", timeout=30)
|
|
134
|
+
|
|
135
|
+
``MockVWS`` also intercepts `httpx`_ requests:
|
|
136
|
+
|
|
137
|
+
.. code-block:: python
|
|
138
|
+
|
|
139
|
+
"""Make a request to the Vuforia Web Services API mock using httpx."""
|
|
140
|
+
|
|
141
|
+
import httpx
|
|
142
|
+
|
|
143
|
+
from mock_vws import MockVWS
|
|
144
|
+
from mock_vws.database import CloudDatabase
|
|
145
|
+
|
|
146
|
+
with MockVWS() as mock:
|
|
147
|
+
database = CloudDatabase()
|
|
148
|
+
mock.add_cloud_database(cloud_database=database)
|
|
149
|
+
# This will use the Vuforia mock.
|
|
150
|
+
httpx.get(url="https://vws.vuforia.com/summary", timeout=30)
|
|
151
|
+
|
|
152
|
+
By default, an exception will be raised if any requests to unmocked addresses are made.
|
|
153
|
+
|
|
154
|
+
.. _requests: https://pypi.org/project/requests/
|
|
155
|
+
.. _httpx: https://pypi.org/project/httpx/
|
|
156
|
+
|
|
157
|
+
Using Docker to mock calls to Vuforia from any language
|
|
158
|
+
-------------------------------------------------------
|
|
159
|
+
|
|
160
|
+
It is possible run a Mock VWS instance using Docker containers.
|
|
161
|
+
|
|
162
|
+
This allows you to run tests against a mock VWS instance regardless of the language or tooling you are using.
|
|
163
|
+
|
|
164
|
+
See the `the instructions <https://vws-python.github.io/vws-python-mock/docker.html>`__ for how to do this.
|
|
165
|
+
|
|
166
|
+
Full documentation
|
|
167
|
+
------------------
|
|
168
|
+
|
|
169
|
+
See the `full documentation <https://vws-python.github.io/vws-python-mock/>`__.
|
|
170
|
+
This includes details on how to use the mock, options, and details of the differences between the mock and the real Vuforia Web Services.
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
.. |Build Status| image:: https://github.com/VWS-Python/vws-python-mock/actions/workflows/test.yml/badge.svg?branch=main
|
|
174
|
+
:target: https://github.com/VWS-Python/vws-python-mock/actions
|
|
175
|
+
.. |PyPI| image:: https://badge.fury.io/py/VWS-Python-Mock.svg
|
|
176
|
+
:target: https://badge.fury.io/py/VWS-Python-Mock
|
|
177
|
+
.. |minimum-python-version| replace:: 3.14
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
mock_vws/__init__.py,sha256=0uK9QpC7GXd25R84zqUkCYLLWirQBTwTZe567E2-rSk,228
|
|
2
|
+
mock_vws/_base64_decoding.py,sha256=BYq4RvzGNancdBNmysT-25AiljZloffAPVW_MDECP-I,945
|
|
3
|
+
mock_vws/_constants.py,sha256=hg4JfJzvN_DSvANmZPQCiv_7-onJ_YvTdDlqTDnnDxE,2746
|
|
4
|
+
mock_vws/_database_matchers.py,sha256=i7BlpLUtuCKlcXpxl6Er9ZG-bz_uyEVLZuopr1uct_8,3382
|
|
5
|
+
mock_vws/_mock_common.py,sha256=pga7lmAW7pTiPTPK6TphNaTrL0WeEwj0pqlerAomoEc,1776
|
|
6
|
+
mock_vws/_model_target_web_api.py,sha256=s5i1LMDy9PqaEAc7E1jelmCaQpUPljt6SDvyzybArzs,14628
|
|
7
|
+
mock_vws/_query_tools.py,sha256=rhiHj_utUV_rAl9_kMrIkLJcLVlFZPBnt7UvvOWknOc,4151
|
|
8
|
+
mock_vws/database.py,sha256=4AlZsPBJKt4rdi-OL7urdgDPWuUiP32uxzLlN1DYA_Y,9113
|
|
9
|
+
mock_vws/database_type.py,sha256=mHsED71JwtS5EpuhR43SJCo9PL9mzMYFNYTUn-pzmak,232
|
|
10
|
+
mock_vws/image_matchers.py,sha256=F-kuc7t8dEMdGDa87FFBWXVH8elvsbO_adHpzePScLI,4020
|
|
11
|
+
mock_vws/model_target.py,sha256=DBbAvLAo_3oLOcxckbEFj4-5zkCmB9I2URSq3MGp0Pc,2411
|
|
12
|
+
mock_vws/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
+
mock_vws/states.py,sha256=KNuUXSWsU6cEJ1SvwxVsZySXq-93i9bl457RxSKefAs,396
|
|
14
|
+
mock_vws/target.py,sha256=vbD3D_TpNV_nreSwFWcmQVJzxEkrOpDEi0vhqSmFAyA,9733
|
|
15
|
+
mock_vws/target_manager.py,sha256=oM9XiS5mEdBpzHZcGiEBcKTCGgCpXs2gb2dBE6GzitY,5969
|
|
16
|
+
mock_vws/target_raters.py,sha256=h9Y499jlpAWPsKbIZTrqENLyN2FGJOzZ6iRJNMt8NPo,3252
|
|
17
|
+
mock_vws/_flask_server/Dockerfile,sha256=vxWYQIRa-4aLVYN5fNnNE1OPl912iMHfUjGuEp5htYw,1098
|
|
18
|
+
mock_vws/_flask_server/__init__.py,sha256=ttgZ5WNWb3Oeyd1lt21Mt2zkVE1oqBXJCw-SDp3dIj4,53
|
|
19
|
+
mock_vws/_flask_server/healthcheck.py,sha256=vJ_18739e72SU20SEEM3BxfFbyJ4kq9aLa09WcDOlxg,759
|
|
20
|
+
mock_vws/_flask_server/target_manager.py,sha256=nN4CK6F19SR_UtNok53q9dIIMRQIOhnEhOIA7wRiRSk,13620
|
|
21
|
+
mock_vws/_flask_server/vwq.py,sha256=ZmxW3AWK7a2R0XeHay7X2pvGioznpYqxKwAbv6XrfqY,5223
|
|
22
|
+
mock_vws/_flask_server/vws.py,sha256=l3VTTnXsOxrHLQkMBpHSqLnhTag3GnsV3TEv8zMDteM,30078
|
|
23
|
+
mock_vws/_query_validators/__init__.py,sha256=L8Co-8A5JNixWJqD4cnj8qF-AR1yI8v1VTxJyLSosIY,4093
|
|
24
|
+
mock_vws/_query_validators/accept_header_validators.py,sha256=a6aAVGcU8HH5WYg6tHZ8ZLOMJw6_pRo9_dVv5shnzrc,813
|
|
25
|
+
mock_vws/_query_validators/auth_validators.py,sha256=XVqC6nbsX_0zIrOYwVxn0uCcMZrHDBjotHrC6YP9SfE,4048
|
|
26
|
+
mock_vws/_query_validators/content_length_validators.py,sha256=WQ3ORFGu7zZ3w0ugumcKEP9Vz501pBhAPioRUFPUYpI,2752
|
|
27
|
+
mock_vws/_query_validators/content_type_validators.py,sha256=V1HgxvxzFAW6ZYXQECkVZmbZjub3Qykzj1vBRkjOXio,2051
|
|
28
|
+
mock_vws/_query_validators/date_validators.py,sha256=vjfwCjPC-DR7gRb3c8a-u9lc19AagPu6eyz31qVoKwc,3090
|
|
29
|
+
mock_vws/_query_validators/exceptions.py,sha256=pXcL8NdUJrpcjnx-rSyefhq2aQN3DuQD306TBwp5A-o,23282
|
|
30
|
+
mock_vws/_query_validators/fields_validators.py,sha256=vpo8FLKu5bF6t4mOGkiBJKuF_Rtg53uBq_A9fql6aCc,1357
|
|
31
|
+
mock_vws/_query_validators/image_validators.py,sha256=1vTjFJSjfIkBb3fwpH9AYTI5pJdsRpv1M31UuQSezKo,5622
|
|
32
|
+
mock_vws/_query_validators/include_target_data_validators.py,sha256=2F3i0stIz3RXyEvjbZqtoo4oUjllIIiRiWNR0F20lFM,1605
|
|
33
|
+
mock_vws/_query_validators/num_results_validators.py,sha256=gJkc5ymF9uzcxJrW2ro45Y2dDIqqbb35Sf5BAPVQsnk,2156
|
|
34
|
+
mock_vws/_query_validators/project_state_validators.py,sha256=5DBoWkt_Ii5f4JeU6TyWa6xpCPcIH9eKYHrEXohMH3c,1379
|
|
35
|
+
mock_vws/_requests_mock_server/__init__.py,sha256=qoGQlH925pqG7yVXA6nUItfKCDUPM1fiuSMrvOYtkJk,65
|
|
36
|
+
mock_vws/_requests_mock_server/decorators.py,sha256=8-AP9IwpUdeJ21Hw1P5vI2Cbh2AOvrr4LciCqOWrDjU,9986
|
|
37
|
+
mock_vws/_requests_mock_server/mock_web_query_api.py,sha256=thdu6J6FGqNmmet_BJgtgjsGW4nh8coCsTbjqypYiU8,4187
|
|
38
|
+
mock_vws/_requests_mock_server/mock_web_services_api.py,sha256=8ewe66qgxpfD8NAc7R9m5qj0nXQsbhSWPeCwLMgWxh0,33472
|
|
39
|
+
mock_vws/_respx_mock_server/__init__.py,sha256=ol0PVGVPEzNrBQTnPm6cOPxrfWIHZHMqSfQDHAKrh8I,72
|
|
40
|
+
mock_vws/_respx_mock_server/decorators.py,sha256=9mkC7Z42l53zGP3BWiSPoAkSxA1wUpp_hTZ1LZFkjHU,5530
|
|
41
|
+
mock_vws/_services_validators/__init__.py,sha256=KWJhJVqH0c71hCNKYrneP-SC2NMT2FK-gas3ViYozVo,5948
|
|
42
|
+
mock_vws/_services_validators/active_flag_validators.py,sha256=9lCCLtZOaG2-wYYugB1kI0DF--g0uo49B2OVl_bRkmQ,1049
|
|
43
|
+
mock_vws/_services_validators/auth_validators.py,sha256=5hpTn_WtsUWLKNbSK_lpK5AdkeAhD-JITJDL0PquLSo,3472
|
|
44
|
+
mock_vws/_services_validators/content_length_validators.py,sha256=Ordpz-4SIpVXL0FjlehbaEs7KmaH52ak8G1RO2cDbo8,3088
|
|
45
|
+
mock_vws/_services_validators/content_type_validators.py,sha256=RXsxp9baqp2v845UJd2CR9mi0pcqL_fwUHpL8n9jyks,1150
|
|
46
|
+
mock_vws/_services_validators/date_validators.py,sha256=jPTmlCXfo8-5VzT0Wlmltmpnxgo4VqfxF9Mx0RINuYs,2257
|
|
47
|
+
mock_vws/_services_validators/exceptions.py,sha256=pIv7lXXNTdiETCAlTmpOlBifN46Gvffif7YYxzLWOh8,27661
|
|
48
|
+
mock_vws/_services_validators/image_validators.py,sha256=GQU_mVrDkBJlvJlzH4fIB2IH2Gslo9dGhUs_-PBccfg,5582
|
|
49
|
+
mock_vws/_services_validators/json_validators.py,sha256=EkyG8OGXtsnnilNfG2Fc7la2qkYrky49xUtatZFgjXE,1991
|
|
50
|
+
mock_vws/_services_validators/key_validators.py,sha256=jpaAWkWRhcWTY1Q0fH1BXuu2spJHnt8w8Bt0nQ9V_iw,4556
|
|
51
|
+
mock_vws/_services_validators/metadata_validators.py,sha256=zYchyB4NcM05Y0e-Jhoju4OHzZsfNUydAOMHWof_6GQ,2906
|
|
52
|
+
mock_vws/_services_validators/name_validators.py,sha256=EqFyBGPKfelwJNeVKF_HeyFFf6acL4NeKJvgj6Dj8Ks,6318
|
|
53
|
+
mock_vws/_services_validators/project_state_validators.py,sha256=pWLYdM2oBLBUzwWMKSFrdMld-YocVvh912v0kHw2n9I,2093
|
|
54
|
+
mock_vws/_services_validators/request_quota_validators.py,sha256=Iqo15S5Ndg6JCZX4O04To96EkfO6xLwqMLFJO9srY90,1226
|
|
55
|
+
mock_vws/_services_validators/target_quota_validators.py,sha256=71V_NkMkutLZ6aL_3sHQ0SO4EsjCYPDxwn-PxEngSio,1113
|
|
56
|
+
mock_vws/_services_validators/target_validators.py,sha256=O5HTaUDozuD49CqkWNHU0AbCWMDJQYnRIjqgV45QjHA,1973
|
|
57
|
+
mock_vws/_services_validators/width_validators.py,sha256=hnDresV9LYar5fKhkV3cTIyVWc7MGRfY2qjKqxIG5CY,956
|
|
58
|
+
vws_python_mock-2026.8.4.dist-info/licenses/LICENSE,sha256=N3qm7laipxyuXkWpYllj89AObvPbtWgoABmaKfhQYL4,1069
|
|
59
|
+
vws_python_mock-2026.8.4.dist-info/METADATA,sha256=3fypgOJhgiarswfjHj8n3m85eOH6hrTZAsXURR7y8Vg,6979
|
|
60
|
+
vws_python_mock-2026.8.4.dist-info/WHEEL,sha256=K260EYznzXsJYBQGqmI8VTxEdiZYNvDZwW9cBh9-_MA,91
|
|
61
|
+
vws_python_mock-2026.8.4.dist-info/top_level.txt,sha256=ZM_u8TQO53nPg6timoI2AgUE0BhxIZrXkpT4s46DGlo,9
|
|
62
|
+
vws_python_mock-2026.8.4.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Adam Dangoor
|
|
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.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
mock_vws
|