crcc 2.0.3__pp311-pypy311_pp73-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 crcc might be problematic. Click here for more details.
- crcc/__about__.pyc +0 -0
- crcc/__init__.pyc +0 -0
- crcc/_crc.pyc +0 -0
- crcc/_dll.pyc +0 -0
- crcc/_platform/__init__.pyc +0 -0
- crcc/_platform/crc.pypy311-pp73-win_amd64.pyd +0 -0
- crcc/_platform/linux/__init__.pyc +0 -0
- crcc/_platform/macos/__init__.pyc +0 -0
- crcc/_platform/windows/__init__.pyc +0 -0
- crcc/py.typed +0 -0
- crcc-2.0.3.dist-info/METADATA +276 -0
- crcc-2.0.3.dist-info/RECORD +15 -0
- crcc-2.0.3.dist-info/WHEEL +4 -0
- crcc-2.0.3.dist-info/licenses/LICENSE +19 -0
- crcc-2.0.3.dist-info/top_level.txt +1 -0
crcc/__about__.pyc
ADDED
|
Binary file
|
crcc/__init__.pyc
ADDED
|
Binary file
|
crcc/_crc.pyc
ADDED
|
Binary file
|
crcc/_dll.pyc
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
crcc/py.typed
ADDED
|
File without changes
|
|
@@ -0,0 +1,276 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: crcc
|
|
3
|
+
Version: 2.0.3
|
|
4
|
+
Summary: C and Python CRC calculations module.
|
|
5
|
+
Author-email: Adam Karpierz <adam@karpierz.net>
|
|
6
|
+
Maintainer-email: Adam Karpierz <adam@karpierz.net>
|
|
7
|
+
License-Expression: Zlib
|
|
8
|
+
Project-URL: Homepage, https://pypi.org/project/crcc/
|
|
9
|
+
Project-URL: Documentation, https://crcc.readthedocs.io/
|
|
10
|
+
Project-URL: Download, https://pypi.org/project/crcc/
|
|
11
|
+
Project-URL: Source, https://github.com/karpierz/crcc
|
|
12
|
+
Project-URL: Issues, https://github.com/karpierz/crcc/issues
|
|
13
|
+
Keywords: crcc,crc
|
|
14
|
+
Platform: any
|
|
15
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
16
|
+
Classifier: Intended Audience :: Developers
|
|
17
|
+
Classifier: Operating System :: OS Independent
|
|
18
|
+
Classifier: Natural Language :: Polish
|
|
19
|
+
Classifier: Programming Language :: Python
|
|
20
|
+
Classifier: Programming Language :: Python :: 3
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
26
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
27
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
28
|
+
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
29
|
+
Classifier: Programming Language :: C
|
|
30
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
31
|
+
Classifier: Typing :: Typed
|
|
32
|
+
Requires-Python: <4.0.0,>=3.10.0
|
|
33
|
+
Description-Content-Type: text/x-rst; charset=UTF-8
|
|
34
|
+
License-File: LICENSE
|
|
35
|
+
Requires-Dist: setuptools>=80.9.0
|
|
36
|
+
Requires-Dist: typing_extensions>=4.15.0
|
|
37
|
+
Requires-Dist: pkg-about>=2.0.0
|
|
38
|
+
Requires-Dist: py-utlx>=1.1.0
|
|
39
|
+
Provides-Extra: doc
|
|
40
|
+
Requires-Dist: Sphinx>=8.1.3; extra == "doc"
|
|
41
|
+
Requires-Dist: sphinx-autodoc-typehints>=3.0.1; extra == "doc"
|
|
42
|
+
Requires-Dist: sphinx-toolbox>=4.0.0; extra == "doc"
|
|
43
|
+
Requires-Dist: sphinx-tabs>=3.4.5; extra == "doc"
|
|
44
|
+
Requires-Dist: sphinx-copybutton>=0.5.2; extra == "doc"
|
|
45
|
+
Requires-Dist: sphinxcontrib-spelling>=8.0.1; extra == "doc"
|
|
46
|
+
Requires-Dist: sphinx-lint>=1.0.1; extra == "doc"
|
|
47
|
+
Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
|
|
48
|
+
Requires-Dist: nbsphinx>=0.9.7; extra == "doc"
|
|
49
|
+
Provides-Extra: test
|
|
50
|
+
Requires-Dist: deepdiff>=8.6.1; extra == "test"
|
|
51
|
+
Requires-Dist: rich>=14.2.0; extra == "test"
|
|
52
|
+
Dynamic: license-file
|
|
53
|
+
|
|
54
|
+
crcc
|
|
55
|
+
====
|
|
56
|
+
|
|
57
|
+
C and Python (ctypes/cffi-based) CRC calculations module.
|
|
58
|
+
|
|
59
|
+
Overview
|
|
60
|
+
========
|
|
61
|
+
|
|
62
|
+
TBD...
|
|
63
|
+
|
|
64
|
+
`PyPI record`_.
|
|
65
|
+
|
|
66
|
+
`Documentation`_.
|
|
67
|
+
|
|
68
|
+
Usage
|
|
69
|
+
-----
|
|
70
|
+
|
|
71
|
+
TBD...
|
|
72
|
+
|
|
73
|
+
Installation
|
|
74
|
+
============
|
|
75
|
+
|
|
76
|
+
Prerequisites:
|
|
77
|
+
|
|
78
|
+
+ Python 3.10 or higher
|
|
79
|
+
|
|
80
|
+
* https://www.python.org/
|
|
81
|
+
|
|
82
|
+
+ pip and setuptools
|
|
83
|
+
|
|
84
|
+
* https://pypi.org/project/pip/
|
|
85
|
+
* https://pypi.org/project/setuptools/
|
|
86
|
+
|
|
87
|
+
To install run:
|
|
88
|
+
|
|
89
|
+
.. parsed-literal::
|
|
90
|
+
|
|
91
|
+
python -m pip install --upgrade |package|
|
|
92
|
+
|
|
93
|
+
Development
|
|
94
|
+
===========
|
|
95
|
+
|
|
96
|
+
Prerequisites:
|
|
97
|
+
|
|
98
|
+
+ Development is strictly based on *tox*. To install it run::
|
|
99
|
+
|
|
100
|
+
python -m pip install --upgrade tox
|
|
101
|
+
|
|
102
|
+
Visit `Development page`_.
|
|
103
|
+
|
|
104
|
+
Installation from sources:
|
|
105
|
+
|
|
106
|
+
clone the sources:
|
|
107
|
+
|
|
108
|
+
.. parsed-literal::
|
|
109
|
+
|
|
110
|
+
git clone |respository| |package|
|
|
111
|
+
|
|
112
|
+
and run:
|
|
113
|
+
|
|
114
|
+
.. parsed-literal::
|
|
115
|
+
|
|
116
|
+
python -m pip install ./|package|
|
|
117
|
+
|
|
118
|
+
or on development mode:
|
|
119
|
+
|
|
120
|
+
.. parsed-literal::
|
|
121
|
+
|
|
122
|
+
python -m pip install --editable ./|package|
|
|
123
|
+
|
|
124
|
+
License
|
|
125
|
+
=======
|
|
126
|
+
|
|
127
|
+
| |copyright|
|
|
128
|
+
| Licensed under the zlib/libpng License
|
|
129
|
+
| https://opensource.org/license/zlib
|
|
130
|
+
| Please refer to the accompanying LICENSE file.
|
|
131
|
+
|
|
132
|
+
Authors
|
|
133
|
+
=======
|
|
134
|
+
|
|
135
|
+
* Adam Karpierz <adam@karpierz.net>
|
|
136
|
+
|
|
137
|
+
.. |package| replace:: crcc
|
|
138
|
+
.. |package_bold| replace:: **crcc**
|
|
139
|
+
.. |copyright| replace:: Copyright (c) 1994-2025 Adam Karpierz
|
|
140
|
+
.. |respository| replace:: https://github.com/karpierz/crcc.git
|
|
141
|
+
.. _Development page: https://github.com/karpierz/crcc
|
|
142
|
+
.. _PyPI record: https://pypi.org/project/crcc/
|
|
143
|
+
.. _Documentation: https://crcc.readthedocs.io/
|
|
144
|
+
|
|
145
|
+
Changelog
|
|
146
|
+
=========
|
|
147
|
+
|
|
148
|
+
2.0.3 (2025-11-08)
|
|
149
|
+
------------------
|
|
150
|
+
- | Backward INCOMPATIBILITY:
|
|
151
|
+
- | rename package crc-ct -> crcc, rename module crc -> crcc
|
|
152
|
+
| (due to conflict with existing https://pypi.org/project/crc/).
|
|
153
|
+
- Mark the package as typed.
|
|
154
|
+
- Add tox's tool.tox.env.cleanup testenv.
|
|
155
|
+
- Setup (dependencies) update and unification.
|
|
156
|
+
|
|
157
|
+
1.5.0 (2025-09-01)
|
|
158
|
+
------------------
|
|
159
|
+
- Making the package typed.
|
|
160
|
+
- Setup (dependencies) update.
|
|
161
|
+
|
|
162
|
+
1.4.4 (2025-07-07)
|
|
163
|
+
------------------
|
|
164
|
+
- 100% code coverage.
|
|
165
|
+
- Setup (dependencies) update.
|
|
166
|
+
|
|
167
|
+
1.4.3 (2025-06-15)
|
|
168
|
+
------------------
|
|
169
|
+
- The distribution is now created using 'build' instead of 'setuptools'.
|
|
170
|
+
- Setup (dependencies) update (due to regressions in tox and setuptools).
|
|
171
|
+
|
|
172
|
+
1.4.1 (2025-05-04)
|
|
173
|
+
------------------
|
|
174
|
+
- Setup (dependencies) update.
|
|
175
|
+
|
|
176
|
+
1.4.0 (2025-04-28)
|
|
177
|
+
------------------
|
|
178
|
+
- Add support for Python 3.14
|
|
179
|
+
- Drop support for Python 3.9 (due to compatibility issues).
|
|
180
|
+
- Update readthedocs's python to version 3.13
|
|
181
|
+
- Update tox's base_python to version 3.13
|
|
182
|
+
- Setup (dependencies) update.
|
|
183
|
+
|
|
184
|
+
1.3.5 (2025-02-14)
|
|
185
|
+
------------------
|
|
186
|
+
- Setup (dependencies) update.
|
|
187
|
+
|
|
188
|
+
1.3.4 (2025-01-20)
|
|
189
|
+
------------------
|
|
190
|
+
- Copyright year update.
|
|
191
|
+
- Setup (dependencies) update.
|
|
192
|
+
|
|
193
|
+
1.3.3 (2024-12-13)
|
|
194
|
+
------------------
|
|
195
|
+
- Source distribution (\*.tar.gz now) is compliant with PEP-0625.
|
|
196
|
+
- 100% code linting.
|
|
197
|
+
- Tox configuration is now in native (toml) format.
|
|
198
|
+
- Setup (dependencies) update.
|
|
199
|
+
|
|
200
|
+
1.3.2 (2024-10-30)
|
|
201
|
+
------------------
|
|
202
|
+
- Setup (dependencies) update.
|
|
203
|
+
|
|
204
|
+
1.3.1 (2024-10-09)
|
|
205
|
+
------------------
|
|
206
|
+
- Setup (dependencies) update.
|
|
207
|
+
|
|
208
|
+
1.3.0 (2024-09-30)
|
|
209
|
+
------------------
|
|
210
|
+
- Drop support for Python 3.8
|
|
211
|
+
- Setup (dependencies) update.
|
|
212
|
+
|
|
213
|
+
1.2.4 (2024-08-13)
|
|
214
|
+
------------------
|
|
215
|
+
- Add support for Python 3.13
|
|
216
|
+
- Setup (dependencies) update.
|
|
217
|
+
|
|
218
|
+
1.2.3 (2024-01-26)
|
|
219
|
+
------------------
|
|
220
|
+
- Cleanup.
|
|
221
|
+
|
|
222
|
+
1.2.1 (2024-01-22)
|
|
223
|
+
------------------
|
|
224
|
+
- Tox configuration has been moved to pyproject.toml
|
|
225
|
+
- Setup update (now based on tox >= 4.0).
|
|
226
|
+
- Add support for Python 3.12
|
|
227
|
+
- Drop support for Python 3.7
|
|
228
|
+
- Add support for PyPy 3.9 and 3.10
|
|
229
|
+
- Copyright year update.
|
|
230
|
+
|
|
231
|
+
1.2.0 (2022-08-02)
|
|
232
|
+
------------------
|
|
233
|
+
- Add support for Python 3.10 and 3.11
|
|
234
|
+
- Add support for PyPy 3.7, 3.8 and 3.9
|
|
235
|
+
- Setup update (currently based mainly on pyproject.toml).
|
|
236
|
+
|
|
237
|
+
1.1.0 (2022-01-10)
|
|
238
|
+
------------------
|
|
239
|
+
- Add support for Python 3.9.
|
|
240
|
+
- Drop support for Python 3.5 and 3.6.
|
|
241
|
+
- Copyright year update.
|
|
242
|
+
- Setup general update and improvement.
|
|
243
|
+
- General update and cleanup.
|
|
244
|
+
- Fixed docs setup.
|
|
245
|
+
|
|
246
|
+
1.0.0rc9 (2020-01-16)
|
|
247
|
+
---------------------
|
|
248
|
+
- Fix for missing include stddef.h (for size_t) in crc.h
|
|
249
|
+
- Another fixes for gcc/Linux.
|
|
250
|
+
- Added ReadTheDocs config file.
|
|
251
|
+
- Setup update.
|
|
252
|
+
|
|
253
|
+
1.0.0rc6 (2019-11-13)
|
|
254
|
+
---------------------
|
|
255
|
+
- Drop support for Python2.
|
|
256
|
+
- Add support for Python 3.8.
|
|
257
|
+
- Setup update and cleanup.
|
|
258
|
+
|
|
259
|
+
1.0.0rc2 (2019-05-19)
|
|
260
|
+
---------------------
|
|
261
|
+
- C API has been changed in one place: crc_finalize() -> crc_final().
|
|
262
|
+
- Python API has been changed. It is now finally established in the
|
|
263
|
+
folowing way; crc.name instead of crc.crc_name in most of cases.
|
|
264
|
+
- Python doc-strings update.
|
|
265
|
+
- Fix for error in Python definition of crc.predefined_models.
|
|
266
|
+
- Python tests have been added.
|
|
267
|
+
- Changes and fixes for support of Python2.
|
|
268
|
+
- Minor setup improvements.
|
|
269
|
+
|
|
270
|
+
1.0.0b1 (2019-05-12)
|
|
271
|
+
--------------------
|
|
272
|
+
- Firt beta release.
|
|
273
|
+
|
|
274
|
+
0.0.1 (2017-05-09)
|
|
275
|
+
------------------
|
|
276
|
+
- Initial release for Python.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
crcc-2.0.3.dist-info/METADATA,sha256=Id55iwFAwJedeiJntoOzUMXoy5CUkePzgzKZ87jYuYk,7360
|
|
2
|
+
crcc-2.0.3.dist-info/RECORD,,
|
|
3
|
+
crcc-2.0.3.dist-info/WHEEL,sha256=mDTLi-lcRey7JEenATTEcfpRSN3DewF3dJqTvlZbDhU,108
|
|
4
|
+
crcc-2.0.3.dist-info/licenses/LICENSE,sha256=cfWUjYFJ8ciflBe7qU_KioLGZbuRWTr7qB-mY0NCghs,872
|
|
5
|
+
crcc-2.0.3.dist-info/top_level.txt,sha256=Veto0I4Evc6SF2_v4OH1iW3fFDZFT9pd7ukdRpb_KRw,5
|
|
6
|
+
crcc/_platform/crc.pypy311-pp73-win_amd64.pyd,sha256=xPlZlddIprV7_OwF6AKOIEh41JT3VM1mgWgKlwQDMQw,139776
|
|
7
|
+
crcc/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
+
crcc\__about__.pyc,sha256=drBGIrvycWu6UmL2wgEKpvflpOazS7dclsrMr2ew57U,196
|
|
9
|
+
crcc\__init__.pyc,sha256=pJcb4WNKbOi5BgSYmIrJGcc1zuXkWWKeWYCXMMs02zw,272
|
|
10
|
+
crcc\_crc.pyc,sha256=VjZpb9cbMBAfse17gSNOrrmubG8h61NIXy4g-CsldbM,4816
|
|
11
|
+
crcc\_dll.pyc,sha256=FxhMJCrY16WtzR_-WgljvblmSDIypG4r4pNViE8Bw_0,507
|
|
12
|
+
crcc\_platform\__init__.pyc,sha256=KJYtVo-qnLQmZa4OxP5CRJZNKeSDjkI8_KFNkHVcSVU,790
|
|
13
|
+
crcc\_platform\linux\__init__.pyc,sha256=uLNXSlHn2cHUI64pRAlhBKvhUwqxY86OlaUy8oj2Psc,848
|
|
14
|
+
crcc\_platform\macos\__init__.pyc,sha256=aXCsUIRqupv0JYQvuxkndfDoxJpRpyOq6X4i77HubmI,848
|
|
15
|
+
crcc\_platform\windows\__init__.pyc,sha256=8HsxVhewuAIdToXYg_LqGP086f-wRECRm8gkixGljvc,1503
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
zlib License
|
|
2
|
+
|
|
3
|
+
Copyright (C) 1994-2025 Adam Karpierz
|
|
4
|
+
|
|
5
|
+
This software is provided 'as-is', without any express or implied
|
|
6
|
+
warranty. In no event will the authors be held liable for any damages
|
|
7
|
+
arising from the use of this software.
|
|
8
|
+
|
|
9
|
+
Permission is granted to anyone to use this software for any purpose,
|
|
10
|
+
including commercial applications, and to alter it and redistribute it
|
|
11
|
+
freely, subject to the following restrictions:
|
|
12
|
+
|
|
13
|
+
1. The origin of this software must not be misrepresented; you must not
|
|
14
|
+
claim that you wrote the original software. If you use this software
|
|
15
|
+
in a product, an acknowledgment in the product documentation would be
|
|
16
|
+
appreciated but is not required.
|
|
17
|
+
2. Altered source versions must be plainly marked as such, and must not be
|
|
18
|
+
misrepresented as being the original software.
|
|
19
|
+
3. This notice may not be removed or altered from any source distribution.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
crcc
|