flightdata 0.3.0__tar.gz → 0.3.2__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.
- {flightdata-0.3.0 → flightdata-0.3.2}/PKG-INFO +3 -2
- {flightdata-0.3.0 → flightdata-0.3.2}/pyproject.toml +3 -2
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/state/state.py +0 -1
- {flightdata-0.3.0 → flightdata-0.3.2}/uv.lock +123 -10
- {flightdata-0.3.0 → flightdata-0.3.2}/.github/workflows/publish_pypi.yml +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/.gitignore +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/.vscode/launch.json +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/.vscode/settings.json +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/LICENSE +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/README.md +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/examples/__init__.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/examples/data/__init__.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/examples/data/manual_F3A_F23_22_04_28_00000231.json +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/examples/data/manual_F3A_P23_22_05_31_00000350.json +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/examples/data/manual_F3A_P23_23_08_11_00000094.json +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/examples/flight_dynamics/00000150.json +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/examples/flight_dynamics/__init__.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/examples/flight_dynamics/box.f3a +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/examples/flight_dynamics/param_id.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/examples/interpolation/slice_linear_interpolation.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/examples/interpolation/st.json +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/examples/interpolation/temp.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/examples/state_analysis/__init__.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/examples/state_analysis/axes.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/examples/state_analysis/state_fill_plot.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/__init__.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/base/__init__.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/base/collection.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/base/labeling.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/base/numpy_encoder.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/base/table/__init__.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/base/table/constructs.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/base/table/label.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/base/table/labelgroup.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/base/table/labelgroups.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/base/table/slicer.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/base/table/table.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/bindata.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/coefficients.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/environment/__init__.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/environment/environment.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/environment/wind.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/flight/__init__.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/flight/ardupilot.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/flight/fields.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/flight/flight.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/flight/parameters.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/flow.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/model/__init__.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/model/aerodynamic.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/model/thrust.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/origin.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/py.typed +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/scripts/collect_logs.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/scripts/flightline.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/state/__init__.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/state/alignment.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/state/kinematics.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/src/flightdata/state_maker.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/EmailedBox.f3a +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/__init__.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/base/__init__.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/base/test_base_constructs.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/base/test_labels.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/base/test_table.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/conftest.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/data/bin_parser_GPS.csv +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/data/bin_parser_POS.csv +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/data/make_inputs.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/data/manual_F3A_P23.json +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/data/old_state.json +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/data/p23.BIN +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/data/p23.json +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/data/p23_box.f3a +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/data/p23_fc.json +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/data/p23_flight.json +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/data/script_tests/c6_on_0001.BIN +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/data/script_tests/center_0003.bin +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/data/script_tests/pilot_0004.BIN +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/data/vtol_hover.bin +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/data/vtol_hover.json +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/data/web_bin_parse.json +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/test_bindata.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/test_dtw.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/test_environment/__init__.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/test_environment/test_environment.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/test_environment/test_environment_wind.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/test_fields.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/test_flight.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/test_model/__init__.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/test_model/test_model_coefficients.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/test_model/test_model_flow.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/test_origin.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/test_scripts.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/test_state/__init__.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/test_state/test_state.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/test_state/test_state_builders.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/test_state/test_state_conversions.py +0 -0
- {flightdata-0.3.0 → flightdata-0.3.2}/test/test_state/test_state_measurements.py +0 -0
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flightdata
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.2
|
|
4
4
|
Summary: Python tools for handling flight data
|
|
5
5
|
Author-email: Thomas David <thomasdavid0@gmail.com>
|
|
6
6
|
License-File: LICENSE
|
|
7
7
|
Requires-Python: >=3.12
|
|
8
8
|
Requires-Dist: numpy>=2.1.3
|
|
9
9
|
Requires-Dist: pandas>=2.2.3
|
|
10
|
-
Requires-Dist: pfc-geometry>=0.2.
|
|
10
|
+
Requires-Dist: pfc-geometry>=0.2.17
|
|
11
11
|
Requires-Dist: pfcschemas>=0.1.10
|
|
12
|
+
Requires-Dist: simplejson>=3.20.1
|
|
12
13
|
Provides-Extra: dataflash
|
|
13
14
|
Requires-Dist: ardupilot-log-reader; extra == 'dataflash'
|
|
14
15
|
Description-Content-Type: text/markdown
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "flightdata"
|
|
3
|
-
version = "0.3.
|
|
3
|
+
version = "0.3.2"
|
|
4
4
|
description = "Python tools for handling flight data"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [{ name = "Thomas David", email = "thomasdavid0@gmail.com" }]
|
|
@@ -8,8 +8,9 @@ requires-python = ">=3.12"
|
|
|
8
8
|
dependencies = [
|
|
9
9
|
"numpy>=2.1.3",
|
|
10
10
|
"pandas>=2.2.3",
|
|
11
|
-
"pfc-geometry>=0.2.
|
|
11
|
+
"pfc-geometry>=0.2.17",
|
|
12
12
|
"pfcschemas>=0.1.10",
|
|
13
|
+
"simplejson>=3.20.1",
|
|
13
14
|
]
|
|
14
15
|
|
|
15
16
|
[project.scripts]
|
|
@@ -35,13 +35,14 @@ wheels = [
|
|
|
35
35
|
|
|
36
36
|
[[package]]
|
|
37
37
|
name = "flightdata"
|
|
38
|
-
version = "0.
|
|
38
|
+
version = "0.3.1"
|
|
39
39
|
source = { editable = "." }
|
|
40
40
|
dependencies = [
|
|
41
41
|
{ name = "numpy" },
|
|
42
42
|
{ name = "pandas" },
|
|
43
43
|
{ name = "pfc-geometry" },
|
|
44
44
|
{ name = "pfcschemas" },
|
|
45
|
+
{ name = "simplejson" },
|
|
45
46
|
]
|
|
46
47
|
|
|
47
48
|
[package.optional-dependencies]
|
|
@@ -56,11 +57,12 @@ dev = [
|
|
|
56
57
|
|
|
57
58
|
[package.metadata]
|
|
58
59
|
requires-dist = [
|
|
59
|
-
{ name = "ardupilot-log-reader", marker = "extra == 'dataflash'"
|
|
60
|
+
{ name = "ardupilot-log-reader", marker = "extra == 'dataflash'" },
|
|
60
61
|
{ name = "numpy", specifier = ">=2.1.3" },
|
|
61
62
|
{ name = "pandas", specifier = ">=2.2.3" },
|
|
62
|
-
{ name = "pfc-geometry", specifier = ">=0.2.
|
|
63
|
-
{ name = "pfcschemas", specifier = ">=0.1.
|
|
63
|
+
{ name = "pfc-geometry", specifier = ">=0.2.17" },
|
|
64
|
+
{ name = "pfcschemas", specifier = ">=0.1.10" },
|
|
65
|
+
{ name = "simplejson", specifier = ">=3.20.1" },
|
|
64
66
|
]
|
|
65
67
|
|
|
66
68
|
[package.metadata.requires-dev]
|
|
@@ -164,6 +166,30 @@ wheels = [
|
|
|
164
166
|
{ url = "https://files.pythonhosted.org/packages/86/09/a5ab407bd7f5f5599e6a9261f964ace03a73e7c6928de906981c31c38082/numpy-2.1.3-cp313-cp313t-win_amd64.whl", hash = "sha256:2564fbdf2b99b3f815f2107c1bbc93e2de8ee655a69c261363a1172a79a257d4", size = 12644098 },
|
|
165
167
|
]
|
|
166
168
|
|
|
169
|
+
[[package]]
|
|
170
|
+
name = "numpy-quaternion"
|
|
171
|
+
version = "2024.0.8"
|
|
172
|
+
source = { registry = "https://pypi.org/simple" }
|
|
173
|
+
dependencies = [
|
|
174
|
+
{ name = "numpy" },
|
|
175
|
+
{ name = "scipy" },
|
|
176
|
+
]
|
|
177
|
+
sdist = { url = "https://files.pythonhosted.org/packages/59/3c/0dc1f644316f623fcb3d60f07cc62bfd6bec879fff1d1cd56c376c21511a/numpy_quaternion-2024.0.8.tar.gz", hash = "sha256:764b97a1be816671b5308777efde7dfbcfa9dab0d650d454ce0314e0879434ac", size = 67047 }
|
|
178
|
+
wheels = [
|
|
179
|
+
{ url = "https://files.pythonhosted.org/packages/55/5a/4cb390ab47d664e350b562b832a5f63eed9c8ac0bb59780efdda7f7ad951/numpy_quaternion-2024.0.8-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:bbb684330b5fd01c31a8c8468fc70538efd222ed2ff7a9b1b03175c674456d9d", size = 86631 },
|
|
180
|
+
{ url = "https://files.pythonhosted.org/packages/6a/39/a9a53581742464cd3b8a77642b0003c952946699b288e73e5c2cfd089c4d/numpy_quaternion-2024.0.8-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:c453ce0b91a8bbfe76dc4497208dddcff2d16194c4b61b673b3ab7c73700c515", size = 61446 },
|
|
181
|
+
{ url = "https://files.pythonhosted.org/packages/d1/12/a104247d11170678d00cf70efbd3f595147c2feae041b461531668360ab5/numpy_quaternion-2024.0.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d94e42758997f52f3b2d9edd7eb6017f8280e1287ec174728353d8145d0a2d86", size = 55425 },
|
|
182
|
+
{ url = "https://files.pythonhosted.org/packages/91/84/b47c5ebafe2dc57fcc30c0816297ea99b951b1ddc19fbac3b2f036807efa/numpy_quaternion-2024.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:01dc4b187b29c75e30bed97f16aa3004090d3121bf630e0f5330512e2dd6314f", size = 184766 },
|
|
183
|
+
{ url = "https://files.pythonhosted.org/packages/fc/51/663806320ba15cc2fbfd46d274e9a4f303f6c918748120f682d9cf32e164/numpy_quaternion-2024.0.8-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a259d52b3f8202e06f7baf5f61daa8f13db14ceb66f8db0e760ac651aed8d65", size = 200773 },
|
|
184
|
+
{ url = "https://files.pythonhosted.org/packages/4f/9e/709c8a543649b2cddd223a3a86ce5295c5a28e2194f56736c10a6c643e2d/numpy_quaternion-2024.0.8-cp312-cp312-win_amd64.whl", hash = "sha256:2380a725a74258323220b6e54394b8df7d343e63e09a041d0b1050b868a87ef5", size = 70772 },
|
|
185
|
+
{ url = "https://files.pythonhosted.org/packages/12/7a/da6925e18e395be0a94ea2cd7636b5d610e5d1d5f0402b8719d76d4da0b2/numpy_quaternion-2024.0.8-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e3743df6ddecd478f8e2bd12b82fa161072d90cf463286ec799040e6dcbfa183", size = 86623 },
|
|
186
|
+
{ url = "https://files.pythonhosted.org/packages/c1/1d/7a2bc8dfc997ce312665aabb94f9189ed7b792eec90b8286c4e004cf6361/numpy_quaternion-2024.0.8-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:79873e7d57fd83f347438a18a9233b73df5c3c436f137c3fe26c72b98b32962c", size = 61449 },
|
|
187
|
+
{ url = "https://files.pythonhosted.org/packages/be/aa/063839099b24d47b7746468cbe2c2cec1d8533f8a6481a6668df4fcfe0d7/numpy_quaternion-2024.0.8-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:ebcdc05b18ef8cb317523f17bd08d36d63c48c52b4d35871bc06500d942501e3", size = 55428 },
|
|
188
|
+
{ url = "https://files.pythonhosted.org/packages/38/e6/54289204e363505636e60a05b3f7c2b6f800bea022a999896aab927fd017/numpy_quaternion-2024.0.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ec2471dcb3f0342e67d29bfbacb939028e28f3db454c30ec4c7720a1f51ad7b9", size = 184787 },
|
|
189
|
+
{ url = "https://files.pythonhosted.org/packages/f9/94/29b2ec6204b76cf05b725ce16eb9bf83366ff695fae6172de8cd371f0c05/numpy_quaternion-2024.0.8-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11545204eba62a84a63e5e80d97c5305a525f48f6e5206b95bf38b5462db561d", size = 200763 },
|
|
190
|
+
{ url = "https://files.pythonhosted.org/packages/13/0e/accf8f6596d2ffe7fe000a9e9f7f09b38782e3c6e7e3981ffcc028ac086f/numpy_quaternion-2024.0.8-cp313-cp313-win_amd64.whl", hash = "sha256:10022a65ac2429b8152f99854e7ee2ede054a5af3d16931c43723f694c2ec580", size = 70773 },
|
|
191
|
+
]
|
|
192
|
+
|
|
167
193
|
[[package]]
|
|
168
194
|
name = "packaging"
|
|
169
195
|
version = "24.2"
|
|
@@ -209,29 +235,31 @@ wheels = [
|
|
|
209
235
|
|
|
210
236
|
[[package]]
|
|
211
237
|
name = "pfc-geometry"
|
|
212
|
-
version = "0.2.
|
|
238
|
+
version = "0.2.17"
|
|
213
239
|
source = { registry = "https://pypi.org/simple" }
|
|
214
240
|
dependencies = [
|
|
215
241
|
{ name = "numpy" },
|
|
242
|
+
{ name = "numpy-quaternion" },
|
|
216
243
|
{ name = "pandas" },
|
|
244
|
+
{ name = "rowan" },
|
|
217
245
|
]
|
|
218
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
246
|
+
sdist = { url = "https://files.pythonhosted.org/packages/84/6b/a412ddab8bbbac2101335c65aa1e4587a009e550d7549d212284d9b76dae/pfc_geometry-0.2.17.tar.gz", hash = "sha256:df93ff32426d492a762a18dca8791d6f9c99d875bbb8afc54b1dbd8960b1768f", size = 38046 }
|
|
219
247
|
wheels = [
|
|
220
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
248
|
+
{ url = "https://files.pythonhosted.org/packages/7f/d1/77383aef0c4c92cffdcf3e195b8ccaa599bb3e3c972d7810acc94c1ab478/pfc_geometry-0.2.17-py3-none-any.whl", hash = "sha256:54a46e141a2be2dc13f8c8bdcd41c1f1da3c91c817c6869ab78645060fcb0bfc", size = 23843 },
|
|
221
249
|
]
|
|
222
250
|
|
|
223
251
|
[[package]]
|
|
224
252
|
name = "pfcschemas"
|
|
225
|
-
version = "0.1.
|
|
253
|
+
version = "0.1.10"
|
|
226
254
|
source = { registry = "https://pypi.org/simple" }
|
|
227
255
|
dependencies = [
|
|
228
256
|
{ name = "numpy" },
|
|
229
257
|
{ name = "pandas" },
|
|
230
258
|
{ name = "pydantic" },
|
|
231
259
|
]
|
|
232
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
260
|
+
sdist = { url = "https://files.pythonhosted.org/packages/fb/58/eabaa17582a6e10231c0d64073ff3913033fb3e66f40ae9b1d8276a8c086/pfcschemas-0.1.10.tar.gz", hash = "sha256:3807393a94b46f5a1c1544478d689af7cb9da12d8a2aa65712d922bb4a6235b9", size = 3099494 }
|
|
233
261
|
wheels = [
|
|
234
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
262
|
+
{ url = "https://files.pythonhosted.org/packages/cf/f4/999ece7d47192fa89a44775f6164c9b538dc244396994ea675b44fc029db/pfcschemas-0.1.10-py3-none-any.whl", hash = "sha256:9ea463624bfdd02aa3f9a29ad649e517dd4f7613ba695675ad5d29838c78a579", size = 10692 },
|
|
235
263
|
]
|
|
236
264
|
|
|
237
265
|
[[package]]
|
|
@@ -349,6 +377,91 @@ wheels = [
|
|
|
349
377
|
{ url = "https://files.pythonhosted.org/packages/11/c3/005fcca25ce078d2cc29fd559379817424e94885510568bc1bc53d7d5846/pytz-2024.2-py2.py3-none-any.whl", hash = "sha256:31c7c1817eb7fae7ca4b8c7ee50c72f93aa2dd863de768e1ef4245d426aa0725", size = 508002 },
|
|
350
378
|
]
|
|
351
379
|
|
|
380
|
+
[[package]]
|
|
381
|
+
name = "rowan"
|
|
382
|
+
version = "1.3.2"
|
|
383
|
+
source = { registry = "https://pypi.org/simple" }
|
|
384
|
+
dependencies = [
|
|
385
|
+
{ name = "numpy" },
|
|
386
|
+
]
|
|
387
|
+
sdist = { url = "https://files.pythonhosted.org/packages/3c/ef/28e2a8a65b21bd452f4cee91e2eaa81e6f1c3dc8306663182d61104103e5/rowan-1.3.2.tar.gz", hash = "sha256:cda6c44f1a85b16a44bea9eba6c94d4ebb2cc0c75e51f1f70d6410f25929fe11", size = 42386 }
|
|
388
|
+
wheels = [
|
|
389
|
+
{ url = "https://files.pythonhosted.org/packages/ab/7c/376893400e08dfa26e10da79720a7aacb18eae58c5900a4d2d888ac5841c/rowan-1.3.2-py3-none-any.whl", hash = "sha256:d3ac590bf27b62c00a2db150cb8296bc3d2bf0e26a57da5f0cb36750a5372b72", size = 28538 },
|
|
390
|
+
]
|
|
391
|
+
|
|
392
|
+
[[package]]
|
|
393
|
+
name = "scipy"
|
|
394
|
+
version = "1.15.2"
|
|
395
|
+
source = { registry = "https://pypi.org/simple" }
|
|
396
|
+
dependencies = [
|
|
397
|
+
{ name = "numpy" },
|
|
398
|
+
]
|
|
399
|
+
sdist = { url = "https://files.pythonhosted.org/packages/b7/b9/31ba9cd990e626574baf93fbc1ac61cf9ed54faafd04c479117517661637/scipy-1.15.2.tar.gz", hash = "sha256:cd58a314d92838f7e6f755c8a2167ead4f27e1fd5c1251fd54289569ef3495ec", size = 59417316 }
|
|
400
|
+
wheels = [
|
|
401
|
+
{ url = "https://files.pythonhosted.org/packages/4b/5d/3c78815cbab499610f26b5bae6aed33e227225a9fa5290008a733a64f6fc/scipy-1.15.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:c4697a10da8f8765bb7c83e24a470da5797e37041edfd77fd95ba3811a47c4fd", size = 38756184 },
|
|
402
|
+
{ url = "https://files.pythonhosted.org/packages/37/20/3d04eb066b471b6e171827548b9ddb3c21c6bbea72a4d84fc5989933910b/scipy-1.15.2-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:869269b767d5ee7ea6991ed7e22b3ca1f22de73ab9a49c44bad338b725603301", size = 30163558 },
|
|
403
|
+
{ url = "https://files.pythonhosted.org/packages/a4/98/e5c964526c929ef1f795d4c343b2ff98634ad2051bd2bbadfef9e772e413/scipy-1.15.2-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:bad78d580270a4d32470563ea86c6590b465cb98f83d760ff5b0990cb5518a93", size = 22437211 },
|
|
404
|
+
{ url = "https://files.pythonhosted.org/packages/1d/cd/1dc7371e29195ecbf5222f9afeedb210e0a75057d8afbd942aa6cf8c8eca/scipy-1.15.2-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:b09ae80010f52efddb15551025f9016c910296cf70adbf03ce2a8704f3a5ad20", size = 25232260 },
|
|
405
|
+
{ url = "https://files.pythonhosted.org/packages/f0/24/1a181a9e5050090e0b5138c5f496fee33293c342b788d02586bc410c6477/scipy-1.15.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a6fd6eac1ce74a9f77a7fc724080d507c5812d61e72bd5e4c489b042455865e", size = 35198095 },
|
|
406
|
+
{ url = "https://files.pythonhosted.org/packages/c0/53/eaada1a414c026673eb983f8b4a55fe5eb172725d33d62c1b21f63ff6ca4/scipy-1.15.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2b871df1fe1a3ba85d90e22742b93584f8d2b8e6124f8372ab15c71b73e428b8", size = 37297371 },
|
|
407
|
+
{ url = "https://files.pythonhosted.org/packages/e9/06/0449b744892ed22b7e7b9a1994a866e64895363572677a316a9042af1fe5/scipy-1.15.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:03205d57a28e18dfd39f0377d5002725bf1f19a46f444108c29bdb246b6c8a11", size = 36872390 },
|
|
408
|
+
{ url = "https://files.pythonhosted.org/packages/6a/6f/a8ac3cfd9505ec695c1bc35edc034d13afbd2fc1882a7c6b473e280397bb/scipy-1.15.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:601881dfb761311045b03114c5fe718a12634e5608c3b403737ae463c9885d53", size = 39700276 },
|
|
409
|
+
{ url = "https://files.pythonhosted.org/packages/f5/6f/e6e5aff77ea2a48dd96808bb51d7450875af154ee7cbe72188afb0b37929/scipy-1.15.2-cp312-cp312-win_amd64.whl", hash = "sha256:e7c68b6a43259ba0aab737237876e5c2c549a031ddb7abc28c7b47f22e202ded", size = 40942317 },
|
|
410
|
+
{ url = "https://files.pythonhosted.org/packages/53/40/09319f6e0f276ea2754196185f95cd191cb852288440ce035d5c3a931ea2/scipy-1.15.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:01edfac9f0798ad6b46d9c4c9ca0e0ad23dbf0b1eb70e96adb9fa7f525eff0bf", size = 38717587 },
|
|
411
|
+
{ url = "https://files.pythonhosted.org/packages/fe/c3/2854f40ecd19585d65afaef601e5e1f8dbf6758b2f95b5ea93d38655a2c6/scipy-1.15.2-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:08b57a9336b8e79b305a143c3655cc5bdbe6d5ece3378578888d2afbb51c4e37", size = 30100266 },
|
|
412
|
+
{ url = "https://files.pythonhosted.org/packages/dd/b1/f9fe6e3c828cb5930b5fe74cb479de5f3d66d682fa8adb77249acaf545b8/scipy-1.15.2-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:54c462098484e7466362a9f1672d20888f724911a74c22ae35b61f9c5919183d", size = 22373768 },
|
|
413
|
+
{ url = "https://files.pythonhosted.org/packages/15/9d/a60db8c795700414c3f681908a2b911e031e024d93214f2d23c6dae174ab/scipy-1.15.2-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:cf72ff559a53a6a6d77bd8eefd12a17995ffa44ad86c77a5df96f533d4e6c6bb", size = 25154719 },
|
|
414
|
+
{ url = "https://files.pythonhosted.org/packages/37/3b/9bda92a85cd93f19f9ed90ade84aa1e51657e29988317fabdd44544f1dd4/scipy-1.15.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9de9d1416b3d9e7df9923ab23cd2fe714244af10b763975bea9e4f2e81cebd27", size = 35163195 },
|
|
415
|
+
{ url = "https://files.pythonhosted.org/packages/03/5a/fc34bf1aa14dc7c0e701691fa8685f3faec80e57d816615e3625f28feb43/scipy-1.15.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb530e4794fc8ea76a4a21ccb67dea33e5e0e60f07fc38a49e821e1eae3b71a0", size = 37255404 },
|
|
416
|
+
{ url = "https://files.pythonhosted.org/packages/4a/71/472eac45440cee134c8a180dbe4c01b3ec247e0338b7c759e6cd71f199a7/scipy-1.15.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5ea7ed46d437fc52350b028b1d44e002646e28f3e8ddc714011aaf87330f2f32", size = 36860011 },
|
|
417
|
+
{ url = "https://files.pythonhosted.org/packages/01/b3/21f890f4f42daf20e4d3aaa18182dddb9192771cd47445aaae2e318f6738/scipy-1.15.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11e7ad32cf184b74380f43d3c0a706f49358b904fa7d5345f16ddf993609184d", size = 39657406 },
|
|
418
|
+
{ url = "https://files.pythonhosted.org/packages/0d/76/77cf2ac1f2a9cc00c073d49e1e16244e389dd88e2490c91d84e1e3e4d126/scipy-1.15.2-cp313-cp313-win_amd64.whl", hash = "sha256:a5080a79dfb9b78b768cebf3c9dcbc7b665c5875793569f48bf0e2b1d7f68f6f", size = 40961243 },
|
|
419
|
+
{ url = "https://files.pythonhosted.org/packages/4c/4b/a57f8ddcf48e129e6054fa9899a2a86d1fc6b07a0e15c7eebff7ca94533f/scipy-1.15.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:447ce30cee6a9d5d1379087c9e474628dab3db4a67484be1b7dc3196bfb2fac9", size = 38870286 },
|
|
420
|
+
{ url = "https://files.pythonhosted.org/packages/0c/43/c304d69a56c91ad5f188c0714f6a97b9c1fed93128c691148621274a3a68/scipy-1.15.2-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:c90ebe8aaa4397eaefa8455a8182b164a6cc1d59ad53f79943f266d99f68687f", size = 30141634 },
|
|
421
|
+
{ url = "https://files.pythonhosted.org/packages/44/1a/6c21b45d2548eb73be9b9bff421aaaa7e85e22c1f9b3bc44b23485dfce0a/scipy-1.15.2-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:def751dd08243934c884a3221156d63e15234a3155cf25978b0a668409d45eb6", size = 22415179 },
|
|
422
|
+
{ url = "https://files.pythonhosted.org/packages/74/4b/aefac4bba80ef815b64f55da06f62f92be5d03b467f2ce3668071799429a/scipy-1.15.2-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:302093e7dfb120e55515936cb55618ee0b895f8bcaf18ff81eca086c17bd80af", size = 25126412 },
|
|
423
|
+
{ url = "https://files.pythonhosted.org/packages/b1/53/1cbb148e6e8f1660aacd9f0a9dfa2b05e9ff1cb54b4386fe868477972ac2/scipy-1.15.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7cd5b77413e1855351cdde594eca99c1f4a588c2d63711388b6a1f1c01f62274", size = 34952867 },
|
|
424
|
+
{ url = "https://files.pythonhosted.org/packages/2c/23/e0eb7f31a9c13cf2dca083828b97992dd22f8184c6ce4fec5deec0c81fcf/scipy-1.15.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d0194c37037707b2afa7a2f2a924cf7bac3dc292d51b6a925e5fcb89bc5c776", size = 36890009 },
|
|
425
|
+
{ url = "https://files.pythonhosted.org/packages/03/f3/e699e19cabe96bbac5189c04aaa970718f0105cff03d458dc5e2b6bd1e8c/scipy-1.15.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:bae43364d600fdc3ac327db99659dcb79e6e7ecd279a75fe1266669d9a652828", size = 36545159 },
|
|
426
|
+
{ url = "https://files.pythonhosted.org/packages/af/f5/ab3838e56fe5cc22383d6fcf2336e48c8fe33e944b9037fbf6cbdf5a11f8/scipy-1.15.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:f031846580d9acccd0044efd1a90e6f4df3a6e12b4b6bd694a7bc03a89892b28", size = 39136566 },
|
|
427
|
+
{ url = "https://files.pythonhosted.org/packages/0a/c8/b3f566db71461cabd4b2d5b39bcc24a7e1c119535c8361f81426be39bb47/scipy-1.15.2-cp313-cp313t-win_amd64.whl", hash = "sha256:fe8a9eb875d430d81755472c5ba75e84acc980e4a8f6204d402849234d3017db", size = 40477705 },
|
|
428
|
+
]
|
|
429
|
+
|
|
430
|
+
[[package]]
|
|
431
|
+
name = "simplejson"
|
|
432
|
+
version = "3.20.1"
|
|
433
|
+
source = { registry = "https://pypi.org/simple" }
|
|
434
|
+
sdist = { url = "https://files.pythonhosted.org/packages/af/92/51b417685abd96b31308b61b9acce7ec50d8e1de8fbc39a7fd4962c60689/simplejson-3.20.1.tar.gz", hash = "sha256:e64139b4ec4f1f24c142ff7dcafe55a22b811a74d86d66560c8815687143037d", size = 85591 }
|
|
435
|
+
wheels = [
|
|
436
|
+
{ url = "https://files.pythonhosted.org/packages/8d/eb/34c16a1ac9ba265d024dc977ad84e1659d931c0a700967c3e59a98ed7514/simplejson-3.20.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f31c4a3a7ab18467ee73a27f3e59158255d1520f3aad74315edde7a940f1be23", size = 93100 },
|
|
437
|
+
{ url = "https://files.pythonhosted.org/packages/41/fc/2c2c007d135894971e6814e7c0806936e5bade28f8db4dd7e2a58b50debd/simplejson-3.20.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:884e6183d16b725e113b83a6fc0230152ab6627d4d36cb05c89c2c5bccfa7bc6", size = 75464 },
|
|
438
|
+
{ url = "https://files.pythonhosted.org/packages/0f/05/2b5ecb33b776c34bb5cace5de5d7669f9b60e3ca13c113037b2ca86edfbd/simplejson-3.20.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:03d7a426e416fe0d3337115f04164cd9427eb4256e843a6b8751cacf70abc832", size = 75112 },
|
|
439
|
+
{ url = "https://files.pythonhosted.org/packages/fe/36/1f3609a2792f06cd4b71030485f78e91eb09cfd57bebf3116bf2980a8bac/simplejson-3.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:000602141d0bddfcff60ea6a6e97d5e10c9db6b17fd2d6c66199fa481b6214bb", size = 150182 },
|
|
440
|
+
{ url = "https://files.pythonhosted.org/packages/2f/b0/053fbda38b8b602a77a4f7829def1b4f316cd8deb5440a6d3ee90790d2a4/simplejson-3.20.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:af8377a8af78226e82e3a4349efdde59ffa421ae88be67e18cef915e4023a595", size = 158363 },
|
|
441
|
+
{ url = "https://files.pythonhosted.org/packages/d1/4b/2eb84ae867539a80822e92f9be4a7200dffba609275faf99b24141839110/simplejson-3.20.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:15c7de4c88ab2fbcb8781a3b982ef883696736134e20b1210bca43fb42ff1acf", size = 148415 },
|
|
442
|
+
{ url = "https://files.pythonhosted.org/packages/e0/bd/400b0bd372a5666addf2540c7358bfc3841b9ce5cdbc5cc4ad2f61627ad8/simplejson-3.20.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:455a882ff3f97d810709f7b620007d4e0aca8da71d06fc5c18ba11daf1c4df49", size = 152213 },
|
|
443
|
+
{ url = "https://files.pythonhosted.org/packages/50/12/143f447bf6a827ee9472693768dc1a5eb96154f8feb140a88ce6973a3cfa/simplejson-3.20.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:fc0f523ce923e7f38eb67804bc80e0a028c76d7868500aa3f59225574b5d0453", size = 150048 },
|
|
444
|
+
{ url = "https://files.pythonhosted.org/packages/5e/ea/dd9b3e8e8ed710a66f24a22c16a907c9b539b6f5f45fd8586bd5c231444e/simplejson-3.20.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:76461ec929282dde4a08061071a47281ad939d0202dc4e63cdd135844e162fbc", size = 151668 },
|
|
445
|
+
{ url = "https://files.pythonhosted.org/packages/99/af/ee52a8045426a0c5b89d755a5a70cc821815ef3c333b56fbcad33c4435c0/simplejson-3.20.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:ab19c2da8c043607bde4d4ef3a6b633e668a7d2e3d56f40a476a74c5ea71949f", size = 158840 },
|
|
446
|
+
{ url = "https://files.pythonhosted.org/packages/68/db/ab32869acea6b5de7d75fa0dac07a112ded795d41eaa7e66c7813b17be95/simplejson-3.20.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b2578bedaedf6294415197b267d4ef678fea336dd78ee2a6d2f4b028e9d07be3", size = 154212 },
|
|
447
|
+
{ url = "https://files.pythonhosted.org/packages/fa/7a/e3132d454977d75a3bf9a6d541d730f76462ebf42a96fea2621498166f41/simplejson-3.20.1-cp312-cp312-win32.whl", hash = "sha256:339f407373325a36b7fd744b688ba5bae0666b5d340ec6d98aebc3014bf3d8ea", size = 74101 },
|
|
448
|
+
{ url = "https://files.pythonhosted.org/packages/bc/5d/4e243e937fa3560107c69f6f7c2eed8589163f5ed14324e864871daa2dd9/simplejson-3.20.1-cp312-cp312-win_amd64.whl", hash = "sha256:627d4486a1ea7edf1f66bb044ace1ce6b4c1698acd1b05353c97ba4864ea2e17", size = 75736 },
|
|
449
|
+
{ url = "https://files.pythonhosted.org/packages/c4/03/0f453a27877cb5a5fff16a975925f4119102cc8552f52536b9a98ef0431e/simplejson-3.20.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:71e849e7ceb2178344998cbe5ade101f1b329460243c79c27fbfc51c0447a7c3", size = 93109 },
|
|
450
|
+
{ url = "https://files.pythonhosted.org/packages/74/1f/a729f4026850cabeaff23e134646c3f455e86925d2533463420635ae54de/simplejson-3.20.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:b63fdbab29dc3868d6f009a59797cefaba315fd43cd32ddd998ee1da28e50e29", size = 75475 },
|
|
451
|
+
{ url = "https://files.pythonhosted.org/packages/e2/14/50a2713fee8ff1f8d655b1a14f4a0f1c0c7246768a1b3b3d12964a4ed5aa/simplejson-3.20.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1190f9a3ce644fd50ec277ac4a98c0517f532cfebdcc4bd975c0979a9f05e1fb", size = 75112 },
|
|
452
|
+
{ url = "https://files.pythonhosted.org/packages/45/86/ea9835abb646755140e2d482edc9bc1e91997ed19a59fd77ae4c6a0facea/simplejson-3.20.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c1336ba7bcb722ad487cd265701ff0583c0bb6de638364ca947bb84ecc0015d1", size = 150245 },
|
|
453
|
+
{ url = "https://files.pythonhosted.org/packages/12/b4/53084809faede45da829fe571c65fbda8479d2a5b9c633f46b74124d56f5/simplejson-3.20.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e975aac6a5acd8b510eba58d5591e10a03e3d16c1cf8a8624ca177491f7230f0", size = 158465 },
|
|
454
|
+
{ url = "https://files.pythonhosted.org/packages/a9/7d/d56579468d1660b3841e1f21c14490d103e33cf911886b22652d6e9683ec/simplejson-3.20.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6a6dd11ee282937ad749da6f3b8d87952ad585b26e5edfa10da3ae2536c73078", size = 148514 },
|
|
455
|
+
{ url = "https://files.pythonhosted.org/packages/19/e3/874b1cca3d3897b486d3afdccc475eb3a09815bf1015b01cf7fcb52a55f0/simplejson-3.20.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ab980fcc446ab87ea0879edad41a5c28f2d86020014eb035cf5161e8de4474c6", size = 152262 },
|
|
456
|
+
{ url = "https://files.pythonhosted.org/packages/32/84/f0fdb3625292d945c2bd13a814584603aebdb38cfbe5fe9be6b46fe598c4/simplejson-3.20.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f5aee2a4cb6b146bd17333ac623610f069f34e8f31d2f4f0c1a2186e50c594f0", size = 150164 },
|
|
457
|
+
{ url = "https://files.pythonhosted.org/packages/95/51/6d625247224f01eaaeabace9aec75ac5603a42f8ebcce02c486fbda8b428/simplejson-3.20.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:652d8eecbb9a3b6461b21ec7cf11fd0acbab144e45e600c817ecf18e4580b99e", size = 151795 },
|
|
458
|
+
{ url = "https://files.pythonhosted.org/packages/7f/d9/bb921df6b35be8412f519e58e86d1060fddf3ad401b783e4862e0a74c4c1/simplejson-3.20.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:8c09948f1a486a89251ee3a67c9f8c969b379f6ffff1a6064b41fea3bce0a112", size = 159027 },
|
|
459
|
+
{ url = "https://files.pythonhosted.org/packages/03/c5/5950605e4ad023a6621cf4c931b29fd3d2a9c1f36be937230bfc83d7271d/simplejson-3.20.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:cbbd7b215ad4fc6f058b5dd4c26ee5c59f72e031dfda3ac183d7968a99e4ca3a", size = 154380 },
|
|
460
|
+
{ url = "https://files.pythonhosted.org/packages/66/ad/b74149557c5ec1e4e4d55758bda426f5d2ec0123cd01a53ae63b8de51fa3/simplejson-3.20.1-cp313-cp313-win32.whl", hash = "sha256:ae81e482476eaa088ef9d0120ae5345de924f23962c0c1e20abbdff597631f87", size = 74102 },
|
|
461
|
+
{ url = "https://files.pythonhosted.org/packages/db/a9/25282fdd24493e1022f30b7f5cdf804255c007218b2bfaa655bd7ad34b2d/simplejson-3.20.1-cp313-cp313-win_amd64.whl", hash = "sha256:1b9fd15853b90aec3b1739f4471efbf1ac05066a2c7041bf8db821bb73cd2ddc", size = 75736 },
|
|
462
|
+
{ url = "https://files.pythonhosted.org/packages/4b/30/00f02a0a921556dd5a6db1ef2926a1bc7a8bbbfb1c49cfed68a275b8ab2b/simplejson-3.20.1-py3-none-any.whl", hash = "sha256:8a6c1bbac39fa4a79f83cbf1df6ccd8ff7069582a9fd8db1e52cea073bc2c697", size = 57121 },
|
|
463
|
+
]
|
|
464
|
+
|
|
352
465
|
[[package]]
|
|
353
466
|
name = "six"
|
|
354
467
|
version = "1.16.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|