crc-ct


Namecrc-ct JSON
Version 1.3.2 PyPI version JSON
download
home_pageNone
SummaryC and Python CRC calculations module.
upload_time2024-11-05 21:21:45
maintainerAdam Karpierz
docs_urlNone
authorAdam Karpierz
requires_python<4.0.0,>=3.9.0
licensezlib/libpng License ; https://opensource.org/license/zlib
keywords crc-ct crc
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            crc-ct
======

C and Python (ctypes/cffi-based) CRC calculations module.

Overview
========

TBD...

`PyPI record`_.

`Documentation`_.

Usage
-----

TBD...

Installation
============

Prerequisites:

+ Python 3.9 or higher

  * https://www.python.org/

+ pip and setuptools

  * https://pypi.org/project/pip/
  * https://pypi.org/project/setuptools/

To install run:

  .. parsed-literal::

    python -m pip install --upgrade |package|

Development
===========

Prerequisites:

+ Development is strictly based on *tox*. To install it run::

    python -m pip install --upgrade tox

Visit `Development page`_.

Installation from sources:

clone the sources:

  .. parsed-literal::

    git clone |respository| |package|

and run:

  .. parsed-literal::

    python -m pip install ./|package|

or on development mode:

  .. parsed-literal::

    python -m pip install --editable ./|package|

License
=======

  | |copyright|
  | Licensed under the zlib/libpng License
  | https://opensource.org/license/zlib
  | Please refer to the accompanying LICENSE file.

Authors
=======

* Adam Karpierz <adam@karpierz.net>

.. |package| replace:: crc-ct
.. |package_bold| replace:: **crc-ct**
.. |copyright| replace:: Copyright (c) 1994-2024 Adam Karpierz
.. |respository| replace:: https://github.com/karpierz/crc-ct.git
.. _Development page: https://github.com/karpierz/crc-ct
.. _PyPI record: https://pypi.org/project/crc-ct/
.. _Documentation: https://crc-ct.readthedocs.io/

Changelog
=========

1.3.2 (2024-10-30)
------------------
- Setup (dependencies) update.

1.3.1 (2024-10-09)
------------------
- Setup (dependencies) update.

1.3.0 (2024-09-30)
------------------
- Drop support for Python 3.8
- Setup (dependencies) update.

1.2.4 (2024-08-13)
------------------
- Add support for Python 3.13
- Setup (dependencies) update.

1.2.3 (2024-01-26)
------------------
- Cleanup.

1.2.1 (2024-01-22)
------------------
- Tox configuration has been moved to pyproject.toml
- Setup update (now based on tox >= 4.0).
- Add support for Python 3.12
- Drop support for Python 3.7
- Add support for PyPy 3.9 and 3.10
- Copyright year update.

1.2.0 (2022-08-02)
------------------
- Add support for Python 3.10 and 3.11
- Add support for PyPy 3.7, 3.8 and 3.9
- Setup update (currently based mainly on pyproject.toml).

1.1.0 (2022-01-10)
------------------
- Drop support for Python 3.6.
- Copyright year update.
- Setup update.

1.1.0rc4 (2021-07-20)
---------------------
- Setup general update and improvement.

1.1.0rc3 (2020-10-18)
---------------------
- Add support for Python 3.9.
- Drop support for Python 3.5.
- General update and cleanup.
- Fixed docs setup.

1.0.0rc9 (2020-01-16)
---------------------
- Fix for missing include stddef.h (for size_t) in crc.h
- Another fixes for gcc/Linux.
- Added ReadTheDocs config file.
- Setup update.

1.0.0rc6 (2019-11-13)
---------------------
- Drop support for Python2.
- Add support for Python 3.8.
- Setup update and cleanup.

1.0.0rc2 (2019-05-19)
---------------------
- C API has been changed in one place: crc_finalize() -> crc_final().
- Python API has been changed. It is now finally established in the
  folowing way; crc.name instead of crc.crc_name in most of cases.
- Python doc-strings update.
- Fix for error in Python definition of crc.predefined_models.
- Python tests have been improved, enhanced and fixed.
- Changes and fixes for support of Python2.
- Minor setup improvement.

1.0.0b2 (2019-05-13)
--------------------
- Python tests have been added.
- Minor setup improvements.

1.0.0b1 (2019-05-12)
--------------------
- Firt beta release.

