pyxcp 0.22.32__cp310-cp310-win_amd64.whl → 0.22.34__cp310-cp310-win_amd64.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.
Potentially problematic release.
This version of pyxcp might be problematic. Click here for more details.
- pyxcp/__init__.py +1 -1
- pyxcp/cpp_ext/cpp_ext.cp310-win_amd64.pyd +0 -0
- pyxcp/daq_stim/stim.cp310-win_amd64.pyd +0 -0
- pyxcp/recorder/converter/__init__.py +4 -5
- pyxcp/recorder/rekorder.cp310-win_amd64.pyd +0 -0
- {pyxcp-0.22.32.dist-info → pyxcp-0.22.34.dist-info}/METADATA +6 -6
- {pyxcp-0.22.32.dist-info → pyxcp-0.22.34.dist-info}/RECORD +10 -16
- pyxcp/cpp_ext/cpp_ext.cp38-win_amd64.pyd +0 -0
- pyxcp/cpp_ext/cpp_ext.cp39-win_amd64.pyd +0 -0
- pyxcp/daq_stim/stim.cp38-win_amd64.pyd +0 -0
- pyxcp/daq_stim/stim.cp39-win_amd64.pyd +0 -0
- pyxcp/recorder/rekorder.cp38-win_amd64.pyd +0 -0
- pyxcp/recorder/rekorder.cp39-win_amd64.pyd +0 -0
- {pyxcp-0.22.32.dist-info → pyxcp-0.22.34.dist-info}/LICENSE +0 -0
- {pyxcp-0.22.32.dist-info → pyxcp-0.22.34.dist-info}/WHEEL +0 -0
- {pyxcp-0.22.32.dist-info → pyxcp-0.22.34.dist-info}/entry_points.txt +0 -0
pyxcp/__init__.py
CHANGED
|
Binary file
|
|
Binary file
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
"""Convert pyXCPs .xmraw files to common data formats.
|
|
2
|
-
"""
|
|
1
|
+
"""Convert pyXCPs .xmraw files to common data formats."""
|
|
3
2
|
|
|
4
3
|
import csv
|
|
5
4
|
import logging
|
|
@@ -318,8 +317,7 @@ class MdfConverter(CollectRows, XcpLogFileDecoder):
|
|
|
318
317
|
time_flags=FLAG_HD_TIME_OFFSET_VALID,
|
|
319
318
|
)
|
|
320
319
|
hdr.comment = f"""<HDcomment><TX>Timezone: {timestamp_info.timezone}</TX></HDcomment>""" # Test-Comment.
|
|
321
|
-
mdf4 = MDF(version="4.10")
|
|
322
|
-
mdf4.header = hdr
|
|
320
|
+
mdf4 = MDF(version="4.10", header=hdr)
|
|
323
321
|
for idx, arr in enumerate(self.tables):
|
|
324
322
|
signals = []
|
|
325
323
|
timestamps = arr.timestamp0
|
|
@@ -369,7 +367,8 @@ class SqliteConverter(XcpLogFileDecoder):
|
|
|
369
367
|
self.create_table(sc)
|
|
370
368
|
self.logger.info(f"Creating table {sc.name!r}.")
|
|
371
369
|
self.insert_stmt[sc.name] = (
|
|
372
|
-
f"""INSERT INTO {sc.name}({', '.join(['timestamp0', 'timestamp1'] + [r.name for r in sc.arr])})
|
|
370
|
+
f"""INSERT INTO {sc.name}({', '.join(['timestamp0', 'timestamp1'] + [r.name for r in sc.arr])})"""
|
|
371
|
+
f""" VALUES({', '.join(["?" for _ in range(len(sc.arr) + 2)])})"""
|
|
373
372
|
)
|
|
374
373
|
|
|
375
374
|
def on_finalize(self) -> None:
|
|
Binary file
|
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: pyxcp
|
|
3
|
-
Version: 0.22.
|
|
3
|
+
Version: 0.22.34
|
|
4
4
|
Summary: Universal Calibration Protocol for Python
|
|
5
5
|
License: LGPLv3
|
|
6
6
|
Keywords: automotive,ecu,xcp,asam,autosar
|
|
7
7
|
Author: Christoph Schueler
|
|
8
8
|
Author-email: cpu.gems@googlemail.com
|
|
9
|
-
Requires-Python: >=3.
|
|
9
|
+
Requires-Python: >=3.10,<4.0
|
|
10
10
|
Classifier: Development Status :: 5 - Production/Stable
|
|
11
11
|
Classifier: Intended Audience :: Developers
|
|
12
12
|
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
|
|
13
13
|
Classifier: License :: Other/Proprietary License
|
|
14
14
|
Classifier: Programming Language :: Python :: 3
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
16
15
|
Classifier: Programming Language :: Python :: 3.10
|
|
17
16
|
Classifier: Programming Language :: Python :: 3.11
|
|
18
17
|
Classifier: Programming Language :: Python :: 3.12
|
|
19
18
|
Classifier: Programming Language :: Python :: 3.13
|
|
20
19
|
Classifier: Programming Language :: Python :: 3.8
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
21
21
|
Classifier: Topic :: Scientific/Engineering
|
|
22
22
|
Classifier: Topic :: Software Development
|
|
23
23
|
Requires-Dist: bandit (>=1.7.8,<2.0.0)
|
|
@@ -27,11 +27,11 @@ Requires-Dist: line-profiler-pycharm (>=1.1.0,<2.0.0)
|
|
|
27
27
|
Requires-Dist: mako (>=1.2.4,<2.0.0)
|
|
28
28
|
Requires-Dist: pyserial (>=3.5,<4.0)
|
|
29
29
|
Requires-Dist: python-can (>=4.2.2,<5.0.0)
|
|
30
|
-
Requires-Dist: pytz (>=
|
|
30
|
+
Requires-Dist: pytz (>=2025.2,<2026.0)
|
|
31
31
|
Requires-Dist: pyusb (>=1.2.1,<2.0.0)
|
|
32
|
-
Requires-Dist: rich (>=
|
|
32
|
+
Requires-Dist: rich (>=14.0.0,<15.0.0)
|
|
33
33
|
Requires-Dist: toml (>=0.10.2,<0.11.0)
|
|
34
|
-
Requires-Dist: tomlkit (>=0.
|
|
34
|
+
Requires-Dist: tomlkit (>=0.13.3,<0.14.0)
|
|
35
35
|
Requires-Dist: traitlets (<=5.11.2)
|
|
36
36
|
Requires-Dist: uptime (>=3.0.1,<4.0.0)
|
|
37
37
|
Project-URL: Homepage, https://github.com/christoph2/pyxcp
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
pyxcp/__init__.py,sha256=
|
|
1
|
+
pyxcp/__init__.py,sha256=09oAKcV-9xwWVtsoNOfZm6fy7G7IbHcs7L7jm270W2Y,548
|
|
2
2
|
pyxcp/aml/EtasCANMonitoring.a2l,sha256=EJYwe3Z3H24vyWAa6lUgcdKnQY8pwFxjyCN6ZU1ST8w,1509
|
|
3
3
|
pyxcp/aml/EtasCANMonitoring.aml,sha256=xl0DdyeiIaLW0mmmJNAyJS0CQdOLSxt9dxfgrdSlU8Y,2405
|
|
4
4
|
pyxcp/aml/ifdata_CAN.a2l,sha256=NCUnCUEEgRbZYSLGtUGwL2e7zJ8hrp0SbmLHGv8uY58,612
|
|
@@ -24,9 +24,7 @@ pyxcp/constants.py,sha256=9yGfujC0ImTYQWfn41wyw8pluJTSrhMGWIVeIZTgsLg,1160
|
|
|
24
24
|
pyxcp/cpp_ext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
25
|
pyxcp/cpp_ext/bin.hpp,sha256=PwJloZek21la-RBSda2Hc0u_6gID0sfTduPeplaAyR4,2561
|
|
26
26
|
pyxcp/cpp_ext/blockmem.hpp,sha256=ysaJwmTWGTfE54Outk3gJYOfAVFd_QaonBMtXLcXwCc,1242
|
|
27
|
-
pyxcp/cpp_ext/cpp_ext.cp310-win_amd64.pyd,sha256=
|
|
28
|
-
pyxcp/cpp_ext/cpp_ext.cp38-win_amd64.pyd,sha256=txhdaBwmuLyZdKdXoX4zQaMFpwfyYiIPtnQne5ETWXk,289792
|
|
29
|
-
pyxcp/cpp_ext/cpp_ext.cp39-win_amd64.pyd,sha256=kHhe41dU5nfexKIOT-rGhPFJo0zCAfTcd12iPUp5Arg,270848
|
|
27
|
+
pyxcp/cpp_ext/cpp_ext.cp310-win_amd64.pyd,sha256=NZXoyV2cwEujIfqTW2tAVcX0P01Ep6-nI2u1Q9zWtg4,285184
|
|
30
28
|
pyxcp/cpp_ext/daqlist.hpp,sha256=g2hlxgoQorAGKHedZFZ0c2FQh1APMIA9sVB6M6hD_n8,7277
|
|
31
29
|
pyxcp/cpp_ext/event.hpp,sha256=Z-1yxsEKsr81NnLVEWJ2ANA8FV7YsM7EbNxaw-elheE,1200
|
|
32
30
|
pyxcp/cpp_ext/extension_wrapper.cpp,sha256=xFs3IcrvHPHA82-n11WPzt8HATGqcks02p84SjQ2BKM,4855
|
|
@@ -38,9 +36,7 @@ pyxcp/daq_stim/optimize/__init__.py,sha256=FUWK0GkNpNT-sUlhibp7xa2aSYpm6Flh5yA2w
|
|
|
38
36
|
pyxcp/daq_stim/optimize/binpacking.py,sha256=Iltho5diKlJG-ltbmx053U2vOFRlCISolXK61T14l_I,1257
|
|
39
37
|
pyxcp/daq_stim/scheduler.cpp,sha256=a7VK7kP2Hs8yMlcDAkXwJ0bH88lr_yz156sphcHS7Z4,715
|
|
40
38
|
pyxcp/daq_stim/scheduler.hpp,sha256=U_6tUbebmzX5vVZS0EFSgTaPsyxMg6yRXHG_aPWA0x4,1884
|
|
41
|
-
pyxcp/daq_stim/stim.cp310-win_amd64.pyd,sha256=
|
|
42
|
-
pyxcp/daq_stim/stim.cp38-win_amd64.pyd,sha256=B9n7Ux6n2IBqUxgw7Qsow-HbCJuA5td1RVTMOzlyq8E,198656
|
|
43
|
-
pyxcp/daq_stim/stim.cp39-win_amd64.pyd,sha256=hYelHNMZIQ5X7vvm-r06-bmPpRmCf4ii46NQP9jV0as,192512
|
|
39
|
+
pyxcp/daq_stim/stim.cp310-win_amd64.pyd,sha256=H94qsRryFW2jK6Uy48Hmainy0W3gzx7xzYORTz3yuVA,204288
|
|
44
40
|
pyxcp/daq_stim/stim.cpp,sha256=F2OG67W4KKwTTiUCxm-9egIv3TLFdOkRunX6xf7YOtc,177
|
|
45
41
|
pyxcp/daq_stim/stim.hpp,sha256=U-uInRrA6OCdMl1l1SWbQ_KEPpnNYrWut924IvbW6R0,18508
|
|
46
42
|
pyxcp/daq_stim/stim_wrapper.cpp,sha256=iT2yxJ3LRG7HoYC1bwhM3tCAxF9X_HHierBNsLRmTJg,1995
|
|
@@ -73,7 +69,7 @@ pyxcp/recorder/build_clang.sh,sha256=zmU3nZxaNH1pxGWMyQ-S541TuVqxS00p3iPR9NUP4Ec
|
|
|
73
69
|
pyxcp/recorder/build_gcc.cmd,sha256=zj732DdvqDzGAFg7dvF83DUpf8Qf6rQ0cqEaID15Z80,238
|
|
74
70
|
pyxcp/recorder/build_gcc.sh,sha256=nCSh7G8xtxWtDNrMqNUxcjnm_CFpMeduIF0X-RSJtHA,211
|
|
75
71
|
pyxcp/recorder/build_gcc_arm.sh,sha256=jEo6Mgt_aVDL3nHtffecXOrN6gRsEoaA3S4pPrAzpCE,240
|
|
76
|
-
pyxcp/recorder/converter/__init__.py,sha256=
|
|
72
|
+
pyxcp/recorder/converter/__init__.py,sha256=9wsoWJE-PwjsUpQqMT2KUBqa_qdAiX9-cktf6Lkm_xU,14902
|
|
77
73
|
pyxcp/recorder/lz4.c,sha256=rOy3JE2SsOXvJ8a9pgGEfGpbDJnJR03dSVej0CwPmjg,120974
|
|
78
74
|
pyxcp/recorder/lz4.h,sha256=Kz_2V6kvOunNHoPl9-EqxWDVCvYXbU0J-pkSnCeXubs,46483
|
|
79
75
|
pyxcp/recorder/lz4hc.c,sha256=E56iE5CQ6fhQIVi3qNpxiIIP2sTGeC80JtVPyhidV6Q,88870
|
|
@@ -82,9 +78,7 @@ pyxcp/recorder/mio.hpp,sha256=5ASJLKSEykH0deAQD5uak-_yAgd5p2n8t06315GSGrg,63346
|
|
|
82
78
|
pyxcp/recorder/reader.hpp,sha256=rr9XZ_ciL6eF2_xEqyt9XYNqTIze9ytAsnf8uYukO9U,5201
|
|
83
79
|
pyxcp/recorder/reco.py,sha256=6N6FIwfCEVMpi5dr3eUOQa1lowcg2LCnS_sy_-b-UiQ,8725
|
|
84
80
|
pyxcp/recorder/recorder.rst,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
85
|
-
pyxcp/recorder/rekorder.cp310-win_amd64.pyd,sha256=
|
|
86
|
-
pyxcp/recorder/rekorder.cp38-win_amd64.pyd,sha256=MCVlJIxcYnKDHrBpM-h_FBSXcFTAuvXFdqWVo1iwoyc,386048
|
|
87
|
-
pyxcp/recorder/rekorder.cp39-win_amd64.pyd,sha256=cvyJyY_uSfsbqwUS6Z0cz5MC8mDH7YP0ADDODXHI9jk,372736
|
|
81
|
+
pyxcp/recorder/rekorder.cp310-win_amd64.pyd,sha256=sj-_OgXRKkMqsLTucycI4EieUDvwDHf8nElr9ZY11J8,385536
|
|
88
82
|
pyxcp/recorder/rekorder.cpp,sha256=U0LMyk8pZXx9emgS_WPVthvn_9IpgE7JGrh4kg-8CX4,1900
|
|
89
83
|
pyxcp/recorder/rekorder.hpp,sha256=sWvRch9bVt6mmgrFHp5mwWhap7HoFG4geeb7UqEIzio,7638
|
|
90
84
|
pyxcp/recorder/setup.py,sha256=_99XFPQAd5V4LcJaSGJwdnbxgxJ7kl8DEXfHsnKO1Yg,998
|
|
@@ -124,8 +118,8 @@ pyxcp/types.py,sha256=mjp3FhsTTbS3D5VuC-dfdbMql0lJwEfbZjf8a2pHi1o,26158
|
|
|
124
118
|
pyxcp/utils.py,sha256=gVIhPSvZs-y4o6QB35iJQd0VK_Z9sa3UtCDI3dYQeyo,3457
|
|
125
119
|
pyxcp/vector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
126
120
|
pyxcp/vector/map.py,sha256=7Gnhvr79geMeqqGVIJPxODXGwABdNDinnqzhpooN5TE,2306
|
|
127
|
-
pyxcp-0.22.
|
|
128
|
-
pyxcp-0.22.
|
|
129
|
-
pyxcp-0.22.
|
|
130
|
-
pyxcp-0.22.
|
|
131
|
-
pyxcp-0.22.
|
|
121
|
+
pyxcp-0.22.34.dist-info/entry_points.txt,sha256=LkHsEwubm30s4oiyCy0cKj6k97ALvQ6KjAVdyEcqu7g,358
|
|
122
|
+
pyxcp-0.22.34.dist-info/LICENSE,sha256=fTqV5eBpeAZO0_jit8j4Ref9ikBSlHJ8xwj5TLg7gFk,7817
|
|
123
|
+
pyxcp-0.22.34.dist-info/METADATA,sha256=P5fVBGrcQlz5CQ2IQOdA0nhGH7TDU_w8QA_8aA0ycss,4085
|
|
124
|
+
pyxcp-0.22.34.dist-info/WHEEL,sha256=o8axJuAMfp9HzdvPbN5KaulfU2ylxvJG0Bzz2VsvQHE,98
|
|
125
|
+
pyxcp-0.22.34.dist-info/RECORD,,
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|