cpp-containers


Namecpp-containers JSON
Version 0.1 PyPI version JSON
download
home_pagehttps://github.com/Dobatymo/cpp-containers-python
SummaryPython wrapper for CPP stdlib containers
upload_time2022-11-30 07:35:46
maintainer
docs_urlNone
authorDobatymo
requires_python>=3.6
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # cpp-containers-python

Python wrapper for the C++ Standard Library containers. The behaviour of the containers might not be as expected, since for sorting and hashing the items only the pointer to the Python object is used, and not the actual content. That means items in ordered collections will be ordered according to memory layout and to object content. Furhermore, equality checks will work as pairwise `is` tests, because only the pointers are compared internally. Also certain operations will lead to *undefined behavior*, such as accessing out of bounds indices in `Vector`.

This design decision was made for performance reasons and to keep the code as simple and close to C++ as possible. Real equality checks can still be implemented by pairwise comparison of the objects at Python level. This won't be any faster than doing so on normal Python collections.

For more documentation about the C++ containers see <https://en.cppreference.com/w/cpp/container>.

## Install
`pip install cpp-containers` (not working yet)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Dobatymo/cpp-containers-python",
    "name": "cpp-containers",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "",
    "author": "Dobatymo",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/36/70/fe6e166ee030276a7110bbbcb52986aeb47489a90e2ddf0dadf4b4aea295/cpp-containers-0.1.tar.gz",
    "platform": null,
    "description": "# cpp-containers-python\n\nPython wrapper for the C++ Standard Library containers. The behaviour of the containers might not be as expected, since for sorting and hashing the items only the pointer to the Python object is used, and not the actual content. That means items in ordered collections will be ordered according to memory layout and to object content. Furhermore, equality checks will work as pairwise `is` tests, because only the pointers are compared internally. Also certain operations will lead to *undefined behavior*, such as accessing out of bounds indices in `Vector`.\n\nThis design decision was made for performance reasons and to keep the code as simple and close to C++ as possible. Real equality checks can still be implemented by pairwise comparison of the objects at Python level. This won't be any faster than doing so on normal Python collections.\n\nFor more documentation about the C++ containers see <https://en.cppreference.com/w/cpp/container>.\n\n## Install\n`pip install cpp-containers` (not working yet)\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Python wrapper for CPP stdlib containers",
    "version": "0.1",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "9e4da7f95ecc9287f2478fdaa827d8d5",
                "sha256": "6766c875817db875de26dc918e1d9f44d9e179173df4c786052966ea6e776334"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9e4da7f95ecc9287f2478fdaa827d8d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 302037,
            "upload_time": "2022-11-30T07:34:35",
            "upload_time_iso_8601": "2022-11-30T07:34:35.845818Z",
            "url": "https://files.pythonhosted.org/packages/b8/40/01499fdfbcd30f1ec315c46a08b7d8a925035188ece19814aa4dd86417e8/cpp_containers-0.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "9607e0f9716e2b62316569b1e049f5f3",
                "sha256": "cd1ee06b23860ae1f67c970cd4583d103869a6651ccebf62c401eff9f66971b9"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9607e0f9716e2b62316569b1e049f5f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 1680194,
            "upload_time": "2022-11-30T07:34:37",
            "upload_time_iso_8601": "2022-11-30T07:34:37.367560Z",
            "url": "https://files.pythonhosted.org/packages/81/43/993b0f0b4fc6e1ee9544531aa1f2ef3d289b14eecb3c4352ffae6a15bdfe/cpp_containers-0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "934435fef4cddc2763d9bcea6ad9beed",
                "sha256": "7639598d7669d2fc848c6f84e8a612011b947325925fdff4ef7bfc0379917a5e"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "934435fef4cddc2763d9bcea6ad9beed",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 1793649,
            "upload_time": "2022-11-30T07:34:38",
            "upload_time_iso_8601": "2022-11-30T07:34:38.560469Z",
            "url": "https://files.pythonhosted.org/packages/8b/3a/6d5cc7ac59319b68943114d76c591088aed75afa11df74c69f6c41b2facc/cpp_containers-0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "2724442ed62bcf258b9e54d58a6e0ab1",
                "sha256": "48ba0f5f15001d9ff56a22b040cbe3cb2925822356313ac6aba43426d8be3723"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "2724442ed62bcf258b9e54d58a6e0ab1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 2372951,
            "upload_time": "2022-11-30T07:34:40",
            "upload_time_iso_8601": "2022-11-30T07:34:40.039413Z",
            "url": "https://files.pythonhosted.org/packages/9d/04/6f403314754b07f9434a821d539f3907292cfd37b11cdd10c263f290d523/cpp_containers-0.1-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "122d5cb3532fc6d01918fa23fc1fb789",
                "sha256": "40ed63e332059beeb3e1f034e09beb48020daa1ff2cb4eeae4c906b373a1ac2a"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "122d5cb3532fc6d01918fa23fc1fb789",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 2418891,
            "upload_time": "2022-11-30T07:34:41",
            "upload_time_iso_8601": "2022-11-30T07:34:41.725870Z",
            "url": "https://files.pythonhosted.org/packages/e6/45/32f7795f3bd0b746531f3bf62b9a4ce9bd9727bb1e81f64f1532d4ced17d/cpp_containers-0.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "9a6cf38bf940624bb163941b8c60c09f",
                "sha256": "66355f8f09f5407767c8ace9be31fc51a8656dda19a2529097ec0c11c0c1b55a"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "9a6cf38bf940624bb163941b8c60c09f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 168274,
            "upload_time": "2022-11-30T07:34:43",
            "upload_time_iso_8601": "2022-11-30T07:34:43.783543Z",
            "url": "https://files.pythonhosted.org/packages/d1/91/ac14ceeeba57de339d1a52f145ec57057d5e8dad8722521c9fc3eb86b3fd/cpp_containers-0.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "f7b425e945495d33e27c10cb8fe5491d",
                "sha256": "4daa4944cb4e4f411e5ee51312616a5bc843fb877e7fa3307ddc06f3ff013d7d"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f7b425e945495d33e27c10cb8fe5491d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 198560,
            "upload_time": "2022-11-30T07:34:45",
            "upload_time_iso_8601": "2022-11-30T07:34:45.298331Z",
            "url": "https://files.pythonhosted.org/packages/9e/4d/c9ed44898ffde8f0916e295ae1e9fcf564a435747426a9496f6a7a042834/cpp_containers-0.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "c9a47e5f1fca66c7bbfa2c57dd95bcd6",
                "sha256": "c5fc8feb42ccf1b4f4d8cb7eca4c1cdf3f46a3d7a21f11cfe4ee07508ab9e815"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c9a47e5f1fca66c7bbfa2c57dd95bcd6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 302573,
            "upload_time": "2022-11-30T07:34:46",
            "upload_time_iso_8601": "2022-11-30T07:34:46.407588Z",
            "url": "https://files.pythonhosted.org/packages/7c/01/c39f1f00f6e4976124a347d2d7da77cb44141beb999ec02f44866af20299/cpp_containers-0.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "0e17b7f1b7c3a538511615fa54d1259d",
                "sha256": "e6ff3a9db4a54457205e0de8e3db8366e304b3666b7f439e6668755638ac3424"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "0e17b7f1b7c3a538511615fa54d1259d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 1792253,
            "upload_time": "2022-11-30T07:34:47",
            "upload_time_iso_8601": "2022-11-30T07:34:47.501126Z",
            "url": "https://files.pythonhosted.org/packages/57/82/75659fd62d95daf9409a36ac3d5f0a993028ae7616e4a48a345498b472fc/cpp_containers-0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "579cfe5dca4476d7085627440ce4d9c0",
                "sha256": "92b9922a41f860488aa57081ecfa67f475cf864598110196d581e831af05b8e7"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "579cfe5dca4476d7085627440ce4d9c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 1902592,
            "upload_time": "2022-11-30T07:34:48",
            "upload_time_iso_8601": "2022-11-30T07:34:48.560113Z",
            "url": "https://files.pythonhosted.org/packages/cf/a8/81ceaedf2ad195e3cfb33da613cb61862216b9c80a5fe03cd87d8df675ab/cpp_containers-0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "cbd3ca047b8a629d05d6f318cbe83d74",
                "sha256": "b27df777786c341fc489fa4bc78bc436b304089eb752ebd06baea924f4b512a5"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "cbd3ca047b8a629d05d6f318cbe83d74",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 2549063,
            "upload_time": "2022-11-30T07:34:50",
            "upload_time_iso_8601": "2022-11-30T07:34:50.303709Z",
            "url": "https://files.pythonhosted.org/packages/b9/fc/772c5ac942e4013571ef26e005e3bb052c55d065fc09e826bc68c5ea9d9e/cpp_containers-0.1-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "e4cb549d821e2371f284277cbc2dcbe4",
                "sha256": "64817433eec7825be223087130a0877658291c9e22a0a99e9d9823ec28ea1c0b"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e4cb549d821e2371f284277cbc2dcbe4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 2598171,
            "upload_time": "2022-11-30T07:34:53",
            "upload_time_iso_8601": "2022-11-30T07:34:53.526366Z",
            "url": "https://files.pythonhosted.org/packages/49/fe/acee9571f019f1b50ba4723c519d17a21efa32314b1e41e390c4915dbe39/cpp_containers-0.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "d8d570ba709d4173f2a0f7760be5a218",
                "sha256": "e106124bc848d1258c5417aa590701abea730d08eb0c6ff031d867b4bf877975"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "d8d570ba709d4173f2a0f7760be5a218",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 169825,
            "upload_time": "2022-11-30T07:34:54",
            "upload_time_iso_8601": "2022-11-30T07:34:54.586297Z",
            "url": "https://files.pythonhosted.org/packages/16/0c/c76267e64174a165074ac9eef6c8b5fd155b9f5d7e27eff35ddec9c816fb/cpp_containers-0.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "68c7cee88bc72c553e08ca87b34a802a",
                "sha256": "30d7247a8f3c5a151af7d0a88f1fe027d656dafefa8c1af294bea0383c3119c8"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "68c7cee88bc72c553e08ca87b34a802a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 202909,
            "upload_time": "2022-11-30T07:34:55",
            "upload_time_iso_8601": "2022-11-30T07:34:55.741621Z",
            "url": "https://files.pythonhosted.org/packages/87/e3/e26eb31310d4a24665584cee9ddf07432e42487bad51c018b3d2ccca4dec/cpp_containers-0.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "ba8658822c5e44144e46928bbb0be5a1",
                "sha256": "fd2cec7e343fef285b5216ecddf23dcf2e48c6cead8f0c829997181890d9d4c1"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ba8658822c5e44144e46928bbb0be5a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 311133,
            "upload_time": "2022-11-30T07:34:56",
            "upload_time_iso_8601": "2022-11-30T07:34:56.667259Z",
            "url": "https://files.pythonhosted.org/packages/a1/58/bdc7dfa1ce1bd875d60d92cd3033c6edab69f9f54b5af0d315756ca94da6/cpp_containers-0.1-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "640499f32c267744bd9d4fe5613ee08f",
                "sha256": "0cb52e21725fdddf4a676294e399450c8069b3f2d3fc436e66107da8dfa596f3"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "640499f32c267744bd9d4fe5613ee08f",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 1623952,
            "upload_time": "2022-11-30T07:34:57",
            "upload_time_iso_8601": "2022-11-30T07:34:57.917790Z",
            "url": "https://files.pythonhosted.org/packages/b9/4c/cb44db3448c2d70e49a14e8f72b805f014bd5025bece9b668fe99c6d4a37/cpp_containers-0.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "cf97eccb8da1cb62ab845abc604ee6bc",
                "sha256": "c0c234e01302c85ab10990bb3a7c97bc179d2a49652d15ddf829792ac4568630"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cf97eccb8da1cb62ab845abc604ee6bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 1725127,
            "upload_time": "2022-11-30T07:34:58",
            "upload_time_iso_8601": "2022-11-30T07:34:58.973349Z",
            "url": "https://files.pythonhosted.org/packages/e8/75/38a31aea1ca80f1a04b22fe92fdeb72c76a1783f0e9b34cbdf6c8df7df38/cpp_containers-0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "21e228a2e5453e605c34cde638457a43",
                "sha256": "197c7ef5d374afce60305e5c44d3c01b68211f9740ca93123b2c102c34008ed7"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp36-cp36m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "21e228a2e5453e605c34cde638457a43",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 2258773,
            "upload_time": "2022-11-30T07:35:00",
            "upload_time_iso_8601": "2022-11-30T07:35:00.689295Z",
            "url": "https://files.pythonhosted.org/packages/08/6b/c412feeda78d03aa99d43d59d5381ddeccfa1d23fc46d421446aadc85d4d/cpp_containers-0.1-cp36-cp36m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "c5973ee63fe0d13d1f227232e5f2ee94",
                "sha256": "4e53d0ec48b04d48acdbe41a37cdee87cc6e21eaab412a7a723c99d0a3f29f21"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c5973ee63fe0d13d1f227232e5f2ee94",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 2307597,
            "upload_time": "2022-11-30T07:35:02",
            "upload_time_iso_8601": "2022-11-30T07:35:02.434694Z",
            "url": "https://files.pythonhosted.org/packages/b6/0d/5d6f70bde51d2d7706acc08cdce34e96287a62d0ebb1d69d1066975d8500/cpp_containers-0.1-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "b2dc2eb7b9a9f94c088c1f4013978619",
                "sha256": "f803a19280da49f0caedb9d6e6ba264f9ecf4af50c1002bf314e85a54709b548"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "b2dc2eb7b9a9f94c088c1f4013978619",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 165018,
            "upload_time": "2022-11-30T07:35:03",
            "upload_time_iso_8601": "2022-11-30T07:35:03.736129Z",
            "url": "https://files.pythonhosted.org/packages/4f/94/f19ea1794265bef239bfd1e1d6ac0e976f97f70820be14b9125198f1ec29/cpp_containers-0.1-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "2c795d39e7d86240ea43bee07dbf3858",
                "sha256": "5b63b3d6e5d4bbbcb74b5bb29a96637079cfcf8ea9cef4e5bfab7cd40048e286"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2c795d39e7d86240ea43bee07dbf3858",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 189214,
            "upload_time": "2022-11-30T07:35:05",
            "upload_time_iso_8601": "2022-11-30T07:35:05.123996Z",
            "url": "https://files.pythonhosted.org/packages/6a/a0/a4bb76d2707f9b0e985cd3a4bcbc43ce752be4003f07eda79c4d4bf6a160/cpp_containers-0.1-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "6a079449c6f5c8cc2040b5e82b548a4e",
                "sha256": "d6a4fb7d36fadea47b6449734a2260fc35daa43bbbf0a92e8d3cbbf9b4785e6c"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6a079449c6f5c8cc2040b5e82b548a4e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 297327,
            "upload_time": "2022-11-30T07:35:06",
            "upload_time_iso_8601": "2022-11-30T07:35:06.246968Z",
            "url": "https://files.pythonhosted.org/packages/de/cf/91966610abe2cca861731e89a5a2ec147574d8c33fea9560f810227b095f/cpp_containers-0.1-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "1464856fd5059aac8c20b97217a1bf8b",
                "sha256": "e10e628d5d0e620000969157a0dda0b1f8e0ac7e3076e372d3015d95f8b3e876"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1464856fd5059aac8c20b97217a1bf8b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 1660723,
            "upload_time": "2022-11-30T07:35:07",
            "upload_time_iso_8601": "2022-11-30T07:35:07.636655Z",
            "url": "https://files.pythonhosted.org/packages/69/af/2f91e5266cb3bf76213eebff9d0b785b544d1659f70ed24f4070c6037ad0/cpp_containers-0.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "f4122f974b17b8dc8157baae5bd7f4f6",
                "sha256": "b2699b107f7218316479a5a76d392692bcc955bdc2da8f2567b2ec9791f21265"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f4122f974b17b8dc8157baae5bd7f4f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 1773170,
            "upload_time": "2022-11-30T07:35:09",
            "upload_time_iso_8601": "2022-11-30T07:35:09.310290Z",
            "url": "https://files.pythonhosted.org/packages/10/3e/c0ae252332fc3aedbe6dca46ded98fcb31ba9abe2687611082b2681416a2/cpp_containers-0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "3d62a5c4ad78c51ab6c1a557937dcd04",
                "sha256": "3a908723b61df1475cd5176312f59634b747852cde0ca65ff6c9361eff9cec5e"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "3d62a5c4ad78c51ab6c1a557937dcd04",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 2232705,
            "upload_time": "2022-11-30T07:35:10",
            "upload_time_iso_8601": "2022-11-30T07:35:10.488816Z",
            "url": "https://files.pythonhosted.org/packages/29/e4/608abe7e37fca6dc63e6a7de9a8200ae75238dc4b1c1fcc79b9a23e57fb5/cpp_containers-0.1-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "513916591e9e76691b24d2ba94cf1227",
                "sha256": "d7c25bd2fd381dc40fc3f0eac44a39b67715b952e729eef764bdc69067032a59"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "513916591e9e76691b24d2ba94cf1227",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 2277782,
            "upload_time": "2022-11-30T07:35:11",
            "upload_time_iso_8601": "2022-11-30T07:35:11.805917Z",
            "url": "https://files.pythonhosted.org/packages/ef/d6/7ee50862b43ea374669251246b4e625584eb50b7bb0263a2431b9048beee/cpp_containers-0.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "ffe488bcd8c5f28665a93032d162c9ed",
                "sha256": "65c93271cd4bc0860bd476a804245f15f66076674ce3a8e1f2efda3861965895"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "ffe488bcd8c5f28665a93032d162c9ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 165806,
            "upload_time": "2022-11-30T07:35:13",
            "upload_time_iso_8601": "2022-11-30T07:35:13.164068Z",
            "url": "https://files.pythonhosted.org/packages/62/2e/e5406b9b6667ccfbf35fca73f4a0a72adebdb95101589c587dad46651562/cpp_containers-0.1-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "524fda77e10ccbce887509258a135a3b",
                "sha256": "59c013077b9d8f343fea3485ad47feb0204867229f86d2614a78efa09ab22c30"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "524fda77e10ccbce887509258a135a3b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 188122,
            "upload_time": "2022-11-30T07:35:14",
            "upload_time_iso_8601": "2022-11-30T07:35:14.122754Z",
            "url": "https://files.pythonhosted.org/packages/0a/87/ebf4cc01dc3ee22b0d170d9c3142f872f724acb72097c6fbf26d0202c286/cpp_containers-0.1-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "a7a9beae0c4e9b71c8446f4e5abdf6b6",
                "sha256": "32ac0952735ab3dff8e3510fb3897472c7ed7136ceb1f6d9bc09290478ddacca"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a7a9beae0c4e9b71c8446f4e5abdf6b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 302484,
            "upload_time": "2022-11-30T07:35:15",
            "upload_time_iso_8601": "2022-11-30T07:35:15.213279Z",
            "url": "https://files.pythonhosted.org/packages/24/69/0d0454699a4de5788a462e2e1e5e71934d35543296f7397999af332ce4b5/cpp_containers-0.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "e5d53d34b6c7e8a703fcce8445b82d7d",
                "sha256": "4e943bc70329aedbda083ea1de9049e670feef981efbf5b9dbad6a04c1080377"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e5d53d34b6c7e8a703fcce8445b82d7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 1791204,
            "upload_time": "2022-11-30T07:35:16",
            "upload_time_iso_8601": "2022-11-30T07:35:16.534594Z",
            "url": "https://files.pythonhosted.org/packages/b0/91/2f51776d8ea3e813414f1edd962feaff2f716cd3ce0ffd98118003e4ab49/cpp_containers-0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "5faeaa7b9b8b5ea5df9b56d52fcc18da",
                "sha256": "db9311de40cd53df7f766f8867eea820c201ee74e1d45ca5dbcced43b6c4c118"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5faeaa7b9b8b5ea5df9b56d52fcc18da",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 1882015,
            "upload_time": "2022-11-30T07:35:17",
            "upload_time_iso_8601": "2022-11-30T07:35:17.805970Z",
            "url": "https://files.pythonhosted.org/packages/c4/60/273eb3b6d40744e8abafcefd7fdd2a5b3944cbfd3399546370d6a16f6888/cpp_containers-0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "946b8830cdab9c3ea376cbeebb8f1d3a",
                "sha256": "4cb34bdd61909e21cb9f1bdc6e5e54f6a00dab3aa4fce7e0e61da69784d8bcd9"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "946b8830cdab9c3ea376cbeebb8f1d3a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 2472202,
            "upload_time": "2022-11-30T07:35:18",
            "upload_time_iso_8601": "2022-11-30T07:35:18.944283Z",
            "url": "https://files.pythonhosted.org/packages/f2/5c/a8a900b8c7ce3fb261e83fae4a4f5f1fcffae12d1d4fe0bc6ce6cd8854e6/cpp_containers-0.1-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "c3f579ea9b6ed32014d1ebb6b170052c",
                "sha256": "58a4f4e1b9a4b697da5765c63ad138c935ae632c206c415e58ab96b9b3656e91"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c3f579ea9b6ed32014d1ebb6b170052c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 2554401,
            "upload_time": "2022-11-30T07:35:20",
            "upload_time_iso_8601": "2022-11-30T07:35:20.279824Z",
            "url": "https://files.pythonhosted.org/packages/e3/c4/fbb9f97567c5f710542af6ebda7826c6e69a768f55da23c72a1809e4e7f5/cpp_containers-0.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "60d7a87a3d55ed5ead6f0881a51ebb8d",
                "sha256": "2985be3e9e5c299f830d4812d5e314ac20e8d9107c5189ab015f3989a38631b8"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "60d7a87a3d55ed5ead6f0881a51ebb8d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 170242,
            "upload_time": "2022-11-30T07:35:21",
            "upload_time_iso_8601": "2022-11-30T07:35:21.536839Z",
            "url": "https://files.pythonhosted.org/packages/4e/ff/9ed348113a8d4050799c6fa05fefddafc8fcf6bad9ea18a67a6ff17140eb/cpp_containers-0.1-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "ae1841989fc766696fafb303ba85e17d",
                "sha256": "441d683fe1823596c3928380322feb8081ffa654a6855eadbe3c0d08303d63a9"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ae1841989fc766696fafb303ba85e17d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 201043,
            "upload_time": "2022-11-30T07:35:22",
            "upload_time_iso_8601": "2022-11-30T07:35:22.477261Z",
            "url": "https://files.pythonhosted.org/packages/4f/df/9b8a1681b32411a6e586726c775e43a74fd833a2fea0f7f2001c985425b9/cpp_containers-0.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "a5f630aac0c3ed15c5f7803ff7117359",
                "sha256": "dba503c5608be0d666f5926aff198858c7ccc45a100047958fc3bffc069bf36b"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a5f630aac0c3ed15c5f7803ff7117359",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 302611,
            "upload_time": "2022-11-30T07:35:23",
            "upload_time_iso_8601": "2022-11-30T07:35:23.597561Z",
            "url": "https://files.pythonhosted.org/packages/22/cd/98f042a74d07865c291e3ef716b7ff1ca9767acaa44b63aa253cf56f5a6e/cpp_containers-0.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "214615ae51b2b9c22581e5823d2506ae",
                "sha256": "e12549c7387561a8e64bfc9a0a7433d94ca6b2271c6eed372924d59f220dfdef"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "214615ae51b2b9c22581e5823d2506ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 1682119,
            "upload_time": "2022-11-30T07:35:24",
            "upload_time_iso_8601": "2022-11-30T07:35:24.728274Z",
            "url": "https://files.pythonhosted.org/packages/f0/2f/e5678e6d24f89bb6937f4d6098c5d6770f148dd05d73fdf2846029eacbac/cpp_containers-0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "5ec9ea1032fa37958f9b8d961ce08cde",
                "sha256": "535b769cbd1ec5b4f193b784ace81cc0bf41b58b8247e2d605076a5908d57776"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5ec9ea1032fa37958f9b8d961ce08cde",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 1795008,
            "upload_time": "2022-11-30T07:35:25",
            "upload_time_iso_8601": "2022-11-30T07:35:25.812514Z",
            "url": "https://files.pythonhosted.org/packages/e1/f4/17d587dcf7e7198972631fa0e590630e57c3a9f9486a02b805b98d374feb/cpp_containers-0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "92fc74e1134bea282f15c51f46e227d0",
                "sha256": "8d4aebbd29766f3d13daa9735f69454a5f04df0115df467b3b7e201a991d2ec1"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "92fc74e1134bea282f15c51f46e227d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 2375968,
            "upload_time": "2022-11-30T07:35:26",
            "upload_time_iso_8601": "2022-11-30T07:35:26.992316Z",
            "url": "https://files.pythonhosted.org/packages/c8/76/fcd8a441cd5c9bb3666f1aa6e226f15df6e035eab52949ca545a0bfd9559/cpp_containers-0.1-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "6b1c60045bb784c1fccb2b312ead61cc",
                "sha256": "d125c4d45471b53268f9e268605949cb90aa5104f265839e00cab02d5761cd8e"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6b1c60045bb784c1fccb2b312ead61cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 2420326,
            "upload_time": "2022-11-30T07:35:28",
            "upload_time_iso_8601": "2022-11-30T07:35:28.293561Z",
            "url": "https://files.pythonhosted.org/packages/96/f4/e6f424dc7dbc47c1996d952c2848871d3328badd21aca45673b8b25c2367/cpp_containers-0.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "ec7af612cbc22bf7137b447eacd6f028",
                "sha256": "53c29fd1c44c6f3c76561b0f311f3e5ee7db18ace0becb233cf3d86490307971"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "ec7af612cbc22bf7137b447eacd6f028",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 167992,
            "upload_time": "2022-11-30T07:35:29",
            "upload_time_iso_8601": "2022-11-30T07:35:29.503776Z",
            "url": "https://files.pythonhosted.org/packages/30/54/9bffb43b5b523b4fa72f9992b82a322cf0ede3af019fca3aedfc95863603/cpp_containers-0.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "b82c5c0ef91ecf5b58679b9839e5ca8c",
                "sha256": "fb78e068cd7db38ee5525f1ecac8c5cdd1c9eff44ac8e3a4992f2f0afc50283c"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b82c5c0ef91ecf5b58679b9839e5ca8c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 198610,
            "upload_time": "2022-11-30T07:35:30",
            "upload_time_iso_8601": "2022-11-30T07:35:30.656945Z",
            "url": "https://files.pythonhosted.org/packages/f8/48/ec289ba42aa5e198dc0b55896a12b227acb9ec9e66401548e14b5d40ce8c/cpp_containers-0.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "9395aa50baabc587fc8118636dc39bff",
                "sha256": "90bf2d264f1a4e0fe63cd8c31620474ca8fcc31b766df5eb6984a6146a26303d"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9395aa50baabc587fc8118636dc39bff",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 230036,
            "upload_time": "2022-11-30T07:35:31",
            "upload_time_iso_8601": "2022-11-30T07:35:31.721233Z",
            "url": "https://files.pythonhosted.org/packages/73/ab/d1397bcefd65602397df33900a81164b5449f75299fe638fef6938381c63/cpp_containers-0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "95fbe5f965cefb872f914c1207ea640a",
                "sha256": "777a201190e9e75d5d0891cfa06d88530033237cdebb4e93b956a51ee362eeab"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "95fbe5f965cefb872f914c1207ea640a",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 254002,
            "upload_time": "2022-11-30T07:35:32",
            "upload_time_iso_8601": "2022-11-30T07:35:32.777028Z",
            "url": "https://files.pythonhosted.org/packages/a9/d6/13254ca87b130083dff34c09f3c0a670de5a006a092aabed973bdb05ea23/cpp_containers-0.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "830693b387321c54cbb2477d6d7e4633",
                "sha256": "804cdbd165042e601d44590a8b60e9598cf365f618c7682c92fe22ba5e47f300"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "830693b387321c54cbb2477d6d7e4633",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 268758,
            "upload_time": "2022-11-30T07:35:34",
            "upload_time_iso_8601": "2022-11-30T07:35:34.704244Z",
            "url": "https://files.pythonhosted.org/packages/67/a3/db3622202e7fe5c46fd2b6bc0968a13275694a366279510dbda8ba88ebb4/cpp_containers-0.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "05d5d0e71092567cbd74d2a90d635fb2",
                "sha256": "94464e7dbd5649763fee4293194cd0040dfe86cdb77fc5fdea1ca495e2b7adcb"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "05d5d0e71092567cbd74d2a90d635fb2",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 179901,
            "upload_time": "2022-11-30T07:35:35",
            "upload_time_iso_8601": "2022-11-30T07:35:35.853562Z",
            "url": "https://files.pythonhosted.org/packages/02/46/248951131ce2dfd0c672e41a9f630b83fd07ad0c57a0064a316a79078381/cpp_containers-0.1-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "6aeccf1f3282c300e745af6bea525765",
                "sha256": "efab39bce1e7ccfd11f5088640ff5ec56066940a0e0d36057eec0ab7c0ebdddc"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6aeccf1f3282c300e745af6bea525765",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 230207,
            "upload_time": "2022-11-30T07:35:36",
            "upload_time_iso_8601": "2022-11-30T07:35:36.997893Z",
            "url": "https://files.pythonhosted.org/packages/58/92/c4e0a42b7097222db1cbc11a06ff30eede40a93d87f2f24be6c658dd7e8c/cpp_containers-0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "e2fe997547396bb1f183cdedcd7bfc35",
                "sha256": "6b380e677e8bbb49dd867569c08e683bd0fdf604e76585075eec2695d5b09738"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e2fe997547396bb1f183cdedcd7bfc35",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 252730,
            "upload_time": "2022-11-30T07:35:38",
            "upload_time_iso_8601": "2022-11-30T07:35:38.595567Z",
            "url": "https://files.pythonhosted.org/packages/0f/5b/77203f72c9a44daa81ac2970aba8c111e4e446a3924f84d1d09f63cc06af/cpp_containers-0.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "c90c8427f473fd1ff127d30396a39b85",
                "sha256": "b6223be48443795315f9680fcf908ed96d49cd9ad9c72ed64b30defd572d1366"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c90c8427f473fd1ff127d30396a39b85",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 267459,
            "upload_time": "2022-11-30T07:35:40",
            "upload_time_iso_8601": "2022-11-30T07:35:40.051158Z",
            "url": "https://files.pythonhosted.org/packages/e6/a2/5ad10fdc4a49c0ae613c364b1a8efd287cdeb9e5bda9b1ef519110c7a15a/cpp_containers-0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "b84475ceeffd28d355ba8cebb9236a46",
                "sha256": "8f3f94960b17774cb399d8b629b384f8150a03e2883d8622d14c7b2f4fd76b60"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b84475ceeffd28d355ba8cebb9236a46",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 180034,
            "upload_time": "2022-11-30T07:35:41",
            "upload_time_iso_8601": "2022-11-30T07:35:41.036815Z",
            "url": "https://files.pythonhosted.org/packages/7b/65/f1098d64d66c88da2c3af77c23b242c1c0ae1250ce34e0f0bc6897aad795/cpp_containers-0.1-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "4d0b3ec6a393ad1601514de7c451fdd3",
                "sha256": "d33c6c072c7f37af6d3947f16b434763922715f8fc5069147e7d0b1b5ab6366e"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4d0b3ec6a393ad1601514de7c451fdd3",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 228988,
            "upload_time": "2022-11-30T07:35:42",
            "upload_time_iso_8601": "2022-11-30T07:35:42.057952Z",
            "url": "https://files.pythonhosted.org/packages/bf/2c/417b827b78ce77fb4a5b12b93962f0f349afd1d411d4b7bdff07aeb20490/cpp_containers-0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "70912962f756d6b3dbebe6ac50c18a0f",
                "sha256": "2d57cf92503d10fbe1315ffac0396c4c513e75dfc6e2f9d05df424f3c6787dac"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "70912962f756d6b3dbebe6ac50c18a0f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 256096,
            "upload_time": "2022-11-30T07:35:43",
            "upload_time_iso_8601": "2022-11-30T07:35:43.115038Z",
            "url": "https://files.pythonhosted.org/packages/ad/68/4d14eb0ae61842cc151565a81c2affb6df24136bf15c7b9707ce9d3ff4aa/cpp_containers-0.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "ac3d44873b05504867e0abfb276051de",
                "sha256": "c4359cb6a80c0a21c9b57555ae93edf0aa538e31d44f10a5eab396f3bca1911e"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ac3d44873b05504867e0abfb276051de",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 271299,
            "upload_time": "2022-11-30T07:35:44",
            "upload_time_iso_8601": "2022-11-30T07:35:44.210207Z",
            "url": "https://files.pythonhosted.org/packages/a9/d9/7840af5a8c321a14eea114f10e0c06d66178d5f05d5060419ea54ee9d917/cpp_containers-0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "407f5bc30ebbffa503e56dc5e18564ed",
                "sha256": "9d492e13d9245c038ad39f072a69d9c919ddabf3c7e4e07cc22a26ec673a9d2a"
            },
            "downloads": -1,
            "filename": "cpp_containers-0.1-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "407f5bc30ebbffa503e56dc5e18564ed",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 179255,
            "upload_time": "2022-11-30T07:35:45",
            "upload_time_iso_8601": "2022-11-30T07:35:45.409963Z",
            "url": "https://files.pythonhosted.org/packages/88/9a/d7747e007f0fd5bd515ac6630f5fcb931840e5752346c109b3c709308425/cpp_containers-0.1-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "5e304c4beb647f306aae6abf006dee2f",
                "sha256": "c96e379de6359dd06769b7deac6b0e7e298b92275330ddc68a17caf1abe9032a"
            },
            "downloads": -1,
            "filename": "cpp-containers-0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "5e304c4beb647f306aae6abf006dee2f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 280343,
            "upload_time": "2022-11-30T07:35:46",
            "upload_time_iso_8601": "2022-11-30T07:35:46.569997Z",
            "url": "https://files.pythonhosted.org/packages/36/70/fe6e166ee030276a7110bbbcb52986aeb47489a90e2ddf0dadf4b4aea295/cpp-containers-0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-11-30 07:35:46",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "Dobatymo",
    "github_project": "cpp-containers-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "cpp-containers"
}
        
Elapsed time: 0.01788s