0.0.1 (2017-05-09)
------------------
- Initial release for Python.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "crc-ct",
    "maintainer": "Adam Karpierz",
    "docs_url": null,
    "requires_python": "<4.0.0,>=3.9.0",
    "maintainer_email": "adam@karpierz.net",
    "keywords": "crc-ct, crc",
    "author": "Adam Karpierz",
    "author_email": "adam@karpierz.net",
    "download_url": "https://files.pythonhosted.org/packages/b6/6a/03a0f624d9200c031e60cd9bf0d1f092ef323d041b2af0ef23de378e82b9/crc_ct-1.3.2.zip",
    "platform": "any",
    "description": "crc-ct\r\n======\r\n\r\nC and Python (ctypes/cffi-based) CRC calculations module.\r\n\r\nOverview\r\n========\r\n\r\nTBD...\r\n\r\n`PyPI record`_.\r\n\r\n`Documentation`_.\r\n\r\nUsage\r\n-----\r\n\r\nTBD...\r\n\r\nInstallation\r\n============\r\n\r\nPrerequisites:\r\n\r\n+ Python 3.9 or higher\r\n\r\n  * https://www.python.org/\r\n\r\n+ pip and setuptools\r\n\r\n  * https://pypi.org/project/pip/\r\n  * https://pypi.org/project/setuptools/\r\n\r\nTo install run:\r\n\r\n  .. parsed-literal::\r\n\r\n    python -m pip install --upgrade |package|\r\n\r\nDevelopment\r\n===========\r\n\r\nPrerequisites:\r\n\r\n+ Development is strictly based on *tox*. To install it run::\r\n\r\n    python -m pip install --upgrade tox\r\n\r\nVisit `Development page`_.\r\n\r\nInstallation from sources:\r\n\r\nclone the sources:\r\n\r\n  .. parsed-literal::\r\n\r\n    git clone |respository| |package|\r\n\r\nand run:\r\n\r\n  .. parsed-literal::\r\n\r\n    python -m pip install ./|package|\r\n\r\nor on development mode:\r\n\r\n  .. parsed-literal::\r\n\r\n    python -m pip install --editable ./|package|\r\n\r\nLicense\r\n=======\r\n\r\n  | |copyright|\r\n  | Licensed under the zlib/libpng License\r\n  | https://opensource.org/license/zlib\r\n  | Please refer to the accompanying LICENSE file.\r\n\r\nAuthors\r\n=======\r\n\r\n* Adam Karpierz <adam@karpierz.net>\r\n\r\n.. |package| replace:: crc-ct\r\n.. |package_bold| replace:: **crc-ct**\r\n.. |copyright| replace:: Copyright (c) 1994-2024 Adam Karpierz\r\n.. |respository| replace:: https://github.com/karpierz/crc-ct.git\r\n.. _Development page: https://github.com/karpierz/crc-ct\r\n.. _PyPI record: https://pypi.org/project/crc-ct/\r\n.. _Documentation: https://crc-ct.readthedocs.io/\r\n\r\nChangelog\r\n=========\r\n\r\n1.3.2 (2024-10-30)\r\n------------------\r\n- Setup (dependencies) update.\r\n\r\n1.3.1 (2024-10-09)\r\n------------------\r\n- Setup (dependencies) update.\r\n\r\n1.3.0 (2024-09-30)\r\n------------------\r\n- Drop support for Python 3.8\r\n- Setup (dependencies) update.\r\n\r\n1.2.4 (2024-08-13)\r\n------------------\r\n- Add support for Python 3.13\r\n- Setup (dependencies) update.\r\n\r\n1.2.3 (2024-01-26)\r\n------------------\r\n- Cleanup.\r\n\r\n1.2.1 (2024-01-22)\r\n------------------\r\n- Tox configuration has been moved to pyproject.toml\r\n- Setup update (now based on tox >= 4.0).\r\n- Add support for Python 3.12\r\n- Drop support for Python 3.7\r\n- Add support for PyPy 3.9 and 3.10\r\n- Copyright year update.\r\n\r\n1.2.0 (2022-08-02)\r\n------------------\r\n- Add support for Python 3.10 and 3.11\r\n- Add support for PyPy 3.7, 3.8 and 3.9\r\n- Setup update (currently based mainly on pyproject.toml).\r\n\r\n1.1.0 (2022-01-10)\r\n------------------\r\n- Drop support for Python 3.6.\r\n- Copyright year update.\r\n- Setup update.\r\n\r\n1.1.0rc4 (2021-07-20)\r\n---------------------\r\n- Setup general update and improvement.\r\n\r\n1.1.0rc3 (2020-10-18)\r\n---------------------\r\n- Add support for Python 3.9.\r\n- Drop support for Python 3.5.\r\n- General update and cleanup.\r\n- Fixed docs setup.\r\n\r\n1.0.0rc9 (2020-01-16)\r\n---------------------\r\n- Fix for missing include stddef.h (for size_t) in crc.h\r\n- Another fixes for gcc/Linux.\r\n- Added ReadTheDocs config file.\r\n- Setup update.\r\n\r\n1.0.0rc6 (2019-11-13)\r\n---------------------\r\n- Drop support for Python2.\r\n- Add support for Python 3.8.\r\n- Setup update and cleanup.\r\n\r\n1.0.0rc2 (2019-05-19)\r\n---------------------\r\n- C API has been changed in one place: crc_finalize() -> crc_final().\r\n- Python API has been changed. It is now finally established in the\r\n  folowing way; crc.name instead of crc.crc_name in most of cases.\r\n- Python doc-strings update.\r\n- Fix for error in Python definition of crc.predefined_models.\r\n- Python tests have been improved, enhanced and fixed.\r\n- Changes and fixes for support of Python2.\r\n- Minor setup improvement.\r\n\r\n1.0.0b2 (2019-05-13)\r\n--------------------\r\n- Python tests have been added.\r\n- Minor setup improvements.\r\n\r\n1.0.0b1 (2019-05-12)\r\n--------------------\r\n- Firt beta release.\r\n\r\n0.0.1 (2017-05-09)\r\n------------------\r\n- Initial release for Python.\r\n",
    "bugtrack_url": null,
    "license": "zlib/libpng License ; https://opensource.org/license/zlib",
    "summary": "C and Python CRC calculations module.",
    "version": "1.3.2",
    "project_urls": {
        "Documentation": "https://crc-ct.readthedocs.io/",
        "Download": "https://pypi.org/project/crc-ct/",
        "Homepage": "https://pypi.org/project/crc-ct/",
        "Issues": "https://github.com/karpierz/crc-ct/issues",
        "Source": "https://github.com/karpierz/crc-ct"
    },
    "split_keywords": [
        "crc-ct",
        " crc"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "89e9929502fe9c675320ef81775651860ce27bf69f8e35bb91d8187e2c011b4f",
                "md5": "f3e528a27ffc62f0a8845fb1a1f75c3c",
                "sha256": "8f22176205a76f97b0316f932e7158108c31498f223eb96ddb144b00e8d809a9"
            },
            "downloads": -1,
            "filename": "crc_ct-1.3.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f3e528a27ffc62f0a8845fb1a1f75c3c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0.0,>=3.9.0",
            "size": 19829,
            "upload_time": "2024-11-05T21:21:33",
            "upload_time_iso_8601": "2024-11-05T21:21:33.290410Z",
            "url": "https://files.pythonhosted.org/packages/89/e9/929502fe9c675320ef81775651860ce27bf69f8e35bb91d8187e2c011b4f/crc_ct-1.3.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ea62b11b8f780dbab9e70290046a3a3fe24472470b2940b1220e5347573f0e6",
                "md5": "0e6fdfb0113bf574f32a01d07e77a890",
                "sha256": "2cea3dcc382e291844b28d588cbb00b8961f494a7b324ca8e029e65464cce882"
            },
            "downloads": -1,
            "filename": "crc_ct-1.3.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0e6fdfb0113bf574f32a01d07e77a890",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0.0,>=3.9.0",
            "size": 19830,
            "upload_time": "2024-11-05T21:21:35",
            "upload_time_iso_8601": "2024-11-05T21:21:35.161393Z",
            "url": "https://files.pythonhosted.org/packages/2e/a6/2b11b8f780dbab9e70290046a3a3fe24472470b2940b1220e5347573f0e6/crc_ct-1.3.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af8b9f372ef3fabfde2289f137af42af5a04f99173c6f87810912a4ebe2607a9",
                "md5": "cbaed33f651af4ac25ba864807b4aed8",
                "sha256": "c82dfa15e295d88f2e83bae4880c5f994564c6a14001f53e250a1279eb9fbbde"
            },
            "downloads": -1,
            "filename": "crc_ct-1.3.2-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cbaed33f651af4ac25ba864807b4aed8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0.0,>=3.9.0",
            "size": 19826,
            "upload_time": "2024-11-05T21:21:36",
            "upload_time_iso_8601": "2024-11-05T21:21:36.882735Z",
            "url": "https://files.pythonhosted.org/packages/af/8b/9f372ef3fabfde2289f137af42af5a04f99173c6f87810912a4ebe2607a9/crc_ct-1.3.2-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "766abd8eb2a002be80f21619dc479fd279c33d6f6e34e1305f8e73bf5cec9799",
                "md5": "53a63206b98f50e05f10084bc5c42d00",
                "sha256": "0ff028a16775b9987dc5db8216a9235ed8f49e79d3de65277dc027b5374cdab4"
            },
            "downloads": -1,
            "filename": "crc_ct-1.3.2-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "53a63206b98f50e05f10084bc5c42d00",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4.0.0,>=3.9.0",
            "size": 19827,
            "upload_time": "2024-11-05T21:21:38",
            "upload_time_iso_8601": "2024-11-05T21:21:38.529167Z",
            "url": "https://files.pythonhosted.org/packages/76/6a/bd8eb2a002be80f21619dc479fd279c33d6f6e34e1305f8e73bf5cec9799/crc_ct-1.3.2-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f16980329d0673c1fc49dd09a5cdac171a8cfb3abed268aa0a4bc855c6e176d8",
                "md5": "8157ff5f86cd7807deec2a444ae9217b",
                "sha256": "5f7d6e26422133c027750ea385e1d25ee8df58208d8a42563f19a28b16ca9e51"
            },
            "downloads": -1,
            "filename": "crc_ct-1.3.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8157ff5f86cd7807deec2a444ae9217b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4.0.0,>=3.9.0",
            "size": 19821,
            "upload_time": "2024-11-05T21:21:40",
            "upload_time_iso_8601": "2024-11-05T21:21:40.278570Z",
            "url": "https://files.pythonhosted.org/packages/f1/69/80329d0673c1fc49dd09a5cdac171a8cfb3abed268aa0a4bc855c6e176d8/crc_ct-1.3.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57c13c9ffd5525a3717490c8130caf5a2695f9fb7a9fd204712eb7f1c2318cd1",
                "md5": "2ab9e84bd520394721f8b56920fd17fa",
                "sha256": "ab1e85c22f16a0f0041b6dcbfa23a79de8e833863f4b1e7dfa48069b5995ebcd"
            },
            "downloads": -1,
            "filename": "crc_ct-1.3.2-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2ab9e84bd520394721f8b56920fd17fa",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<4.0.0,>=3.9.0",
            "size": 19861,
            "upload_time": "2024-11-05T21:21:41",
            "upload_time_iso_8601": "2024-11-05T21:21:41.808571Z",
            "url": "https://files.pythonhosted.org/packages/57/c1/3c9ffd5525a3717490c8130caf5a2695f9fb7a9fd204712eb7f1c2318cd1/crc_ct-1.3.2-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f739d5b8e7be3bbb302188ddbd2f6552601771b06f2fbbd77544ac8f833df9c4",
                "md5": "48b4ecd3bd6dfa9e411628588ec8212f",
                "sha256": "395a9835e1fba7c0c4d07748f0a2456e3ad70e24fa81cc7d7e233fcaed0c1f89"
            },
            "downloads": -1,
            "filename": "crc_ct-1.3.2-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "48b4ecd3bd6dfa9e411628588ec8212f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": "<4.0.0,>=3.9.0",
            "size": 19859,
            "upload_time": "2024-11-05T21:21:43",
            "upload_time_iso_8601": "2024-11-05T21:21:43.351332Z",
            "url": "https://files.pythonhosted.org/packages/f7/39/d5b8e7be3bbb302188ddbd2f6552601771b06f2fbbd77544ac8f833df9c4/crc_ct-1.3.2-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b66a03a0f624d9200c031e60cd9bf0d1f092ef323d041b2af0ef23de378e82b9",
                "md5": "82bd136bf3fe759cba2d63267e7cfbc9",
                "sha256": "e44c2f380aac4b9573d2d19499f1323a71a0014648c05a73b910a86095ff01b1"
            },
            "downloads": -1,
            "filename": "crc_ct-1.3.2.zip",
            "has_sig": false,
            "md5_digest": "82bd136bf3fe759cba2d63267e7cfbc9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0.0,>=3.9.0",
            "size": 35438,
            "upload_time": "2024-11-05T21:21:45",
            "upload_time_iso_8601": "2024-11-05T21:21:45.079765Z",
            "url": "https://files.pythonhosted.org/packages/b6/6a/03a0f624d9200c031e60cd9bf0d1f092ef323d041b2af0ef23de378e82b9/crc_ct-1.3.2.zip",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-05 21:21:45",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "karpierz",
    "github_project": "crc-ct",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "crc-ct"
}
        
Elapsed time: 1.07807s