{ "info": { "author": "William Silversmith", "author_email": "ws9@princeton.edu", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Topic :: Scientific/Engineering" ], "description": "[![Build Status](https://travis-ci.org/seung-lab/tinybrain.svg?branch=master)](https://travis-ci.org/seung-lab/tinybrain) [![PyPI version](https://badge.fury.io/py/tinybrain.svg)](https://badge.fury.io/py/tinybrain) \n\n# tinybrain\n\nImage pyramid generation specialized for connectomics data types and procedures. If your brain wasn't tiny before, it will be now. \n\n```python \nimport tinybrain \n\nimg = load_3d_em_stack()\n\n# 2x2 and 2x2x2 downsamples are on a fast path.\n# e.g. (2,2), (2,2,1), (2,2,1,1), (2,2,2), (2,2,2,1)\nimg_pyramid = tinybrain.downsample_with_averaging(img, factor=(2,2,1), num_mips=5, sparse=False)\n\nlabels = load_3d_labels()\nlabel_pyramid = tinybrain.downsample_segmentation(labels, factor=(2,2,1), num_mips=5, sparse=False))\n```\n\n## Installation \n\n```bash\npip install numpy\npip install tinybrain\n```\n\n## Motivation\n\nImage hierarchy generation in connectomics uses a few different techniques for\nvisualizing data, but predominantly we create image pyramids of uint8 grayscale images using 2x2 average pooling and of uint8 to uint64 segmentation labels using 2x2 mode pooling. When images become very large and people wish to visualze upper mip levels using three axes at once, it becomes desirable to perform 2x2x2 downsamples to maintain isotropy.\n\nIt's possible to compute both of these using numpy, however as multiple packages found it useful to copy the downsample functions, it makes sense to formalize these functions into a seperate library located on PyPI.\n\nGiven the disparate circumstances that they will be used in, these functions should work \nfast as possible with low memory usage and avoid numerical issues such as integer truncation\nwhile generating multiple mip levels.\n\n## Considerations: downsample_with_averaging \n\nIt's advisable to generate multiple mip levels at once rather than recursively computing\nnew images as for integer type images, this leads to integer truncation issues. In the common\ncase of 2x2x1 downsampling, a recursively computed image would lose 0.75 brightness per a \nmip level. Therefore, take advantage of the `num_mips` argument which strikes a balance\nthat limits integer truncation loss to once every 4 mip levels. This compromise allows\nfor the use of integer arithmatic and no more memory usage than 2x the input image including\nthe output downsamples. If you seek to eliminate the loss beyond 4 mip levels, try promoting \nthe type before downsampling. 2x2x2x1 downsamples truncate every 8 mip levels.\n\nA C++ high performance path is triggered for 2x2x1x1 and 2x2x2x1 downsample factors on uint8, uint16, float32, \nand float64 data types in Fortran order. Other factors, data types, and orderings are computed using a numpy pathway that is much slower and more memory intensive.\n\nWe also include a sparse mode for downsampling 2x2x2 patches, which prevents \"ghosting\" where one z-slice overlaps a black region on the next slice and becomes semi-transparent after downsampling. We deal with this by neglecting the background pixels from the averaging operation. \n\n### Example Benchmark \n\nOn a 1024x1024x100 uint8 image I ran the following code. PIL and OpenCV are actually much faster than this benchmark shows because most of the time is spent writing to the numpy array. tinybrain has a large advantage working on 3D and 4D arrays. Of course, this is a very simple benchmark and it may be possible to tune each of these approaches. On single slices, Pillow was faster than tinybrain.\n\n```python\nimg = np.load(\"image.npy\")\n\ns = time.time()\ndownsample_with_averaging(img, (2,2,1))\nprint(\"Original \", time.time() - s)\n\ns = time.time()\nout = tinybrain.downsample_with_averaging(img, (2,2,1))\nprint(\"tinybrain \", time.time() - s)\n\ns = time.time()\nout = np.zeros(shape=(512,512,100))\nfor z in range(img.shape[2]):\n out[:,:,z] = cv2.resize(img[:,:,z], dsize=(512, 512) )\nprint(\"OpenCV \", time.time() - s)\n\ns = time.time()\nout = np.zeros(shape=(512,512,100))\nfor z in range(img.shape[2]):\n pilimg = Image.fromarray(img[:,:,z])\n out[:,:,z] = pilimg.resize( (512, 512) )\nprint(\"Pillow \", time.time() - s)\n\n# Method Run Time Rel. Perf.\n# Original 1820 ms +/- 3.73 ms 1.0x\n# tinybrain 67 ms +/- 0.40 ms 27.2x \n# OpenCV 469 ms +/- 1.12 ms 3.9x\n# Pillow 937 ms +/- 7.63 ms 1.9x\n```\n\nHere's the output from `perf.py` on an Apple Silicon 2021 Macbook Pro M1.\nNote that the image used was a random 2048x2048x64 array that was a uint8\nfor average pooling and a uint64 for mode pooling to represent real use cases more fairly. In the table, read it as 2D or 3D downsamples, generating a single or multiple mip levels, with sparse mode enabled or disabled. The speed values are in megavoxels per a second and are the mean of ten runs.\n\n\n| dwnsmpl | mips | sparse | AVG (MVx/sec) | MODE (MVx/sec) |\n|----------|---------|-----------|------------------|-------------------|\n| 2x2 | 1 | N | 3856.07 | 1057.87 |\n| 2x2 | 2 | N | 2685.80 | 1062.69 |\n| 2x2 | 1 | Y | N/A | 129.64 |\n| 2x2 | 2 | Y | N/A | 81.62 |\n| 2x2x2 | 1 | N | 4468.55 | 336.85 |\n| 2x2x2 | 2 | N | 2867.80 | 298.45 |\n| 2x2x2 | 1 | Y | 1389.47 | 337.87 |\n| 2x2x2 | 2 | Y | 1259.58 | 293.84 |\n\nAs the downsampling code's performance is data dependent due to branching, I also used [`connectomics.npy`](https://github.com/seung-lab/connected-components-3d/blob/master/benchmarks/connectomics.npy.gz) (5123 uint32 extended to uint64) to see how that affected performance. This data comes from mouse visual cortex and has many equal adjacent voxels. In this volume, the 2x2x2 non-sparse mode is much faster as the \"instant\" majority detection can skip examining half the voxels in many cases.\n\n| dwnsmpl | mips | sparse | MODE (MVx/sec) |\n|----------|---------|-----------|-------------------|\n| 2x2 | 1 | N | 1078.09 |\n| 2x2 | 2 | N | 1030.90 |\n| 2x2 | 1 | Y | 146.15 |\n| 2x2 | 2 | Y | 69.25 |\n| 2x2x2 | 1 | N | 1966.74 |\n| 2x2x2 | 2 | N | 1790.60 |\n| 2x2x2 | 1 | Y | 2041.96 |\n| 2x2x2 | 2 | Y | 1758.42 |\n\n\n## Considerations: downsample_segmentation \n\nThe `downsample_segmentation` function performs mode pooling operations provided the downsample factor is a power of two, including in three dimensions. If the factor is a non-power of two, striding is used. The mode pooling, which is usually what you want, is computed recursively. Mode pooling is superior to striding, but the recursive calculation can introduce defects at mip levels higher than 1. This may be improved in the future. \n\nThe way the calculation is actually done uses an ensemble of several different methods. For (2,2,1,1) and (2,2,2,1) downsamples, a Cython fast, low memory path is selected. (2,2,1,1) implements [*countless if*](https://towardsdatascience.com/countless-high-performance-2x-downsampling-of-labeled-images-using-python-and-numpy-e70ad3275589). (2,2,2,1) uses a combination of counting and \"instant\" majority detection. For (4,4,1) or other 2D powers of two, the [*countless 2d*](https://towardsdatascience.com/countless-high-performance-2x-downsampling-of-labeled-images-using-python-and-numpy-e70ad3275589) algorithm is used. For (4,4,4), (8,8,8) etc, the [*dynamic countless 3d*](https://towardsdatascience.com/countless-3d-vectorized-2x-downsampling-of-labeled-volume-images-using-python-and-numpy-59d686c2f75) algorithm is used. For 2D powers of two, [*stippled countless 2d*](https://medium.com/@willsilversmith/countless-2d-inflated-2x-downsampling-of-labeled-images-holding-zero-values-as-background-4d13a7675f2d) is used if the sparse flag is enabled. For all other configurations, striding is used. \n\nCountless 2d paths are also fast, but use slightly more memory and time. Countless 3D is okay for (2,2,2) and (4,4,4) but will use time and memory exponential in the product of dimensions. This state of affairs could be improved by implementing a counting based algorithm in Cython/C++ for arbitrary factors that doesn't compute recursively. The countless algorithms were developed before I knew how to write Cython and package libraries. However, C++ implementations of countless are much faster than counting for computing the first 2x2x1 mip level. In particular, an AVX2 SIMD implementation can saturate memory bandwidth. \n\nDocumentation for the countless algorithm family is located here: https://github.com/william-silversmith/countless\n\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/seung-lab/tinybrain/", "keywords": "", "license": "LICENSE", "maintainer": "", "maintainer_email": "", "name": "tinybrain", "package_url": "https://pypi.org/project/tinybrain/", "platform": "", "project_url": "https://pypi.org/project/tinybrain/", "project_urls": { "Homepage": "https://github.com/seung-lab/tinybrain/" }, "release_url": "https://pypi.org/project/tinybrain/1.3.0/", "requires_dist": [ "numpy" ], "requires_python": "~=3.7", "summary": "Image pyramid generation specialized for connectomics data types and procedures.", "version": "1.3.0", "yanked": false, "yanked_reason": null }, "last_serial": 13088146, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "269af3a4cb58405999b0e2e14ceaf67c", "sha256": "a04de7654f5c66347c7470dd2678e4b1da779f85fbbdb589939e32f91f700fd4" }, "downloads": -1, "filename": "tinybrain-0.0.1-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "269af3a4cb58405999b0e2e14ceaf67c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 807481, "upload_time": "2019-03-07T05:19:53", "upload_time_iso_8601": "2019-03-07T05:19:53.842766Z", "url": "https://files.pythonhosted.org/packages/71/f5/30cd0332096c5fb6caf68f80358d434193c2d23f389282466233c891b708/tinybrain-0.0.1-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d32d1d6d7fce95eba56993d9b37b538c", "sha256": "5d0c065dc5cef3c8957c14850d655baede4168c8455cba85efcc07b04dda5ac3" }, "downloads": -1, "filename": "tinybrain-0.0.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d32d1d6d7fce95eba56993d9b37b538c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 820884, "upload_time": "2019-03-07T05:19:55", "upload_time_iso_8601": "2019-03-07T05:19:55.834235Z", "url": "https://files.pythonhosted.org/packages/b2/4f/92b812cf7354637af9e30787222f9f7294491e0d50f86f1b689fc54e571e/tinybrain-0.0.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4b61f7054bcfa7d24776cb5f92dca1b8", "sha256": "230010a161db03d2ca32c560d7891b6a4dcf4fa5d6fd95957fded894174b7214" }, "downloads": -1, "filename": "tinybrain-0.0.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4b61f7054bcfa7d24776cb5f92dca1b8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 837805, "upload_time": "2019-03-07T05:19:57", "upload_time_iso_8601": "2019-03-07T05:19:57.559665Z", "url": "https://files.pythonhosted.org/packages/2e/48/3e6144cec836e41b5deb5153db92e82cdd1c7d2fea3590f7e4e0c6f158c3/tinybrain-0.0.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9e4e0d9169d344b50ef831fa0a08c59c", "sha256": "abd5e7ef35b8abd5f110e6064025740eac44a15f66d3b6133789c707694a952b" }, "downloads": -1, "filename": "tinybrain-0.0.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9e4e0d9169d344b50ef831fa0a08c59c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 836569, "upload_time": "2019-03-07T05:19:59", "upload_time_iso_8601": "2019-03-07T05:19:59.351326Z", "url": "https://files.pythonhosted.org/packages/17/16/690780bb0c66fcb127ae4b1eaa530eb6f9ade58b0d5f829bd39e05d8eb05/tinybrain-0.0.1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3eea4706997f52816443c2faaed6faa7", "sha256": "125196eff2445c7a5b37e57b299b779b2b0a1b4abd04f4ffa4f970a02ffbfa6e" }, "downloads": -1, "filename": "tinybrain-0.0.1.tar.gz", "has_sig": false, "md5_digest": "3eea4706997f52816443c2faaed6faa7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 218228, "upload_time": "2019-03-07T05:20:01", "upload_time_iso_8601": "2019-03-07T05:20:01.037747Z", "url": "https://files.pythonhosted.org/packages/20/ef/053f0350946f7ff35675d5369a2aa1591f39615bbcf3e85b6e31209025ac/tinybrain-0.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.1.dev7": [ { "comment_text": "", "digests": { "md5": "9e3992166ac465c0aa459499efc46bff", "sha256": "fa03247739542eb579836c2e353dcddd1e7b054f7fb19995bbac1bc4afc3f847" }, "downloads": -1, "filename": "tinybrain-0.0.1.dev7.tar.gz", "has_sig": false, "md5_digest": "9e3992166ac465c0aa459499efc46bff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 211855, "upload_time": "2019-03-06T05:36:20", "upload_time_iso_8601": "2019-03-06T05:36:20.049064Z", "url": "https://files.pythonhosted.org/packages/a6/d7/482d4ce032521870bf3c195b1fad37e1421be2772556ba8d1d0d1271ec1e/tinybrain-0.0.1.dev7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "24997a79329fe87060fff623b156fdc6", "sha256": "c1e37065b994c61a4daab5e8029d439e8cc0195228015cb8060a018bb67054ae" }, "downloads": -1, "filename": "tinybrain-0.1.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "24997a79329fe87060fff623b156fdc6", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 782029, "upload_time": "2019-03-09T00:39:37", "upload_time_iso_8601": "2019-03-09T00:39:37.134277Z", "url": "https://files.pythonhosted.org/packages/8b/7f/577d85f6362f5597d279ce029301b01374e1ce6c8180acd6d9e74b8dd161/tinybrain-0.1.0-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4c5fad7f5d4453ed49566906d197638a", "sha256": "8e32284f19a797d870860e75f447947bf61f44f338535eb78df10c49efd1fc14" }, "downloads": -1, "filename": "tinybrain-0.1.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4c5fad7f5d4453ed49566906d197638a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 795299, "upload_time": "2019-03-09T00:39:38", "upload_time_iso_8601": "2019-03-09T00:39:38.936560Z", "url": "https://files.pythonhosted.org/packages/bb/fc/a5e12308abda2afb07d10163c9572f41896172fcbd9ac7d7e0895d629f40/tinybrain-0.1.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "877feaf5ce69a15dcfbe638d40a42efd", "sha256": "61b1c4b4b9a2ba4f785ad79174c669be7f253b90e85d0740531696984e83c803" }, "downloads": -1, "filename": "tinybrain-0.1.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "877feaf5ce69a15dcfbe638d40a42efd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 808597, "upload_time": "2019-03-09T00:39:40", "upload_time_iso_8601": "2019-03-09T00:39:40.731244Z", "url": "https://files.pythonhosted.org/packages/35/00/5a39b9203ee9e8bdba3d502333b650501988c81588c843ffddf7012a0725/tinybrain-0.1.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50ec9ba4512c96eb0222f73f2fb1fb2a", "sha256": "3a24161cdfb837e1fef9e902f78b81f4262a053d575e9cf82a9ab1858814b3ac" }, "downloads": -1, "filename": "tinybrain-0.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "50ec9ba4512c96eb0222f73f2fb1fb2a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 367042, "upload_time": "2019-06-01T04:05:13", "upload_time_iso_8601": "2019-06-01T04:05:13.442161Z", "url": "https://files.pythonhosted.org/packages/ad/c7/bda99312c10082832c5bc96c78422738a25e1ba4ba638281f239e5efa000/tinybrain-0.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "554d062a0ffacccc5301a5f8c56b1e55", "sha256": "7afc856c5fc272353e55c7a6f5ebee9369a8f3b7a7a83f8d743a9a5ba4446392" }, "downloads": -1, "filename": "tinybrain-0.1.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "554d062a0ffacccc5301a5f8c56b1e55", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 807435, "upload_time": "2019-03-09T00:39:42", "upload_time_iso_8601": "2019-03-09T00:39:42.392302Z", "url": "https://files.pythonhosted.org/packages/6f/4b/271db698bb4e7d7b7a4d1cc83f6c5c2cc51de54fc0ca3b9fe30deb3db203/tinybrain-0.1.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b403fb01c1784b95c91228b12287de74", "sha256": "91a4dc14b40b3d606523e3f45aa37b712aa84e2bc5839708217bef5ce972b99a" }, "downloads": -1, "filename": "tinybrain-0.1.0.tar.gz", "has_sig": false, "md5_digest": "b403fb01c1784b95c91228b12287de74", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 215854, "upload_time": "2019-03-09T00:39:43", "upload_time_iso_8601": "2019-03-09T00:39:43.986522Z", "url": "https://files.pythonhosted.org/packages/d1/39/43a49368de6daefa4be139a9b7a04cadab1fe21922bf84537a2c85fa7d61/tinybrain-0.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "64cc2310e483c4c8aabacf0b5e0bb16d", "sha256": "c9bf38a74e44deb74f10836b370bedcb2141438e44832ec6e2902daaf1fda661" }, "downloads": -1, "filename": "tinybrain-0.1.1-cp27-cp27m-macosx_10_14_intel.whl", "has_sig": false, "md5_digest": "64cc2310e483c4c8aabacf0b5e0bb16d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 373452, "upload_time": "2019-07-25T04:40:29", "upload_time_iso_8601": "2019-07-25T04:40:29.801737Z", "url": "https://files.pythonhosted.org/packages/6c/9b/c64722d7f74330ec2a04357b5b677600c135bf34ca2c28475ce6c75d6c7a/tinybrain-0.1.1-cp27-cp27m-macosx_10_14_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b10966ec841535a0fddb199fbd0a1698", "sha256": "794d6f24883b2f271e72780aaea4ece1ef3b67502f88d27acdb3fbee2ab67369" }, "downloads": -1, "filename": "tinybrain-0.1.1-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b10966ec841535a0fddb199fbd0a1698", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 790344, "upload_time": "2019-06-11T00:25:02", "upload_time_iso_8601": "2019-06-11T00:25:02.552051Z", "url": "https://files.pythonhosted.org/packages/df/47/8c557dd124f63dd8f04dec5612a67e2025fccd4dbf5ce8289b2dd2a3152b/tinybrain-0.1.1-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "21469fdfd5777c2d8fafa9441959b5cf", "sha256": "bac2c98e09d153f452515166f8f31bdfaed883b3162e556404ca70f928823192" }, "downloads": -1, "filename": "tinybrain-0.1.1-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "21469fdfd5777c2d8fafa9441959b5cf", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 489056, "upload_time": "2019-07-25T04:44:10", "upload_time_iso_8601": "2019-07-25T04:44:10.268734Z", "url": "https://files.pythonhosted.org/packages/29/31/664ffc41b6ae38df1552a439f26fe927d29d110616458360f4c13e3230ff/tinybrain-0.1.1-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "45a09007321701778c8afd1352827d0e", "sha256": "f0e1709bb3aa37f047cc7c0b91525274c269b42e200a1b5e339c4dc706ea0bff" }, "downloads": -1, "filename": "tinybrain-0.1.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "45a09007321701778c8afd1352827d0e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 795208, "upload_time": "2019-06-11T00:25:04", "upload_time_iso_8601": "2019-06-11T00:25:04.643966Z", "url": "https://files.pythonhosted.org/packages/36/ab/ac35f50add8414e2c18e6ca9fa637001c9c090abb20996c0e1c6eac50241/tinybrain-0.1.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a90538b7213f4ec1fbd123a5ec0026a9", "sha256": "146d39b039c68e721443f02a7bc76cc57511957e74b033f8f83b95c2daa19dff" }, "downloads": -1, "filename": "tinybrain-0.1.1-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "a90538b7213f4ec1fbd123a5ec0026a9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 364848, "upload_time": "2019-07-25T04:39:16", "upload_time_iso_8601": "2019-07-25T04:39:16.698001Z", "url": "https://files.pythonhosted.org/packages/34/b6/beebc44815f9d0154005affc4c976f2d7c1b85c890f04116621e9d825b15/tinybrain-0.1.1-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1b63c72b2ff5f6087ce52b56282d34dd", "sha256": "6910e1b0ffd43150294fb5fba04e57a2bbb89bbb29fe298534542e9fc82e86e9" }, "downloads": -1, "filename": "tinybrain-0.1.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1b63c72b2ff5f6087ce52b56282d34dd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 804704, "upload_time": "2019-06-11T00:25:06", "upload_time_iso_8601": "2019-06-11T00:25:06.290784Z", "url": "https://files.pythonhosted.org/packages/6c/80/833213e15dc192ddc627d49cba34cc52569c45f283188af8e2865996866e/tinybrain-0.1.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "25f01805fa473bcc9679730e3195e861", "sha256": "f948c01b3a7b5f618cb42cda0911372701c171a71d4d9fcab5244dd65a83b610" }, "downloads": -1, "filename": "tinybrain-0.1.1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "25f01805fa473bcc9679730e3195e861", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 365151, "upload_time": "2019-07-25T04:37:58", "upload_time_iso_8601": "2019-07-25T04:37:58.600512Z", "url": "https://files.pythonhosted.org/packages/de/13/5f8c971ea244622264bb014caadf7138f06a4fe437f0b328677a48c8cb6c/tinybrain-0.1.1-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4de092b9146ecb54ebbcfdf752b9fbc2", "sha256": "f804c2af0e2c2c9cf08da1f25932bb3777cb0d5cce1355cd50f7a082783a08df" }, "downloads": -1, "filename": "tinybrain-0.1.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4de092b9146ecb54ebbcfdf752b9fbc2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 803723, "upload_time": "2019-06-11T00:25:08", "upload_time_iso_8601": "2019-06-11T00:25:08.040779Z", "url": "https://files.pythonhosted.org/packages/43/c8/2fd9cac3e9446fb7767a7618d42b322bb85239317f5b87c0f979292d6307/tinybrain-0.1.1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bf43b0079f5e1c98581edf97a0b40304", "sha256": "b7a48c927ad6a62096e4ec1a9c221c060c9a8cdae831253a6e3db7a23f8c44c4" }, "downloads": -1, "filename": "tinybrain-0.1.1-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "bf43b0079f5e1c98581edf97a0b40304", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 367093, "upload_time": "2019-10-23T18:34:24", "upload_time_iso_8601": "2019-10-23T18:34:24.653017Z", "url": "https://files.pythonhosted.org/packages/4f/e1/e91bfd6e3bf4b4929696cdec8b21c618c6977a5c1f729a53e44f37b30211/tinybrain-0.1.1-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3212903b721ca0bded4cd08cd943c6ee", "sha256": "3226b4ab9f45a0c180194b8de745dc997bf923e3f3fcf715313dbbb199927061" }, "downloads": -1, "filename": "tinybrain-0.1.1-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3212903b721ca0bded4cd08cd943c6ee", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 839035, "upload_time": "2019-10-23T18:36:54", "upload_time_iso_8601": "2019-10-23T18:36:54.655614Z", "url": "https://files.pythonhosted.org/packages/a4/93/4579d111f0ab885d6f8aa6c8b8d5d7dd03d2f8969d403c2ce3fcdec83159/tinybrain-0.1.1-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fa85545b5b235a7f5ce5d0aa7f6d3cc5", "sha256": "8b0a4136da940c650f72386e5c2b185ac1af31584dd86ef4a72150de120cbff7" }, "downloads": -1, "filename": "tinybrain-0.1.1.tar.gz", "has_sig": false, "md5_digest": "fa85545b5b235a7f5ce5d0aa7f6d3cc5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 217141, "upload_time": "2019-06-11T00:25:10", "upload_time_iso_8601": "2019-06-11T00:25:10.199946Z", "url": "https://files.pythonhosted.org/packages/62/83/4cc00ffee635915dfe8d78f789f24a894208d549456c434df2f92584f984/tinybrain-0.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "d64ec46cd89dfc3f80a6cbf7d92bc44a", "sha256": "a60b40a5b3d8096878987fad7fb79b7c72f14bfad2f3252ba58d1946d65652f6" }, "downloads": -1, "filename": "tinybrain-1.0.0-cp27-cp27m-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "d64ec46cd89dfc3f80a6cbf7d92bc44a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 551583, "upload_time": "2020-06-02T14:13:28", "upload_time_iso_8601": "2020-06-02T14:13:28.720268Z", "url": "https://files.pythonhosted.org/packages/62/fe/1564f8be2ba15de6714a713e427810d2c9ac0fcb372570e790037f0bbf37/tinybrain-1.0.0-cp27-cp27m-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "15521fa12fcb36007b2bce548a87bf36", "sha256": "815e8d4c3ef5ba837a8cdcbe2c6a59eb367cd34ad85987d133ffda3923aba7d9" }, "downloads": -1, "filename": "tinybrain-1.0.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "15521fa12fcb36007b2bce548a87bf36", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1263127, "upload_time": "2020-06-02T14:13:40", "upload_time_iso_8601": "2020-06-02T14:13:40.537055Z", "url": "https://files.pythonhosted.org/packages/09/a8/0bcbbcfe767d3e0d52646722d2a0774b884bc5105f946aefb584a0fad404/tinybrain-1.0.0-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "de4a2428fa187a0defae6a8ac5ecf3a8", "sha256": "2094a2e680d41c7f053738096337ce27cafb92061f9adc39714752f1c17ca1fa" }, "downloads": -1, "filename": "tinybrain-1.0.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "de4a2428fa187a0defae6a8ac5ecf3a8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1341013, "upload_time": "2020-06-02T14:13:51", "upload_time_iso_8601": "2020-06-02T14:13:51.936191Z", "url": "https://files.pythonhosted.org/packages/bf/6c/126851f12b512e116ee69689820ca01aa5e12138e93227e0955a9156074c/tinybrain-1.0.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9a4a9d8219547619c4f7d847d59351a7", "sha256": "3958397fb7dc52035761ecacf366232195910c24e9ab6d488b5bb7f6f9345bdc" }, "downloads": -1, "filename": "tinybrain-1.0.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "9a4a9d8219547619c4f7d847d59351a7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 565013, "upload_time": "2020-06-02T14:13:58", "upload_time_iso_8601": "2020-06-02T14:13:58.385420Z", "url": "https://files.pythonhosted.org/packages/05/25/e61f9f9c5911b8e254f76ac25bf9ac94a843ee2085e2179bbae49f194da7/tinybrain-1.0.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "504af4a5680ad7f4d1bc0bbbbd2eb6ea", "sha256": "dcb0d6d262eb30e28f2dacabe7b7b90ed7849015b23f90c43dbc3bf3ce2ca437" }, "downloads": -1, "filename": "tinybrain-1.0.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "504af4a5680ad7f4d1bc0bbbbd2eb6ea", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1431310, "upload_time": "2020-06-02T14:14:13", "upload_time_iso_8601": "2020-06-02T14:14:13.129889Z", "url": "https://files.pythonhosted.org/packages/22/23/447b2e8d14b7af544921189c3332814d69432deee5352ca4c0896db2ae42/tinybrain-1.0.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aa633574ad56647376095e651daf59fb", "sha256": "e6be8b5c989e0e23a01cb9802269ec9624e86003d49317919ccfb28dab115357" }, "downloads": -1, "filename": "tinybrain-1.0.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "aa633574ad56647376095e651daf59fb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 442662, "upload_time": "2020-06-02T14:14:17", "upload_time_iso_8601": "2020-06-02T14:14:17.922780Z", "url": "https://files.pythonhosted.org/packages/53/10/dfffdeaf224eb848b6ec963b51060e57353b1dab10ab83fc43b129df02c1/tinybrain-1.0.0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "878d5b901aee65930ab5e4f19f1b2bb7", "sha256": "a81c823335149629595109d962b07ad6bc07f00f28470e1262241d2996e94530" }, "downloads": -1, "filename": "tinybrain-1.0.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "878d5b901aee65930ab5e4f19f1b2bb7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 487475, "upload_time": "2020-06-02T14:18:47", "upload_time_iso_8601": "2020-06-02T14:18:47.406790Z", "url": "https://files.pythonhosted.org/packages/a4/93/fe4f579b1b024acfa5d6e40627ac9d517638105643eceed44c120ecfed43/tinybrain-1.0.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b1d916402dbfa9775138a25889fc2a0b", "sha256": "3223d7d18199446b46afc55ea8a30d1fef11061fe396cc39fc862c67955507be" }, "downloads": -1, "filename": "tinybrain-1.0.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "b1d916402dbfa9775138a25889fc2a0b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 565564, "upload_time": "2020-06-02T14:14:24", "upload_time_iso_8601": "2020-06-02T14:14:24.039124Z", "url": "https://files.pythonhosted.org/packages/26/bd/7ac6fb43b37cfb527e7dd9aa0fb0853bb2a9552bf4a7ff3a1f126060ae09/tinybrain-1.0.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ae34373606c2b6b289e75d1a21c1bde2", "sha256": "172b4cd5cbb962f6de03e636a4d7325043a58271e97498da6c8ac280108a75c6" }, "downloads": -1, "filename": "tinybrain-1.0.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ae34373606c2b6b289e75d1a21c1bde2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1426596, "upload_time": "2020-06-02T14:14:37", "upload_time_iso_8601": "2020-06-02T14:14:37.980209Z", "url": "https://files.pythonhosted.org/packages/3e/f0/f9334535fde1b6b7c07a41e3e7b448c4fa919f3a21392cbc062a42895141/tinybrain-1.0.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c7cc8c010d206591534636eff4a20d30", "sha256": "8969f7585a44d8f014f712cf6f09d7e17553d7b3db40f7f114a1a5a755751ca2" }, "downloads": -1, "filename": "tinybrain-1.0.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "c7cc8c010d206591534636eff4a20d30", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 442751, "upload_time": "2020-06-02T14:14:42", "upload_time_iso_8601": "2020-06-02T14:14:42.436430Z", "url": "https://files.pythonhosted.org/packages/32/90/d6326e1da8faffdb449bf5c93cbc71209d0c6cadc432dfe78fedab2e29ab/tinybrain-1.0.0-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a82a086bc0c62f7a0749f5ea7301fef5", "sha256": "ba791d18d5881d4d2e3c2378676cce4520ff25bd907ac7a029f87859e14e94f6" }, "downloads": -1, "filename": "tinybrain-1.0.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "a82a086bc0c62f7a0749f5ea7301fef5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 487693, "upload_time": "2020-06-02T14:18:53", "upload_time_iso_8601": "2020-06-02T14:18:53.654204Z", "url": "https://files.pythonhosted.org/packages/bc/06/90b99251867f0ff34b3dd2ad3919194e0cb268a9cf71869d11345001e928/tinybrain-1.0.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ff37791040b33738c7493e1da0b13fb", "sha256": "519518e5686d15e66622173ca5de409b78454b61420708ebb657f941255f869f" }, "downloads": -1, "filename": "tinybrain-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "3ff37791040b33738c7493e1da0b13fb", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 573748, "upload_time": "2020-06-02T14:14:49", "upload_time_iso_8601": "2020-06-02T14:14:49.882285Z", "url": "https://files.pythonhosted.org/packages/a0/48/805b827d705465a700c0f785e951d4b38a8e960ec29921c232b3052bb4c7/tinybrain-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "11443eda22bbf6a6aae1ab7c8567d31c", "sha256": "b94a51087fd36a5061ef78f2bcb2d9888a32042c3dce2858c7c90098589fa128" }, "downloads": -1, "filename": "tinybrain-1.0.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "11443eda22bbf6a6aae1ab7c8567d31c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 1462643, "upload_time": "2020-06-02T14:15:02", "upload_time_iso_8601": "2020-06-02T14:15:02.484016Z", "url": "https://files.pythonhosted.org/packages/e0/b6/b875b6c2d773da079d8a666c068fb4e5b7135ab1cef67f0ec9279f8edc9b/tinybrain-1.0.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7cc0fbc3aaf8caba8fd20cbf5be846a7", "sha256": "12e50d09df6a52bde9e7bf0cda51b0338024eb31ca59babeac4641ba2d94b1de" }, "downloads": -1, "filename": "tinybrain-1.0.0-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "7cc0fbc3aaf8caba8fd20cbf5be846a7", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 447205, "upload_time": "2020-06-02T14:15:07", "upload_time_iso_8601": "2020-06-02T14:15:07.352988Z", "url": "https://files.pythonhosted.org/packages/3d/c5/a09d0d76237002c9ac2244a0e5b612117e14fefe4672ec0d97a3cd0cc2ef/tinybrain-1.0.0-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0cb14e5ead321b01249dcf9af07eef08", "sha256": "d8c712d26fe489ed90181331dd7aef3828c545dfc5ea59af3c4ffd81d4b7fb3d" }, "downloads": -1, "filename": "tinybrain-1.0.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "0cb14e5ead321b01249dcf9af07eef08", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 497626, "upload_time": "2020-06-02T14:18:59", "upload_time_iso_8601": "2020-06-02T14:18:59.962179Z", "url": "https://files.pythonhosted.org/packages/29/b7/db6dd092027eef4c679ba2df3158403f4ab9364360a0d33be6212270a1c2/tinybrain-1.0.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "29100c7f293837c0ba07eb37b17be9c1", "sha256": "276f299b0fc97c8c60384b42908538ea94fae6737d60ecc2b828103f47aa015e" }, "downloads": -1, "filename": "tinybrain-1.0.0.tar.gz", "has_sig": false, "md5_digest": "29100c7f293837c0ba07eb37b17be9c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 287970, "upload_time": "2020-06-02T14:15:11", "upload_time_iso_8601": "2020-06-02T14:15:11.088849Z", "url": "https://files.pythonhosted.org/packages/52/9a/96790ecfb48e581e68efe34c684aa67dff3aa87551f71a5a465a370d62f8/tinybrain-1.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "39c4cc5cdfd2aa2fcf80143e8d2e4324", "sha256": "d8c60db45829af5134a19837a521ba2d7987fd4ad132269ac00e75bbd6838ca6" }, "downloads": -1, "filename": "tinybrain-1.1.0-cp27-cp27m-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "39c4cc5cdfd2aa2fcf80143e8d2e4324", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 553191, "upload_time": "2020-08-17T05:26:17", "upload_time_iso_8601": "2020-08-17T05:26:17.195277Z", "url": "https://files.pythonhosted.org/packages/fb/56/a8eded390edf5ef9a11916fcb25f70e7c46acbb57c943d392a6c9fbe6da3/tinybrain-1.1.0-cp27-cp27m-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0cea347d1d6b7297bd22ec7c2259be4a", "sha256": "e2a331523afa24526f93c9e48465e630211f7d150c24025ac9568548e488a6a2" }, "downloads": -1, "filename": "tinybrain-1.1.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0cea347d1d6b7297bd22ec7c2259be4a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1304410, "upload_time": "2020-08-17T05:26:18", "upload_time_iso_8601": "2020-08-17T05:26:18.774878Z", "url": "https://files.pythonhosted.org/packages/f8/09/9c4129fa3af82056215d917a77afdbf383fd497effe3dd0848a5fa658a22/tinybrain-1.1.0-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6299311c3c4a78a9ace10840068284ce", "sha256": "a6b2c1d228bc653855600d6370f0b26303d91ce14f97b0bdfcbd9304241aac8b" }, "downloads": -1, "filename": "tinybrain-1.1.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6299311c3c4a78a9ace10840068284ce", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1373991, "upload_time": "2020-08-17T05:26:20", "upload_time_iso_8601": "2020-08-17T05:26:20.253237Z", "url": "https://files.pythonhosted.org/packages/01/64/ae5f011f393b335573c275afcccaef2b7210a05a6d6e57fcf421a1e1aebb/tinybrain-1.1.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9112121889ae00b447287781f7689114", "sha256": "12ac73dfee6ae6843c09c9625b85d36166ef522c29c102bbf44e8772ab8c394d" }, "downloads": -1, "filename": "tinybrain-1.1.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "9112121889ae00b447287781f7689114", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 565994, "upload_time": "2020-08-17T05:26:22", "upload_time_iso_8601": "2020-08-17T05:26:22.333734Z", "url": "https://files.pythonhosted.org/packages/c9/cb/21455d646b9b748fb7f7659f24de2fc1cd06a08114d9ffd3142d063f58b7/tinybrain-1.1.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "12c1a52905805dd66243154d5ddce9ab", "sha256": "7d4abe7b1a8f52ff0a0c15991583443e119b17436b9e0deb4a7fa7376a2aefa1" }, "downloads": -1, "filename": "tinybrain-1.1.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "12c1a52905805dd66243154d5ddce9ab", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1439859, "upload_time": "2020-08-17T05:26:23", "upload_time_iso_8601": "2020-08-17T05:26:23.917313Z", "url": "https://files.pythonhosted.org/packages/67/87/7eca88028c42a8c0e54f4307b2d315f540994ac62b28023d7523513aa32b/tinybrain-1.1.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a779adc9c8d884acf21d4be82013d486", "sha256": "bacae9941ef2634763919ee31a0b8ddb1784d08086837b0749372353b6d571fa" }, "downloads": -1, "filename": "tinybrain-1.1.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "a779adc9c8d884acf21d4be82013d486", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 446873, "upload_time": "2020-08-17T05:34:54", "upload_time_iso_8601": "2020-08-17T05:34:54.191683Z", "url": "https://files.pythonhosted.org/packages/8f/85/97131a1c1fbea776188a15460b62cb4aa34b76fed2ac4f3b45608a14d061/tinybrain-1.1.0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dec67063aebb980d6a371b3891fb7320", "sha256": "8169c72644936cd6a648e833ae21249f9248b6c6afb90d6b74a02ddcb2beef70" }, "downloads": -1, "filename": "tinybrain-1.1.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "dec67063aebb980d6a371b3891fb7320", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 473745, "upload_time": "2020-08-17T05:34:55", "upload_time_iso_8601": "2020-08-17T05:34:55.660115Z", "url": "https://files.pythonhosted.org/packages/a9/6f/7d5a5006600f08fc17e369cdfc61d9d7307cb6ff9857f8405237a8325983/tinybrain-1.1.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5b8e531a12b8b23f6c80581f46413255", "sha256": "994e9a76c6b07bb3ab0089cdf73b588840a79514aebc3173d8349f63715f5756" }, "downloads": -1, "filename": "tinybrain-1.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "5b8e531a12b8b23f6c80581f46413255", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 566848, "upload_time": "2020-08-17T05:26:25", "upload_time_iso_8601": "2020-08-17T05:26:25.123030Z", "url": "https://files.pythonhosted.org/packages/12/c9/9e8af2468858980759de028d9c744b9fe3fc47682f7695b297206ea1926c/tinybrain-1.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fad65f9a34e5b27f3ff3bc22a6bff173", "sha256": "11d4cd3d1404f937657c6a01b16c27d2e8bbc87f708293299722f91be47278c4" }, "downloads": -1, "filename": "tinybrain-1.1.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fad65f9a34e5b27f3ff3bc22a6bff173", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1458415, "upload_time": "2020-08-17T05:26:26", "upload_time_iso_8601": "2020-08-17T05:26:26.674174Z", "url": "https://files.pythonhosted.org/packages/28/72/ad813ffa5bc1c11930f8f3ddfe5e9162d3a6e447cef3de48e342bf099963/tinybrain-1.1.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ab57ef0f5d354b22c78ddc721d20f7c", "sha256": "24bdb4caae1686def3bc10fde0c3d373de803072c997a1756abc1baf418dd3e2" }, "downloads": -1, "filename": "tinybrain-1.1.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "0ab57ef0f5d354b22c78ddc721d20f7c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 446906, "upload_time": "2020-08-17T05:34:57", "upload_time_iso_8601": "2020-08-17T05:34:57.221885Z", "url": "https://files.pythonhosted.org/packages/23/a5/0623c48d36a915cb3305f199d926772d5a60910b8e65e3f4e757c348e621/tinybrain-1.1.0-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5d483cf8a51b60a306bdd7098c923f91", "sha256": "6c766bf5ba5c0b0ba58179e230015b0d6483df579ea7a7bbcfc911a3f6c7372a" }, "downloads": -1, "filename": "tinybrain-1.1.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "5d483cf8a51b60a306bdd7098c923f91", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 473941, "upload_time": "2020-08-17T05:35:35", "upload_time_iso_8601": "2020-08-17T05:35:35.660870Z", "url": "https://files.pythonhosted.org/packages/79/81/a3357240c37f33d4fbcd43739ae309479740867e089c5a2256cc5cdd6c5b/tinybrain-1.1.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b3d6b69351f23bf790270eacb115666b", "sha256": "464f5b9ab43492d338a6804565fc9cf6a0b264e23a7d0a9c8086f94e3e8799fa" }, "downloads": -1, "filename": "tinybrain-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "b3d6b69351f23bf790270eacb115666b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 575293, "upload_time": "2020-08-17T05:26:28", "upload_time_iso_8601": "2020-08-17T05:26:28.232562Z", "url": "https://files.pythonhosted.org/packages/6f/40/21b92f1f177ae4fa9a64f67f5ae6fcad0f9f30ba9e32ce63edc0028a1b2b/tinybrain-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "da47da6c1b1d9496487356ed25f6e44b", "sha256": "b501f4fe5f364da81febc0f69d951c1b80c77304a504c0845ca9ddf1743e1b88" }, "downloads": -1, "filename": "tinybrain-1.1.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "da47da6c1b1d9496487356ed25f6e44b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 1636992, "upload_time": "2020-08-17T05:26:30", "upload_time_iso_8601": "2020-08-17T05:26:30.154371Z", "url": "https://files.pythonhosted.org/packages/3d/a9/3b96c6bac4e5fbeef6b90d928bd4319529b9f8bc4d6f2f47e438274b1d72/tinybrain-1.1.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "15a2bd558617bb437f918e2825477753", "sha256": "8784822b1f5bb880a5e12b414af079dd9062f2a045f897db4bde406ac6537bad" }, "downloads": -1, "filename": "tinybrain-1.1.0-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "15a2bd558617bb437f918e2825477753", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 452947, "upload_time": "2020-08-17T05:34:58", "upload_time_iso_8601": "2020-08-17T05:34:58.715796Z", "url": "https://files.pythonhosted.org/packages/20/7a/d1d762cb190e91cc36ab755c0f51b644436ae3afb016349d83d41e93c570/tinybrain-1.1.0-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0b038bf7c36febb64add272efef51ac2", "sha256": "c6099b4c8cca3cd340058d6db30fc2e047129bd8eb1323375bdb0fc4b10775a6" }, "downloads": -1, "filename": "tinybrain-1.1.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "0b038bf7c36febb64add272efef51ac2", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 487058, "upload_time": "2020-08-17T05:37:05", "upload_time_iso_8601": "2020-08-17T05:37:05.376144Z", "url": "https://files.pythonhosted.org/packages/2a/77/efe681f8b5ed9354ba773391699d8e417b91e34b26e091fcd20107ed22a3/tinybrain-1.1.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a39ebe6e4a67225b31796da7ac072890", "sha256": "4c3b561db376ac523635554b594bfcd86f01b46d1b07057e5cf288ad6ef64f35" }, "downloads": -1, "filename": "tinybrain-1.1.0.tar.gz", "has_sig": false, "md5_digest": "a39ebe6e4a67225b31796da7ac072890", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 296520, "upload_time": "2020-08-17T05:26:31", "upload_time_iso_8601": "2020-08-17T05:26:31.529427Z", "url": "https://files.pythonhosted.org/packages/c1/af/f084d1a01514d55d78172b38abeccc8d35502b03c5f58d4b23d0e3026cfc/tinybrain-1.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "477bb67a1ef88398f6da93eac5948172", "sha256": "8b8852bf3d7c2f3a4f21e2f13fcd08a3d0bf7b968dd4694a434481a518f51347" }, "downloads": -1, "filename": "tinybrain-1.2.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "477bb67a1ef88398f6da93eac5948172", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": "~=3.6", "size": 753376, "upload_time": "2021-01-21T00:46:31", "upload_time_iso_8601": "2021-01-21T00:46:31.713391Z", "url": "https://files.pythonhosted.org/packages/c5/01/bb5ac7e747fdde3b63f15cd06aa64cf9ecc3f193fbacdf94189fe54baf3c/tinybrain-1.2.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9e35df1ca66647560c85787b4b05c82e", "sha256": "5c9da9f7f70c935e6bd5a681442c716879f13b51302f5a2e136298fa6a4e83ec" }, "downloads": -1, "filename": "tinybrain-1.2.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9e35df1ca66647560c85787b4b05c82e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": "~=3.6", "size": 2150533, "upload_time": "2021-01-21T00:46:33", "upload_time_iso_8601": "2021-01-21T00:46:33.273442Z", "url": "https://files.pythonhosted.org/packages/64/4e/c1a6e6e0d4263aa7a9f9d542380004880d578b51832851465b455a536252/tinybrain-1.2.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0a8c0330e548b1a7dbed12c93dadf12d", "sha256": "a90b7e4ec6fb42870cd2af55570eb86860f3578108cfd0a17d866fd92508ec19" }, "downloads": -1, "filename": "tinybrain-1.2.0-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "0a8c0330e548b1a7dbed12c93dadf12d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": "~=3.6", "size": 2150535, "upload_time": "2021-01-21T00:46:34", "upload_time_iso_8601": "2021-01-21T00:46:34.891149Z", "url": "https://files.pythonhosted.org/packages/60/12/752039f99e0f1db347cd04901251d2321bd655b1a484d1705003ff3f3381/tinybrain-1.2.0-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "608eeec72cd389607536a2379b9da7de", "sha256": "7a75f7fe0011f4ea6e676cbbfb295bd745ec374107e49bb6969796340adac8fb" }, "downloads": -1, "filename": "tinybrain-1.2.0-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "608eeec72cd389607536a2379b9da7de", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": "~=3.6", "size": 2479439, "upload_time": "2021-01-21T00:46:36", "upload_time_iso_8601": "2021-01-21T00:46:36.225845Z", "url": "https://files.pythonhosted.org/packages/c9/45/b813a846b9257c431fc2a5fef83546fa307c4d69e9507ceed119d2c57fe9/tinybrain-1.2.0-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e6695ac4b27e80f5bd3e530e798a81ff", "sha256": "d74263643f3455aa79c3bc864c5e396e9e249faf60482628d62bb5d81a2143fc" }, "downloads": -1, "filename": "tinybrain-1.2.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "e6695ac4b27e80f5bd3e530e798a81ff", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": "~=3.6", "size": 588608, "upload_time": "2021-01-21T00:46:38", "upload_time_iso_8601": "2021-01-21T00:46:38.006189Z", "url": "https://files.pythonhosted.org/packages/5a/22/64e3c2ad3e8843f59af6f178a7c1dca27cab10fae25fe72e75b37fe58b12/tinybrain-1.2.0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7221e053c3fcad1f6acaada81719d99f", "sha256": "3ccb2f0052a81cc0294437437ad5365ca84af59c729b5a30af6862f6d117dc12" }, "downloads": -1, "filename": "tinybrain-1.2.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "7221e053c3fcad1f6acaada81719d99f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": "~=3.6", "size": 624617, "upload_time": "2021-01-21T00:46:39", "upload_time_iso_8601": "2021-01-21T00:46:39.362260Z", "url": "https://files.pythonhosted.org/packages/7e/ce/5da72ca6e6a0b1d9deacfba99f013d5070a96b756b4dc614e98260843cdc/tinybrain-1.2.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bfdd8bbae21882db93764a616279286e", "sha256": "8828b6e0f7278f985e95b0906d817d87de3e1e5dbc097c203fc46cc7a14e4110" }, "downloads": -1, "filename": "tinybrain-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "bfdd8bbae21882db93764a616279286e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.6", "size": 753962, "upload_time": "2021-01-21T00:46:40", "upload_time_iso_8601": "2021-01-21T00:46:40.385499Z", "url": "https://files.pythonhosted.org/packages/c3/a3/1621dd1ea4f2dfa3ec112e12f145a134d235d5607f0c352dcceff8bf4da2/tinybrain-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ee1a11b45a4a56e23d72a31948cc1b5", "sha256": "e66f4a6ba2e7380fea2b85d6d699fbb0fc2f5a532ae49a639869546f313b6aae" }, "downloads": -1, "filename": "tinybrain-1.2.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2ee1a11b45a4a56e23d72a31948cc1b5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.6", "size": 2142231, "upload_time": "2021-01-21T00:46:41", "upload_time_iso_8601": "2021-01-21T00:46:41.763070Z", "url": "https://files.pythonhosted.org/packages/8d/56/7745fd13235e7e52203bd3108962f0052eb431cfadc5cf29da0388250a68/tinybrain-1.2.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0f368b590a335362d83907f83e008cdf", "sha256": "12ace0a111b5ad9141656e7d1a0ea6f759458db9435082e289e9072280ed495c" }, "downloads": -1, "filename": "tinybrain-1.2.0-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "0f368b590a335362d83907f83e008cdf", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.6", "size": 2142234, "upload_time": "2021-01-21T00:46:43", "upload_time_iso_8601": "2021-01-21T00:46:43.371377Z", "url": "https://files.pythonhosted.org/packages/75/1f/d70a5447d22ffd7ccccb80090f4d4fe7e75e8b45ad11390e31173451ebb0/tinybrain-1.2.0-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "80dc46f880e22b86a5f8dfd91e1e1b49", "sha256": "48bf2249b27bebe3655f618afe4bd24747534c62327b866e02c4c7ffe482a9aa" }, "downloads": -1, "filename": "tinybrain-1.2.0-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "80dc46f880e22b86a5f8dfd91e1e1b49", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.6", "size": 2471688, "upload_time": "2021-01-21T00:46:45", "upload_time_iso_8601": "2021-01-21T00:46:45.376710Z", "url": "https://files.pythonhosted.org/packages/16/05/15d002316ffda132c081276bd1ec150c7a5c317be1fb2ecab2b5aa2f161d/tinybrain-1.2.0-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d1a199b169167ab89283783cbb3902f7", "sha256": "28ea8a0ff58ab5b705b64b2f612cc8c91dd8b4f2dd9133f629201a47448d9ea7" }, "downloads": -1, "filename": "tinybrain-1.2.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "d1a199b169167ab89283783cbb3902f7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.6", "size": 588562, "upload_time": "2021-01-21T00:46:46", "upload_time_iso_8601": "2021-01-21T00:46:46.910088Z", "url": "https://files.pythonhosted.org/packages/21/59/eceb5667abd0017e3381731d1dfd40ec89f06cdc3209ba795a9cecf70342/tinybrain-1.2.0-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7d17c9c0a220c705360247a311db79eb", "sha256": "5d0428373c35682cb49afac8402666b046121e19bb0b46cd27ca92d84455cbdf" }, "downloads": -1, "filename": "tinybrain-1.2.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "7d17c9c0a220c705360247a311db79eb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.6", "size": 624605, "upload_time": "2021-01-21T00:46:48", "upload_time_iso_8601": "2021-01-21T00:46:48.135640Z", "url": "https://files.pythonhosted.org/packages/f6/62/be4578b4cf4a7c8f80fd6521cc718e1cb9e9d314e0dd8821f83f4bcaa16c/tinybrain-1.2.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e74e70ec752a115fc2e0d191aef0a954", "sha256": "ba91d610ea2fede0b72a94a14045127fb81cc977ba90a8b57ec566ccbc877b74" }, "downloads": -1, "filename": "tinybrain-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e74e70ec752a115fc2e0d191aef0a954", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 767931, "upload_time": "2021-01-21T00:46:49", "upload_time_iso_8601": "2021-01-21T00:46:49.382723Z", "url": "https://files.pythonhosted.org/packages/9b/4d/22dd2fd2f75bca1c50d937c2e340227c6a36ecf60aa78e4be701dfa6f147/tinybrain-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "74ade250eaa0cdaf2fd184b9ae48a2af", "sha256": "e90c7645f8e2f1849312c7a7938fd07a0975e6ff235a844d052a0bb494941564" }, "downloads": -1, "filename": "tinybrain-1.2.0-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "74ade250eaa0cdaf2fd184b9ae48a2af", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 687676, "upload_time": "2021-01-21T00:47:10", "upload_time_iso_8601": "2021-01-21T00:47:10.674978Z", "url": "https://files.pythonhosted.org/packages/20/a0/d5165707b9a87e10813236017954e3590ddbab9476ebefdf699de485b247/tinybrain-1.2.0-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8a8adb77a491e70869f5b84a569f3e5a", "sha256": "bb31dedaeb23978d735462172722b6a5e765742e75f3bceecabd84b64436c759" }, "downloads": -1, "filename": "tinybrain-1.2.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8a8adb77a491e70869f5b84a569f3e5a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 2565656, "upload_time": "2021-01-21T00:46:50", "upload_time_iso_8601": "2021-01-21T00:46:50.813777Z", "url": "https://files.pythonhosted.org/packages/2c/a5/45b90c01d9a218dbded439f5ee840d07c9000d88861fcca7b0ea2c558dcd/tinybrain-1.2.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7b75c7300bc19bed156bc3fd4af49588", "sha256": "56cfb2f815427378e71997af67a8b91309cc2fd356304791be9c98a02b76d36a" }, "downloads": -1, "filename": "tinybrain-1.2.0-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "7b75c7300bc19bed156bc3fd4af49588", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 2565658, "upload_time": "2021-01-21T00:46:52", "upload_time_iso_8601": "2021-01-21T00:46:52.294995Z", "url": "https://files.pythonhosted.org/packages/48/c2/630f34c552d2b1e359356699f9a71b0cea30e69bbf90a2909024672e4b13/tinybrain-1.2.0-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "93d13d770e9376841c097e0fa7e7609b", "sha256": "f1a284a38eb9386e4cab8741fad2a299af388cd514cb19caff844518a9fad337" }, "downloads": -1, "filename": "tinybrain-1.2.0-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "93d13d770e9376841c097e0fa7e7609b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 2907698, "upload_time": "2021-01-21T00:46:53", "upload_time_iso_8601": "2021-01-21T00:46:53.586837Z", "url": "https://files.pythonhosted.org/packages/52/04/63538776c6d8716a042a583e83d064b20cb44b544ccdfeb07b8236763b05/tinybrain-1.2.0-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d08a13c19bdd54dcfcf98fe796c08386", "sha256": "236f4598e240c9ebc4263a9e6d21d8a983aaad0913b91a0754e20279036d2442" }, "downloads": -1, "filename": "tinybrain-1.2.0-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "d08a13c19bdd54dcfcf98fe796c08386", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 594071, "upload_time": "2021-01-21T00:46:54", "upload_time_iso_8601": "2021-01-21T00:46:54.902579Z", "url": "https://files.pythonhosted.org/packages/48/8b/b255dfcfc7343d157b8d4e4994fe40c7249f394a5420da75900062d976d5/tinybrain-1.2.0-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "15fe9f48d0b60de8b7397303d1746f7a", "sha256": "6a125bd66e0d13724bcd78022073494de5c0df8cd7a6748eb791a38c5abf92e0" }, "downloads": -1, "filename": "tinybrain-1.2.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "15fe9f48d0b60de8b7397303d1746f7a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 643923, "upload_time": "2021-01-21T00:46:56", "upload_time_iso_8601": "2021-01-21T00:46:56.432712Z", "url": "https://files.pythonhosted.org/packages/5a/bf/786f82d9f0f0b2b396d9878876928d65874996c4d429981d8ee914764ac3/tinybrain-1.2.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d7e6509d91e03de43ef2651d74116cba", "sha256": "653129ae250f4d4934ce19144af03fbd4c34fdc477b9d0b8e22c3d8bf61c3e9b" }, "downloads": -1, "filename": "tinybrain-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d7e6509d91e03de43ef2651d74116cba", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.6", "size": 777958, "upload_time": "2021-01-21T00:46:57", "upload_time_iso_8601": "2021-01-21T00:46:57.972631Z", "url": "https://files.pythonhosted.org/packages/79/96/dc4efc30cd5f6b91faa9dae08b04c19e9d2a3cc0ee1b51aacbc8f6776984/tinybrain-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1f80b1b99ce3e2eaf7655356f5de5fb2", "sha256": "778580ba4e1ca412b9e1922f61952a79d28c333e20bf5982dcff1a72f7afd141" }, "downloads": -1, "filename": "tinybrain-1.2.0-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "1f80b1b99ce3e2eaf7655356f5de5fb2", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.6", "size": 685508, "upload_time": "2021-01-21T02:31:24", "upload_time_iso_8601": "2021-01-21T02:31:24.710468Z", "url": "https://files.pythonhosted.org/packages/31/21/f2008572b2ad6680e986203a045d23b486e055e0bf701731fefe9d843677/tinybrain-1.2.0-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4ab8b554ebf4eee87556c0fce1242a02", "sha256": "b6348f724e634726a21244998a06e00f309ff76935757e4b5843d960592deba3" }, "downloads": -1, "filename": "tinybrain-1.2.0-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "4ab8b554ebf4eee87556c0fce1242a02", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.6", "size": 2733031, "upload_time": "2021-01-21T00:46:59", "upload_time_iso_8601": "2021-01-21T00:46:59.314987Z", "url": "https://files.pythonhosted.org/packages/d7/77/3f3b60d56eda0a3b4d1ec4c0775099d865e47bc23c73e18b77aaa792f2d2/tinybrain-1.2.0-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c999a44ad5747fd4d31a6eb6d6244a97", "sha256": "d75a7fd60c56d87cb6657e724874e97de321e8fec2c099ab5b8b2a421ef56f37" }, "downloads": -1, "filename": "tinybrain-1.2.0.tar.gz", "has_sig": false, "md5_digest": "c999a44ad5747fd4d31a6eb6d6244a97", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 382063, "upload_time": "2021-01-21T00:47:00", "upload_time_iso_8601": "2021-01-21T00:47:00.723182Z", "url": "https://files.pythonhosted.org/packages/42/0b/bc2f161630c0d63f8d6cfa2593bd24831f1aeffbcf16e2fa0ca564ff9d1d/tinybrain-1.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "4ee6c6df70dd65bd23804d3a0d0499e8", "sha256": "b959ce1ef2d3cf98d71f3c0684482df6a66f77d0fb2c0d8b38028d7739dd0447" }, "downloads": -1, "filename": "tinybrain-1.2.1-cp310-cp310-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "4ee6c6df70dd65bd23804d3a0d0499e8", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.6", "size": 1117261, "upload_time": "2021-10-26T22:59:22", "upload_time_iso_8601": "2021-10-26T22:59:22.051267Z", "url": "https://files.pythonhosted.org/packages/e7/6c/7877e9dd63cce7909e53f3201906011de93875ca50de33b5d139cd7e311a/tinybrain-1.2.1-cp310-cp310-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f492a52c08775130a5ac8ac6bf3de3df", "sha256": "6409038bda2aa565533cff3c0ec31683bb9e934c5c22b0d080955d1a8541f981" }, "downloads": -1, "filename": "tinybrain-1.2.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f492a52c08775130a5ac8ac6bf3de3df", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": "~=3.6", "size": 2138898, "upload_time": "2021-03-29T20:05:03", "upload_time_iso_8601": "2021-03-29T20:05:03.327554Z", "url": "https://files.pythonhosted.org/packages/34/bd/67a8f799ac899c0012fcc9d10645b2cb4f6dc640c49bb929427b40ef6cf2/tinybrain-1.2.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c35106ce079deb627d7049199b9de8b9", "sha256": "30d94f1990ea2b2b614c8345338f2295b0e54df7e73a64d194b68a1cc5dbf89c" }, "downloads": -1, "filename": "tinybrain-1.2.1-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "c35106ce079deb627d7049199b9de8b9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": "~=3.6", "size": 2138901, "upload_time": "2021-03-29T20:05:05", "upload_time_iso_8601": "2021-03-29T20:05:05.098337Z", "url": "https://files.pythonhosted.org/packages/cf/c2/bbaedc346cbfb2153fc210aff25981406e6e75a6420131d7a6c0d06109a8/tinybrain-1.2.1-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "78615a40e0745861f785bbf1c88fa62b", "sha256": "afee9817e5c5e94e2c9717c49a9e1ea9150a436533aca83816851fdf7b632dc1" }, "downloads": -1, "filename": "tinybrain-1.2.1-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "78615a40e0745861f785bbf1c88fa62b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": "~=3.6", "size": 2476032, "upload_time": "2021-03-29T20:05:06", "upload_time_iso_8601": "2021-03-29T20:05:06.875787Z", "url": "https://files.pythonhosted.org/packages/fc/dc/23febc8aec0a422f26e3dfb83b73212a8a110cde935d68ace19d0abab4f8/tinybrain-1.2.1-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f66cc0299bafb36928953dc3867c01a4", "sha256": "021a8d09f241b51034c53efa13f4c87e496bde029f1e330f995e6b76c9663952" }, "downloads": -1, "filename": "tinybrain-1.2.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "f66cc0299bafb36928953dc3867c01a4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": "~=3.6", "size": 589418, "upload_time": "2021-03-29T20:05:08", "upload_time_iso_8601": "2021-03-29T20:05:08.518872Z", "url": "https://files.pythonhosted.org/packages/25/60/30242761f6e264a47922483d7d6eaa68657af0a5680e60fe0750cdea6deb/tinybrain-1.2.1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5aa8b5c761b01aca7c9aa9231edb37a1", "sha256": "632af1c22b55c1c38561ca0fad28d2789cb2fdf69ee2c5af060c334ceac23cd2" }, "downloads": -1, "filename": "tinybrain-1.2.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "5aa8b5c761b01aca7c9aa9231edb37a1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": "~=3.6", "size": 625623, "upload_time": "2021-03-29T20:05:10", "upload_time_iso_8601": "2021-03-29T20:05:10.056416Z", "url": "https://files.pythonhosted.org/packages/ca/39/9b29e1c68f2835d8eb55108340e94e3c8906d30a33ec28b4027965359f7c/tinybrain-1.2.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "525ac097ef8893cb44f4681dab3291dd", "sha256": "ad2cad4b86d21057b02aa9c45618c917ae3d6527da3b29ab286a5406e0bd1514" }, "downloads": -1, "filename": "tinybrain-1.2.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "525ac097ef8893cb44f4681dab3291dd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.6", "size": 2139387, "upload_time": "2021-03-29T20:05:11", "upload_time_iso_8601": "2021-03-29T20:05:11.624029Z", "url": "https://files.pythonhosted.org/packages/36/e1/e0e7f96a6ec1646f34d77bd59333c3595c921f7a506380516b29ab5dbffb/tinybrain-1.2.1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4f323a5a406658976472c9666ce25895", "sha256": "d9515a16d5ceaab0d983032d09687ace8c6d5c5974cd69146553ca42166beb43" }, "downloads": -1, "filename": "tinybrain-1.2.1-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "4f323a5a406658976472c9666ce25895", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.6", "size": 2139391, "upload_time": "2021-03-29T20:05:13", "upload_time_iso_8601": "2021-03-29T20:05:13.172347Z", "url": "https://files.pythonhosted.org/packages/67/42/23fcf847364c0a36ac241a3322f1403f96f58117a9610ff4ba748299e292/tinybrain-1.2.1-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "69377686578973ccf0b23d1061761407", "sha256": "f58d936f318744bfc83cb6da314612e0741fe4c43eb68fd942a019af48ee2bf9" }, "downloads": -1, "filename": "tinybrain-1.2.1-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "69377686578973ccf0b23d1061761407", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.6", "size": 2482375, "upload_time": "2021-03-29T20:05:14", "upload_time_iso_8601": "2021-03-29T20:05:14.895599Z", "url": "https://files.pythonhosted.org/packages/2e/c3/8267de620d4acbb18d3819b58356e80aaa7bef9c1a5d428c7030de3d518e/tinybrain-1.2.1-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f31cdc4da90004caa627df49d76cb9be", "sha256": "0c2f70cfc9214fed87443663839e7e897c2963002048f5a3c1d78065c57b2134" }, "downloads": -1, "filename": "tinybrain-1.2.1-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "f31cdc4da90004caa627df49d76cb9be", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.6", "size": 589491, "upload_time": "2021-03-29T20:05:16", "upload_time_iso_8601": "2021-03-29T20:05:16.300031Z", "url": "https://files.pythonhosted.org/packages/0c/a8/b15cd41ff2adf7e5b228fd699511dc28809a3f953e5ec45e3af8d9e276ba/tinybrain-1.2.1-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b027e455d8c1ab5c4a866c00cfa49f0e", "sha256": "1f55acaff84cc8fb0d88acc416e3ac563d6ad8d807b70f66900287a7591e03a4" }, "downloads": -1, "filename": "tinybrain-1.2.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "b027e455d8c1ab5c4a866c00cfa49f0e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.6", "size": 625476, "upload_time": "2021-03-29T20:05:17", "upload_time_iso_8601": "2021-03-29T20:05:17.599295Z", "url": "https://files.pythonhosted.org/packages/37/84/999f9103ff50266ad4ab014fe440ba60d10d5af2c6ac181d8fc7bbe160fc/tinybrain-1.2.1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e4c7de6d0d1acb59d4c45283bd8024f0", "sha256": "2540284d9de6b05bf81cf18ad8dba8826d8b28cff703c71dfb7c62cef9ef6064" }, "downloads": -1, "filename": "tinybrain-1.2.1-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e4c7de6d0d1acb59d4c45283bd8024f0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 756147, "upload_time": "2021-03-29T20:05:18", "upload_time_iso_8601": "2021-03-29T20:05:18.891592Z", "url": "https://files.pythonhosted.org/packages/8a/18/dc40e1cf7963b8a27f3602a0f22c5bc1eb7448d03ffd58832f9f9634086e/tinybrain-1.2.1-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d23a902a4bc52eca99e939999f03963f", "sha256": "8ddb79e2aa38ca8b5361f89ae891fbcc019d619193b7fb3ccd8132b54c628eec" }, "downloads": -1, "filename": "tinybrain-1.2.1-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d23a902a4bc52eca99e939999f03963f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 2571313, "upload_time": "2021-03-29T20:05:20", "upload_time_iso_8601": "2021-03-29T20:05:20.282796Z", "url": "https://files.pythonhosted.org/packages/72/b7/0909c2f768404cb50d0789b4b8c926e02cfd8bfe96ec14f04dc247998ffd/tinybrain-1.2.1-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2fc71abe2b491077a9abca3e72b04f45", "sha256": "9b9578cf17f95ded62bb761fb2780608e1ec04a1865f74b8839293a5563adbc0" }, "downloads": -1, "filename": "tinybrain-1.2.1-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "2fc71abe2b491077a9abca3e72b04f45", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 2571318, "upload_time": "2021-03-29T20:05:21", "upload_time_iso_8601": "2021-03-29T20:05:21.849995Z", "url": "https://files.pythonhosted.org/packages/0b/dd/2c44d389481dcdbe55f2405cf5b8ad0997207f44e465f865bcffa5d7c75b/tinybrain-1.2.1-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "53ba723a62b789ddb50cfe2dc3196ad2", "sha256": "af86855b943ab583e700dae84ce86ab02f2751c56b05bce6e49c538d58476a10" }, "downloads": -1, "filename": "tinybrain-1.2.1-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "53ba723a62b789ddb50cfe2dc3196ad2", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 2912500, "upload_time": "2021-03-29T20:05:23", "upload_time_iso_8601": "2021-03-29T20:05:23.312648Z", "url": "https://files.pythonhosted.org/packages/2a/09/d107373210ba30294375d2f3485f7d6e399d7615352305b6ee9a17bc8c51/tinybrain-1.2.1-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d8f13bc319fa331927e1849dc00dc3ca", "sha256": "5e0f1c32e9524a28b8eb1d6b84b49ff11ad19f3bae617a0d66b3fe8367bf9309" }, "downloads": -1, "filename": "tinybrain-1.2.1-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "d8f13bc319fa331927e1849dc00dc3ca", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 594921, "upload_time": "2021-03-29T20:05:24", "upload_time_iso_8601": "2021-03-29T20:05:24.585222Z", "url": "https://files.pythonhosted.org/packages/72/03/9e5d0950277dd8f4e0497d2150fb5f578e805aa3ceff9b7ec47bcede7897/tinybrain-1.2.1-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0319c651360a1c5b23dd561e3eccb253", "sha256": "c061a4777c972e664338d2bfdf8f52739a2c1db2bd127a0c37d2202767d07318" }, "downloads": -1, "filename": "tinybrain-1.2.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "0319c651360a1c5b23dd561e3eccb253", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 644762, "upload_time": "2021-03-29T20:05:26", "upload_time_iso_8601": "2021-03-29T20:05:26.157770Z", "url": "https://files.pythonhosted.org/packages/39/61/386c477785c61e2beaa68216eee15a80d259cc9db3b696efd0110b4031ca/tinybrain-1.2.1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "276db3df7ec24415445f51d196feeb58", "sha256": "20723edc4b57ab0ee4f4e110035b94d97acfa4024326ddacab7b9e69cb8f2633" }, "downloads": -1, "filename": "tinybrain-1.2.1-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "276db3df7ec24415445f51d196feeb58", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.6", "size": 769696, "upload_time": "2021-03-29T20:05:27", "upload_time_iso_8601": "2021-03-29T20:05:27.356248Z", "url": "https://files.pythonhosted.org/packages/46/ea/596931dfd723606c16ffd0b33e62482f7cbbf0c2d2d06d45b8462a913251/tinybrain-1.2.1-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8d72d469e5206778801e1f0c5a3e4cdc", "sha256": "925452b54b85f88b3bd618d7b3f4c4bf31107247b2cec038a4b2c836961db806" }, "downloads": -1, "filename": "tinybrain-1.2.1-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "8d72d469e5206778801e1f0c5a3e4cdc", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.6", "size": 2726021, "upload_time": "2021-03-29T20:05:28", "upload_time_iso_8601": "2021-03-29T20:05:28.809574Z", "url": "https://files.pythonhosted.org/packages/c0/50/3b8e3cb958c129dff385c39dbc7565dfcbc03e2d75a6def6611fcbc89c74/tinybrain-1.2.1-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c695fef7dff873c77f62a12e6ff88d26", "sha256": "2fdf2e84c6cfbe8b1372731bc1dcd5f343e645edc15a3da1c05dd3b01a837764" }, "downloads": -1, "filename": "tinybrain-1.2.1.tar.gz", "has_sig": false, "md5_digest": "c695fef7dff873c77f62a12e6ff88d26", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 383132, "upload_time": "2021-03-29T20:05:30", "upload_time_iso_8601": "2021-03-29T20:05:30.219062Z", "url": "https://files.pythonhosted.org/packages/22/24/95a995bc8de908696d9e1d9f45c886592040ad66cb4cfa36bc2c1928b8b7/tinybrain-1.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "51602b821a9d1ca9fe680875860ee40b", "sha256": "34b159cb9e4ff680fcc8c16e7bf100d4235cfc7dd40156a79d5576691fd7b309" }, "downloads": -1, "filename": "tinybrain-1.2.2-cp310-cp310-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "51602b821a9d1ca9fe680875860ee40b", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.6", "size": 1117472, "upload_time": "2022-02-08T00:43:36", "upload_time_iso_8601": "2022-02-08T00:43:36.400480Z", "url": "https://files.pythonhosted.org/packages/cb/4d/841fe37464281aa755d6e8b62fb235669224c8ced09428b2fc34825820b3/tinybrain-1.2.2-cp310-cp310-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7fb74cc9445d547c2c894866f833a5f9", "sha256": "ba17610dc06a49673281ffdf4203bbf2cc0d8dddc771da6c70ec27f7dced1cd6" }, "downloads": -1, "filename": "tinybrain-1.2.2-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "7fb74cc9445d547c2c894866f833a5f9", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.6", "size": 795059, "upload_time": "2022-02-08T00:43:38", "upload_time_iso_8601": "2022-02-08T00:43:38.247820Z", "url": "https://files.pythonhosted.org/packages/31/21/9a5454fa0eb30bd0bb211751f7454fb2b1bb4ed9186c371d87626c2fdb76/tinybrain-1.2.2-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5a7bb9d0ec690ffb60a622ccc7e88783", "sha256": "fac1b8d530785cd20ee74ff0cf54a0488ee43526e47802c7e8379e1a01a8c049" }, "downloads": -1, "filename": "tinybrain-1.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "5a7bb9d0ec690ffb60a622ccc7e88783", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.6", "size": 2564482, "upload_time": "2022-02-08T00:43:39", "upload_time_iso_8601": "2022-02-08T00:43:39.861546Z", "url": "https://files.pythonhosted.org/packages/d4/67/f163b28724be5184516a67c528a0fb8149816d756af29daeac20948e1d19/tinybrain-1.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "628670669d7df2b64f402f726dc9e54e", "sha256": "8f2868d0bffa10f0f61094874be26d7b8c5109bfb423fedcca88114f13a3652a" }, "downloads": -1, "filename": "tinybrain-1.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "628670669d7df2b64f402f726dc9e54e", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.6", "size": 2626446, "upload_time": "2022-02-08T00:43:41", "upload_time_iso_8601": "2022-02-08T00:43:41.208776Z", "url": "https://files.pythonhosted.org/packages/82/2d/ed5a7995f030f3cb1eea20768e602dd21e1367aac40f306e4bff36dad658/tinybrain-1.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "59da979c4ddc2b07cb1f9ce878f3551f", "sha256": "4894989027e3c377f1a43847904582b41fc8e457f6807fb5042284741b584a28" }, "downloads": -1, "filename": "tinybrain-1.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "59da979c4ddc2b07cb1f9ce878f3551f", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.6", "size": 2504913, "upload_time": "2022-02-08T00:43:42", "upload_time_iso_8601": "2022-02-08T00:43:42.786116Z", "url": "https://files.pythonhosted.org/packages/2a/a4/ff8ad54d0469e708ca6f3f0a70379761ee762b988b76a9521f6d5cbcc8e3/tinybrain-1.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "11cca508447e3d816845050a64bfae4c", "sha256": "1becbc6bfc3d52c1e48c6c86ed2787845a6ccc4dc50edf69f39ba243c3bb9078" }, "downloads": -1, "filename": "tinybrain-1.2.2-cp310-cp310-win32.whl", "has_sig": false, "md5_digest": "11cca508447e3d816845050a64bfae4c", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.6", "size": 605224, "upload_time": "2022-02-08T00:43:44", "upload_time_iso_8601": "2022-02-08T00:43:44.058961Z", "url": "https://files.pythonhosted.org/packages/6d/c2/cee33e0a52645a3d8425c4e29e1dd40bc09585b26fc90af58d18a55efcd8/tinybrain-1.2.2-cp310-cp310-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6374430947a1d37f79740b25e536bef1", "sha256": "c4f9a80efce335a7b58388428224deb9fb44a2ec27308c1f4d737f058916528d" }, "downloads": -1, "filename": "tinybrain-1.2.2-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "6374430947a1d37f79740b25e536bef1", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.6", "size": 652598, "upload_time": "2022-02-08T00:43:45", "upload_time_iso_8601": "2022-02-08T00:43:45.233370Z", "url": "https://files.pythonhosted.org/packages/86/af/65c7bc0d8bcf17b0dc6cd37fd86477ffdafac76b3dda61a0b5f023ff9982/tinybrain-1.2.2-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "96cf24392048eadac58f89e19d51945a", "sha256": "c58a39b7c2341496cc61a1a799d6bafd3ab5f98e6db58e4c02c4711526c1f1f1" }, "downloads": -1, "filename": "tinybrain-1.2.2-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "96cf24392048eadac58f89e19d51945a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.6", "size": 773350, "upload_time": "2022-02-08T00:43:46", "upload_time_iso_8601": "2022-02-08T00:43:46.428903Z", "url": "https://files.pythonhosted.org/packages/1f/61/ae217960a15621134cb8486b6b28c54469d60337e08459ef327ea48f9f08/tinybrain-1.2.2-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "03e8dea8a42bf181a4f4fbf03874caab", "sha256": "9bf7473eb7bc144918d6b6a6a2b69441bebb79d77d2829a131188a8dff362ae5" }, "downloads": -1, "filename": "tinybrain-1.2.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "03e8dea8a42bf181a4f4fbf03874caab", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.6", "size": 2383384, "upload_time": "2022-02-08T00:43:48", "upload_time_iso_8601": "2022-02-08T00:43:48.588882Z", "url": "https://files.pythonhosted.org/packages/0c/71/938175e64c7a42ef2a43999ab61d50dcbc1a0b584076c9e84a0644fdcf2d/tinybrain-1.2.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "afc40eb001db00d2537353dc11a60d3b", "sha256": "0068baf5528760fd89be20808afe577ce0368ae8fe88ce585c6635fddd7970f4" }, "downloads": -1, "filename": "tinybrain-1.2.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "afc40eb001db00d2537353dc11a60d3b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.6", "size": 2433448, "upload_time": "2022-02-08T00:43:50", "upload_time_iso_8601": "2022-02-08T00:43:50.873626Z", "url": "https://files.pythonhosted.org/packages/5c/87/68b36f7f4f1e23a0d41d44cbf1c2e015a929dbbdda1953f24940cdbd460f/tinybrain-1.2.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e2fb9d4370398bf4a8bf3121187dcff1", "sha256": "6a148583d9a1db5ad2d1cb28ba85cbc77c6489b07e40a677dfc9b51ef61fd2b8" }, "downloads": -1, "filename": "tinybrain-1.2.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "e2fb9d4370398bf4a8bf3121187dcff1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.6", "size": 2293636, "upload_time": "2022-02-08T00:43:52", "upload_time_iso_8601": "2022-02-08T00:43:52.878259Z", "url": "https://files.pythonhosted.org/packages/e6/75/c12a4e41ed5fbc6df7f02734475563db9ff0f75fde8327f2655962dd7c5b/tinybrain-1.2.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5aa0dd6fcb2a2548d2a72bb319eace56", "sha256": "300842011ab31484fdd50d3540512c80e550f85d49a60fd1a751dbad71a6bfb6" }, "downloads": -1, "filename": "tinybrain-1.2.2-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "5aa0dd6fcb2a2548d2a72bb319eace56", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.6", "size": 600166, "upload_time": "2022-02-08T00:43:54", "upload_time_iso_8601": "2022-02-08T00:43:54.499134Z", "url": "https://files.pythonhosted.org/packages/47/00/eaaf7669026dd58108fcb74e2680dbfc61ac82f3bd6d8d2b832b2613e257/tinybrain-1.2.2-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1012332de9c2573ab3bd54de4f0e0446", "sha256": "4b5556084ea0f6ce7f45780007b1056abb6a930434d366b2ad618fd289d4aea6" }, "downloads": -1, "filename": "tinybrain-1.2.2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "1012332de9c2573ab3bd54de4f0e0446", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.6", "size": 638067, "upload_time": "2022-02-08T00:43:55", "upload_time_iso_8601": "2022-02-08T00:43:55.635975Z", "url": "https://files.pythonhosted.org/packages/4f/10/e0e1bbec200ea0f142edf2667aafe675065ac9dcfe75d486a2417b622398/tinybrain-1.2.2-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4dc68ca5faf50c3bd51da41becc7ff4e", "sha256": "4771e9e9188e40dc8cab064d2d23d95ec936d76f5f7b57e2a922624ded6e365a" }, "downloads": -1, "filename": "tinybrain-1.2.2-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4dc68ca5faf50c3bd51da41becc7ff4e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 784689, "upload_time": "2022-02-08T00:43:57", "upload_time_iso_8601": "2022-02-08T00:43:57.076427Z", "url": "https://files.pythonhosted.org/packages/a1/aa/c800dd7bd05eb5234885fc4b57499a34029974df0a83ac5ec57348312e8b/tinybrain-1.2.2-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0308600e6abf5e9716bb2c8ecfde4c86", "sha256": "882a721a6e92133fb32186be1e97a3ad5aa07ace5fe51dd1214cd4cb3acc74ed" }, "downloads": -1, "filename": "tinybrain-1.2.2-cp38-cp38-macosx_11_0_universal2.whl", "has_sig": false, "md5_digest": "0308600e6abf5e9716bb2c8ecfde4c86", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 1104834, "upload_time": "2022-02-08T00:43:58", "upload_time_iso_8601": "2022-02-08T00:43:58.304009Z", "url": "https://files.pythonhosted.org/packages/8a/0b/8cb006e4d066be200c01f4c50002a119e7c009fd5d2b3a66ebf54b185d21/tinybrain-1.2.2-cp38-cp38-macosx_11_0_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "92c37cba0e4c0eb848e66b8f18c2133e", "sha256": "56cc7f09468f5298984b995357fc8c23850a1b0e1295c452003536279864dbde" }, "downloads": -1, "filename": "tinybrain-1.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "92c37cba0e4c0eb848e66b8f18c2133e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 2640977, "upload_time": "2022-02-08T00:43:59", "upload_time_iso_8601": "2022-02-08T00:43:59.996115Z", "url": "https://files.pythonhosted.org/packages/5b/f3/000c6594043f5c4bcbeb10ac09bce735a8459d140178936a250a52d3bab0/tinybrain-1.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a4eb968b80c2f7567fd6d3983333429e", "sha256": "7437bac7e4b1e32375e236e42d22d8e1df7f8015f4990a31752949d879442887" }, "downloads": -1, "filename": "tinybrain-1.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "a4eb968b80c2f7567fd6d3983333429e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 2709649, "upload_time": "2022-02-08T00:44:02", "upload_time_iso_8601": "2022-02-08T00:44:02.196315Z", "url": "https://files.pythonhosted.org/packages/de/34/1eb7531494e30531b7273e482f09d883a3a2b66a92e7576b39f2315b6719/tinybrain-1.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eb37968e9e6302d7cd566a88d11f4be8", "sha256": "452d8e3457bbbb39d70f2d9550f11e8dea9c73abc7cc5712afd3765eed388d47" }, "downloads": -1, "filename": "tinybrain-1.2.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "eb37968e9e6302d7cd566a88d11f4be8", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 2589103, "upload_time": "2022-02-08T00:44:03", "upload_time_iso_8601": "2022-02-08T00:44:03.878586Z", "url": "https://files.pythonhosted.org/packages/7c/dc/4d1624df029a1745775014685f9a0f364650cec9c2693431c1e37f3bd584/tinybrain-1.2.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4e8f0bc2c14317e36483ad2d642c9275", "sha256": "b96974926679b9aab7368f519a410e73acf41195101bc05a6d1595d3b1c4d0a7" }, "downloads": -1, "filename": "tinybrain-1.2.2-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "4e8f0bc2c14317e36483ad2d642c9275", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 603502, "upload_time": "2022-02-08T00:44:05", "upload_time_iso_8601": "2022-02-08T00:44:05.384611Z", "url": "https://files.pythonhosted.org/packages/be/ba/a395a4f01e2642d1fbf9ac645806d835568592eaa8597d61dd46b68c4e54/tinybrain-1.2.2-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a58b21b97c15bb869ca161439034261c", "sha256": "b43a47f5365dc1e69d3b7df1b2182bae374d089baf1929e70c5cdc1cbaff7c84" }, "downloads": -1, "filename": "tinybrain-1.2.2-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "a58b21b97c15bb869ca161439034261c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 652168, "upload_time": "2022-02-08T00:44:06", "upload_time_iso_8601": "2022-02-08T00:44:06.952191Z", "url": "https://files.pythonhosted.org/packages/b9/a7/269233e11fed751105ee74186fb05d8025c0d7c65eae7201f58badd44bf7/tinybrain-1.2.2-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "336608b734ae9a14e77b8d2bdf04e5ce", "sha256": "282d4d5bb3eac3b35be55813cd7ae790173af66e3802461a5e4d65333c1f5f59" }, "downloads": -1, "filename": "tinybrain-1.2.2-cp39-cp39-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "336608b734ae9a14e77b8d2bdf04e5ce", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.6", "size": 1117470, "upload_time": "2022-02-08T00:44:08", "upload_time_iso_8601": "2022-02-08T00:44:08.157273Z", "url": "https://files.pythonhosted.org/packages/ca/e9/041eb3c92609b5d92b67ee7ebe8de27a6ad451abe79342aa9adf1455735e/tinybrain-1.2.2-cp39-cp39-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50c92976295536a7dad9e0cb52c893f7", "sha256": "dadffa04ba489c2336f7c57a5de4b36d5397d0b950f2b66c57ae7595ecb596df" }, "downloads": -1, "filename": "tinybrain-1.2.2-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "50c92976295536a7dad9e0cb52c893f7", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.6", "size": 795063, "upload_time": "2022-02-08T00:44:09", "upload_time_iso_8601": "2022-02-08T00:44:09.466466Z", "url": "https://files.pythonhosted.org/packages/2d/8d/7719f3f5286a90102b0a6ebfb453f80999f2bb32aeebac321d23d584c7a7/tinybrain-1.2.2-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f78187591845bc636ef2ee525bd38961", "sha256": "6c1b923cad0308b116794912bb19dcfeda00dd9132f1f66d9f3e49c764b366cd" }, "downloads": -1, "filename": "tinybrain-1.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "f78187591845bc636ef2ee525bd38961", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.6", "size": 2571715, "upload_time": "2022-02-08T00:44:11", "upload_time_iso_8601": "2022-02-08T00:44:11.233762Z", "url": "https://files.pythonhosted.org/packages/19/f7/a0699e08023c9e3bd9818f9ffdebba82baacb0d57d4899ac57067a7b75ec/tinybrain-1.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e1a0f6b41c148a2ed6c8f1e78200ad43", "sha256": "01637c83d4e37b4036eb0d63a94a413008ae567f81bc380757829fe24baea29c" }, "downloads": -1, "filename": "tinybrain-1.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "e1a0f6b41c148a2ed6c8f1e78200ad43", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.6", "size": 2629550, "upload_time": "2022-02-08T00:44:12", "upload_time_iso_8601": "2022-02-08T00:44:12.753045Z", "url": "https://files.pythonhosted.org/packages/2b/a1/d299a11ba4ed1840d2677f4ad9b19fa583aa4445c679a32597f7d25e6487/tinybrain-1.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7c7bfd53632b40bb16c20416b2ff0938", "sha256": "e646f5f997c76335ef83796f07b9c6a82a28d4c222b6008edaa2fc1b46a8a437" }, "downloads": -1, "filename": "tinybrain-1.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "7c7bfd53632b40bb16c20416b2ff0938", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.6", "size": 2507900, "upload_time": "2022-02-08T00:44:14", "upload_time_iso_8601": "2022-02-08T00:44:14.423617Z", "url": "https://files.pythonhosted.org/packages/71/f1/38b7bba1290bcecc5c452fd5760ff752c06ce4f50a20192588bc71d3ec30/tinybrain-1.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bd1d06e14e13c11c97530dd287c33f7d", "sha256": "2547d635d5a63ef602008ba858a8c3b3de0061f512a49a5a5ad2ebe47a52c83a" }, "downloads": -1, "filename": "tinybrain-1.2.2-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "bd1d06e14e13c11c97530dd287c33f7d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.6", "size": 605286, "upload_time": "2022-02-08T00:44:15", "upload_time_iso_8601": "2022-02-08T00:44:15.811919Z", "url": "https://files.pythonhosted.org/packages/ac/d4/86e68b478104e3d1e90d805208d08d0471728fb9287fbf40d2f8bb42fcc8/tinybrain-1.2.2-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4f6ec9240049c996e125f67d81eafa2c", "sha256": "d7739b295368cf4b6bb56dc52da17f140e0a70eed6396248c6d7fef8f56cbc8b" }, "downloads": -1, "filename": "tinybrain-1.2.2-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "4f6ec9240049c996e125f67d81eafa2c", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.6", "size": 652602, "upload_time": "2022-02-08T00:44:17", "upload_time_iso_8601": "2022-02-08T00:44:17.556361Z", "url": "https://files.pythonhosted.org/packages/b7/6e/14224e6f48f1b08426290ab6fbb6fdff72099f39645a2952707ded81011c/tinybrain-1.2.2-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6d82c6f5ac58363eb694228cea5b66a4", "sha256": "4100957992e902380cbe2fd7bf9963e9fbf75b46dc14137797caad8d13e4359d" }, "downloads": -1, "filename": "tinybrain-1.2.2.tar.gz", "has_sig": false, "md5_digest": "6d82c6f5ac58363eb694228cea5b66a4", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 382931, "upload_time": "2022-02-08T00:44:18", "upload_time_iso_8601": "2022-02-08T00:44:18.958731Z", "url": "https://files.pythonhosted.org/packages/aa/e9/bd609eefb5d24ff4e3e56af26824b8af2ec005dae13fdf84617f14316a0f/tinybrain-1.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "d9ca30af6034ea4ddc9986c845d9d2fa", "sha256": "1bab0c2f29122f24c15cf10eddbf565e792a7bd36e7e91ee76c658e3fe9a7506" }, "downloads": -1, "filename": "tinybrain-1.2.3-cp310-cp310-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "d9ca30af6034ea4ddc9986c845d9d2fa", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.6", "size": 1117948, "upload_time": "2022-03-04T06:32:51", "upload_time_iso_8601": "2022-03-04T06:32:51.814765Z", "url": "https://files.pythonhosted.org/packages/4b/27/09e5d099d427469f63704fd9af84d38fd7ed4fe60faaa6bb589115135a67/tinybrain-1.2.3-cp310-cp310-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0f4c2c7b0727a6066840c556a198fb26", "sha256": "8b08b783d153f6fbeec44a11c54bc999126b33dfc3272d7c125808ea9583256c" }, "downloads": -1, "filename": "tinybrain-1.2.3-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "0f4c2c7b0727a6066840c556a198fb26", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.6", "size": 795519, "upload_time": "2022-03-04T06:32:53", "upload_time_iso_8601": "2022-03-04T06:32:53.366038Z", "url": "https://files.pythonhosted.org/packages/f9/1b/e0021cc309140a94968883cafa2adfbea112197fe16437c64c34f36a442d/tinybrain-1.2.3-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f3fe65d4c797401aab4023dc5f891edf", "sha256": "e6631e682e382f51a792db0a1bc6c7f5f715434ad3404b59145cc9fbbe758f60" }, "downloads": -1, "filename": "tinybrain-1.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "f3fe65d4c797401aab4023dc5f891edf", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.6", "size": 2564939, "upload_time": "2022-03-04T06:32:54", "upload_time_iso_8601": "2022-03-04T06:32:54.915181Z", "url": "https://files.pythonhosted.org/packages/da/34/9137a62650bef9d57044f95fe882069059f8b640de38f341c81f8f8f41c7/tinybrain-1.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6e8862009228d225a6bf8cbcd10c2e6c", "sha256": "a24d0354e4dec7b8666e3018c225a19a32ae9b5cee4252e4e6b703158754be11" }, "downloads": -1, "filename": "tinybrain-1.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "6e8862009228d225a6bf8cbcd10c2e6c", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.6", "size": 2626904, "upload_time": "2022-03-04T06:32:56", "upload_time_iso_8601": "2022-03-04T06:32:56.920291Z", "url": "https://files.pythonhosted.org/packages/bf/84/9546da3decbb9a5f473c9205727a056ef831d7446b4f06426a2f1a2bc810/tinybrain-1.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c3b66ccb8f670ba8b56d129fe861ecf3", "sha256": "ad4ffc26adac2e4310c101c94da0f5cc020d435ee7d62ac7da88bf480dc463ff" }, "downloads": -1, "filename": "tinybrain-1.2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "c3b66ccb8f670ba8b56d129fe861ecf3", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.6", "size": 2505376, "upload_time": "2022-03-04T06:32:58", "upload_time_iso_8601": "2022-03-04T06:32:58.686639Z", "url": "https://files.pythonhosted.org/packages/11/b8/d18daf2d26d22d9a90f1bf273e6cfe799e8e309040c457c91e93417168fa/tinybrain-1.2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b2c268be8871e193df229abd8cd9e9ac", "sha256": "7bbb61f5e556d711d407b2ccc3468440a33377cdf79caa2313916ead28d97787" }, "downloads": -1, "filename": "tinybrain-1.2.3-cp310-cp310-win32.whl", "has_sig": false, "md5_digest": "b2c268be8871e193df229abd8cd9e9ac", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.6", "size": 605688, "upload_time": "2022-03-04T06:33:00", "upload_time_iso_8601": "2022-03-04T06:33:00.370699Z", "url": "https://files.pythonhosted.org/packages/95/23/56fd7978cd271761486f48403c2a6c81e15cb1ef45fefe800067f3440f90/tinybrain-1.2.3-cp310-cp310-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "302d6c3f032718a560f4142739aa9ec7", "sha256": "7cfaafc61359f77f839e0538cdc773403593f4514fbc6e5b70c9b2c898d92653" }, "downloads": -1, "filename": "tinybrain-1.2.3-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "302d6c3f032718a560f4142739aa9ec7", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.6", "size": 653066, "upload_time": "2022-03-04T06:33:01", "upload_time_iso_8601": "2022-03-04T06:33:01.598485Z", "url": "https://files.pythonhosted.org/packages/b0/29/e6c5240b2fdc2666044ce79fd7fe95efb83988af9866aa88c7c43a3282ab/tinybrain-1.2.3-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "948555addd0d912bf8d6e88afa2671c5", "sha256": "f759a35485e38d80954401082743f7b08d4f03e10e01ac5acdfb84dfbce33232" }, "downloads": -1, "filename": "tinybrain-1.2.3-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "948555addd0d912bf8d6e88afa2671c5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.6", "size": 773812, "upload_time": "2022-03-04T06:33:03", "upload_time_iso_8601": "2022-03-04T06:33:03.872890Z", "url": "https://files.pythonhosted.org/packages/d8/0a/1017cd952e4dfa7dbc6fa80db6390ef74cf0e6d61626ac3a6bb90aad8f29/tinybrain-1.2.3-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "15023e291054d7970559d169ffd8d38d", "sha256": "8b0932a83b56eabbd93a271effceb3203b3b31b5db7f880db846411ab2aecfd2" }, "downloads": -1, "filename": "tinybrain-1.2.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "15023e291054d7970559d169ffd8d38d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.6", "size": 2383841, "upload_time": "2022-03-04T06:33:05", "upload_time_iso_8601": "2022-03-04T06:33:05.937283Z", "url": "https://files.pythonhosted.org/packages/c3/a4/1a33b2db53897423082041764aaab532bca40afea079668cf5dbfcbc8fc5/tinybrain-1.2.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "05c948ecc0166594335fc607ce0e85b8", "sha256": "33d3b77bef74913b90c7f1ec71b6242f385a9b5133ccaeb97d2a0a1efc3fa025" }, "downloads": -1, "filename": "tinybrain-1.2.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "05c948ecc0166594335fc607ce0e85b8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.6", "size": 2433904, "upload_time": "2022-03-04T06:33:08", "upload_time_iso_8601": "2022-03-04T06:33:08.023466Z", "url": "https://files.pythonhosted.org/packages/27/0a/a3ee6189cca3688f7a4bb5517dff92bf581bd2ae9ddb75d2d24233222ffe/tinybrain-1.2.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b5919da977d42afa44617e81fedd18ca", "sha256": "0ee12728943486b1e16eb01e7826fd5e27e02ec459bee06fa5b477ffb121527b" }, "downloads": -1, "filename": "tinybrain-1.2.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "b5919da977d42afa44617e81fedd18ca", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.6", "size": 2294096, "upload_time": "2022-03-04T06:33:09", "upload_time_iso_8601": "2022-03-04T06:33:09.882172Z", "url": "https://files.pythonhosted.org/packages/16/fe/5ed8722f5928b7224f1df2a4e2869715c2b98f551b26441356f8978058e1/tinybrain-1.2.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "26515f7c4924dc6f61fa11322b01826a", "sha256": "1db467c1c9cfda360def52e6b3123451b43ef1d3ef3c977fef98f59d0833c726" }, "downloads": -1, "filename": "tinybrain-1.2.3-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "26515f7c4924dc6f61fa11322b01826a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.6", "size": 600632, "upload_time": "2022-03-04T06:33:11", "upload_time_iso_8601": "2022-03-04T06:33:11.648458Z", "url": "https://files.pythonhosted.org/packages/2e/60/56558c0368a299c668ca103e3e20e8d9ae9a8b1ab5d4e5d96eaef8460624/tinybrain-1.2.3-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b5379710aa3e7defc324b98407bd16b8", "sha256": "2d2571ac6268aa1634e14bdab80c6b7daa0009c636d548f7083067ada811dd21" }, "downloads": -1, "filename": "tinybrain-1.2.3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "b5379710aa3e7defc324b98407bd16b8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.6", "size": 638534, "upload_time": "2022-03-04T06:33:13", "upload_time_iso_8601": "2022-03-04T06:33:13.586221Z", "url": "https://files.pythonhosted.org/packages/5f/2e/97e7288f5964e59de40693535ff84c708b7e151152f31cd833c1efbdbc2e/tinybrain-1.2.3-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ca332de1b85f015dd29420aa342d4228", "sha256": "822bc51f99dff08db91d533ee9a01b833d2d7d244f3e2ec6085f7e143f06b022" }, "downloads": -1, "filename": "tinybrain-1.2.3-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "ca332de1b85f015dd29420aa342d4228", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 785148, "upload_time": "2022-03-04T06:33:14", "upload_time_iso_8601": "2022-03-04T06:33:14.814163Z", "url": "https://files.pythonhosted.org/packages/c0/86/1739892660112d5dfc6a1851fe1850af19f6a0703b2ed5fd493ac1c3a89f/tinybrain-1.2.3-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4bcd96a5f3e0c12a4bff6a038d3b0be0", "sha256": "f190c9747c61df0ca3ff44bf30defcfc0dd956702a6cdfb527a3369588978775" }, "downloads": -1, "filename": "tinybrain-1.2.3-cp38-cp38-macosx_11_0_universal2.whl", "has_sig": false, "md5_digest": "4bcd96a5f3e0c12a4bff6a038d3b0be0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 1105311, "upload_time": "2022-03-04T06:33:16", "upload_time_iso_8601": "2022-03-04T06:33:16.325250Z", "url": "https://files.pythonhosted.org/packages/79/97/442e44a713c862aa378a06f3a7bf3f9bf71ee89f527a7bccb40958bcba2b/tinybrain-1.2.3-cp38-cp38-macosx_11_0_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d231749d231982e50ecc147d9b6b1890", "sha256": "8af42e61a7f8474cf85e9231ac52f070b8729b22c5e7c34d4e5028fc4a74bd57" }, "downloads": -1, "filename": "tinybrain-1.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "d231749d231982e50ecc147d9b6b1890", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 2641436, "upload_time": "2022-03-04T06:33:18", "upload_time_iso_8601": "2022-03-04T06:33:18.423836Z", "url": "https://files.pythonhosted.org/packages/f0/85/e7ad612fc383b4da7d5b3855ea81798db720432d3e9430229b79da1c9412/tinybrain-1.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "24bff11fa0a4df99513fc16067afd13d", "sha256": "1e8020b0ef00be8ea25a54fde8d80ddcc609312581f6b74c923201e6d93cbae8" }, "downloads": -1, "filename": "tinybrain-1.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "24bff11fa0a4df99513fc16067afd13d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 2710112, "upload_time": "2022-03-04T06:33:20", "upload_time_iso_8601": "2022-03-04T06:33:20.217330Z", "url": "https://files.pythonhosted.org/packages/65/06/e83852f5f76341d97bf1bebe075915c175e8950433e7d7577b1686222dc9/tinybrain-1.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6cda30f9dd9388b89b2f5a639d89e47b", "sha256": "02e56eba276d19655bcf2481ef922ff41d548fc1fbea621350be92f129bfceab" }, "downloads": -1, "filename": "tinybrain-1.2.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "6cda30f9dd9388b89b2f5a639d89e47b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 2589564, "upload_time": "2022-03-04T06:33:22", "upload_time_iso_8601": "2022-03-04T06:33:22.163450Z", "url": "https://files.pythonhosted.org/packages/88/de/596dbfa1fcca8768de466e3b76bc47d67bba8caba025d99baaf0cd6c5321/tinybrain-1.2.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7aaddb87b833095dd43762188bfc996f", "sha256": "0d496a9672a498e43c44a997396371c61cb163adbad100152f4db028067c8aed" }, "downloads": -1, "filename": "tinybrain-1.2.3-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "7aaddb87b833095dd43762188bfc996f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 603964, "upload_time": "2022-03-04T06:33:23", "upload_time_iso_8601": "2022-03-04T06:33:23.883159Z", "url": "https://files.pythonhosted.org/packages/0d/0d/cb51fdc17ab53c448c3d281ca5e5a53b6bcddec68b567a51430f58e56408/tinybrain-1.2.3-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d1e9c03b86422f1e4b87349386ee89dd", "sha256": "d51d378477ad772098d7edcead72886846588f2a2d04519f5a330631c2074d68" }, "downloads": -1, "filename": "tinybrain-1.2.3-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "d1e9c03b86422f1e4b87349386ee89dd", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 652630, "upload_time": "2022-03-04T06:33:25", "upload_time_iso_8601": "2022-03-04T06:33:25.504667Z", "url": "https://files.pythonhosted.org/packages/71/85/1a2c11a5cde20431396bc587a11bd6f43260becbec94ea4835a63c92dd86/tinybrain-1.2.3-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "04a587327ea26b962291300670aaecf3", "sha256": "d1a356732791a91cb0846a7515312503766b59cde90c92fc6264f757a1a6919f" }, "downloads": -1, "filename": "tinybrain-1.2.3-cp39-cp39-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "04a587327ea26b962291300670aaecf3", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.6", "size": 1117928, "upload_time": "2022-03-04T06:33:27", "upload_time_iso_8601": "2022-03-04T06:33:27.022955Z", "url": "https://files.pythonhosted.org/packages/52/7a/e9a831092445f6bc6a08866ff3378bda5cd36ef68d58f4039990747d684e/tinybrain-1.2.3-cp39-cp39-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ecc38b69da9692f26cdd23132324dcae", "sha256": "803c1abf88c2dbacf9a3559eb1dca641e4c9ba5986e4d208263481499ff12472" }, "downloads": -1, "filename": "tinybrain-1.2.3-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "ecc38b69da9692f26cdd23132324dcae", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.6", "size": 795523, "upload_time": "2022-03-04T06:33:28", "upload_time_iso_8601": "2022-03-04T06:33:28.483111Z", "url": "https://files.pythonhosted.org/packages/ec/a2/f917bd5a35c4a6d0e9e2a6479ba8be562efdc3d99948378ec6df49871768/tinybrain-1.2.3-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dff3f87e76e59560c9b802ea6cecbf07", "sha256": "ee59ab693adca9879f89ce998f10bc6a9034385ffd636d5c94059dbf72bf6e1f" }, "downloads": -1, "filename": "tinybrain-1.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "dff3f87e76e59560c9b802ea6cecbf07", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.6", "size": 2572177, "upload_time": "2022-03-04T06:33:29", "upload_time_iso_8601": "2022-03-04T06:33:29.876237Z", "url": "https://files.pythonhosted.org/packages/69/5c/a2bfafe19047d454274f23bd1568464f067ec81a01b86b5d0e96545b64b2/tinybrain-1.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c008d9e1ae7653be227dc7ebe2753728", "sha256": "f3218556b2cc8a760e1cfb3fdf1a049daa24d0f300f1f7878701bddbef752173" }, "downloads": -1, "filename": "tinybrain-1.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "c008d9e1ae7653be227dc7ebe2753728", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.6", "size": 2630011, "upload_time": "2022-03-04T06:33:31", "upload_time_iso_8601": "2022-03-04T06:33:31.983232Z", "url": "https://files.pythonhosted.org/packages/46/03/d1411afe2f284a90e0e16989f5a26469a5fc1651499b4adef76fd3ec8317/tinybrain-1.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8bd2dd5d76860d0cd4f6ae25a4dedd78", "sha256": "f0488007a559466e9a30790ed055e747bb5c0f3b8b526420462c79b2b11a7398" }, "downloads": -1, "filename": "tinybrain-1.2.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "8bd2dd5d76860d0cd4f6ae25a4dedd78", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.6", "size": 2508361, "upload_time": "2022-03-04T06:33:33", "upload_time_iso_8601": "2022-03-04T06:33:33.722261Z", "url": "https://files.pythonhosted.org/packages/3e/b1/de3ef9dbaee677ff38c8344508e938f13544d2cfeb61de877ee4b70d8153/tinybrain-1.2.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "539a7ad64b8d14332e0c2857db2881d9", "sha256": "122ae5fd3b72cb31e0ac444d9ce1ef4c2ec6e890e646aaf6d6cb821a83fa4a3b" }, "downloads": -1, "filename": "tinybrain-1.2.3-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "539a7ad64b8d14332e0c2857db2881d9", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.6", "size": 605751, "upload_time": "2022-03-04T06:33:35", "upload_time_iso_8601": "2022-03-04T06:33:35.178424Z", "url": "https://files.pythonhosted.org/packages/76/d6/835cd0093b1080aaae66315b5fdc5dcb11fd6b0634a51aa999539117f3cb/tinybrain-1.2.3-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d6db321e2965c419073d1ebe79f3189b", "sha256": "f59e35105b5a51ae6eaa790aa23e79360e02b2327a12638ae345fc0263feedb0" }, "downloads": -1, "filename": "tinybrain-1.2.3-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "d6db321e2965c419073d1ebe79f3189b", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.6", "size": 653068, "upload_time": "2022-03-04T06:33:36", "upload_time_iso_8601": "2022-03-04T06:33:36.513796Z", "url": "https://files.pythonhosted.org/packages/97/9c/1d5f6476363bd674da915e362afa0b84e359381dcccb28b122475d1054f5/tinybrain-1.2.3-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dd5f22cb20ea6f200fb8f80c6c2244fb", "sha256": "7035eddcdb16d24ea68389a11997ae8e2d341fd3fe753fc3142bd65fe60d8837" }, "downloads": -1, "filename": "tinybrain-1.2.3.tar.gz", "has_sig": false, "md5_digest": "dd5f22cb20ea6f200fb8f80c6c2244fb", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 384903, "upload_time": "2022-03-04T06:33:37", "upload_time_iso_8601": "2022-03-04T06:33:37.837138Z", "url": "https://files.pythonhosted.org/packages/d4/c0/317e949a9c7ef2552d8231a30f8ca3c3c3ab78194ac289057c1e68b6b3c0/tinybrain-1.2.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.4": [ { "comment_text": "", "digests": { "md5": "c57ea2221832d06718068c7444330d1c", "sha256": "4bf7060efbdbf529ab340bc9569e66a048b1c80790fbc09f521db93dff6a6122" }, "downloads": -1, "filename": "tinybrain-1.2.4-cp310-cp310-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "c57ea2221832d06718068c7444330d1c", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.6", "size": 1125817, "upload_time": "2022-03-04T22:08:05", "upload_time_iso_8601": "2022-03-04T22:08:05.506243Z", "url": "https://files.pythonhosted.org/packages/da/4a/19d104413228ecd1cfc952ee68156ee99fbeb6edfde2bcec67a7f5ef9602/tinybrain-1.2.4-cp310-cp310-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c41dc5331683eac7efff375bd88c8fec", "sha256": "e29b7d498ec35f7160c3505dcbb57aa215a82efdb0597f79ffdb194c23b1d79e" }, "downloads": -1, "filename": "tinybrain-1.2.4-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c41dc5331683eac7efff375bd88c8fec", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.6", "size": 803278, "upload_time": "2022-03-04T22:08:07", "upload_time_iso_8601": "2022-03-04T22:08:07.175199Z", "url": "https://files.pythonhosted.org/packages/38/91/1c0731587a9ddfd537f75306ef9129fc3dbeb12153f4cf356af3d6edfec8/tinybrain-1.2.4-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eb3cd3778606475ffe6900fec973db8f", "sha256": "0df3d883e8f172a9059351ce82d0633e019a76158af8e1c3c57a3fed5fd891de" }, "downloads": -1, "filename": "tinybrain-1.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "eb3cd3778606475ffe6900fec973db8f", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.6", "size": 2560196, "upload_time": "2022-03-04T22:08:08", "upload_time_iso_8601": "2022-03-04T22:08:08.770829Z", "url": "https://files.pythonhosted.org/packages/ac/2b/fa275d85bca3881d8d79ce6e4ab5fa9b72792c2dcb6b75547a9667a538a1/tinybrain-1.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "132c233fa9c1ec1d10b88ed4d187c999", "sha256": "84896e1f1e6008115ce89b2d10f9f190903c4fa2cdec1c8193c890dbe6eaee28" }, "downloads": -1, "filename": "tinybrain-1.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "132c233fa9c1ec1d10b88ed4d187c999", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.6", "size": 2627600, "upload_time": "2022-03-04T22:08:10", "upload_time_iso_8601": "2022-03-04T22:08:10.515933Z", "url": "https://files.pythonhosted.org/packages/7c/ad/db9b93da7d88d8bfd1a6ad311bb3f10b7785151b3bc5db014a9c0416cb9c/tinybrain-1.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bbeab301446a86cbdae40f0b4d25e714", "sha256": "206a82c99e567185bc0eb16ae57b86dccf7a073c9441a8e3791c790fa5433803" }, "downloads": -1, "filename": "tinybrain-1.2.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "bbeab301446a86cbdae40f0b4d25e714", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.6", "size": 2520208, "upload_time": "2022-03-04T22:08:12", "upload_time_iso_8601": "2022-03-04T22:08:12.206161Z", "url": "https://files.pythonhosted.org/packages/d5/7b/c21a497d2d18e8ff1e9655a89e4d394c71532f03d61163773bd8d758ec96/tinybrain-1.2.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2cd67c3876706c1f21ae52225a9fff18", "sha256": "bc0e73592898c206b52bf1f15afcc0ef8a3dd7eacb2ca99183f1f0edc6f3f170" }, "downloads": -1, "filename": "tinybrain-1.2.4-cp310-cp310-win32.whl", "has_sig": false, "md5_digest": "2cd67c3876706c1f21ae52225a9fff18", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.6", "size": 609853, "upload_time": "2022-03-04T22:08:13", "upload_time_iso_8601": "2022-03-04T22:08:13.561689Z", "url": "https://files.pythonhosted.org/packages/14/93/365e797fbe8351f42fc76a7a4c977348b61b18d023dc78eb0020182be4c4/tinybrain-1.2.4-cp310-cp310-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "46bf973e326f0e2f69e47c8dde99a2bd", "sha256": "b2a64c14758317ee1c31411b03db4fe126722067278a3ef49dcadfe9c09f9263" }, "downloads": -1, "filename": "tinybrain-1.2.4-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "46bf973e326f0e2f69e47c8dde99a2bd", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.6", "size": 662141, "upload_time": "2022-03-04T22:08:14", "upload_time_iso_8601": "2022-03-04T22:08:14.911474Z", "url": "https://files.pythonhosted.org/packages/0d/ec/1553200cca0eac7f80b0e6af507634f74c73ab3f4f458ebe40541ae962db/tinybrain-1.2.4-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "328407bd0c1a0d62832c3777f51f5bfa", "sha256": "6b1c37d69468f0117f8c9f1c15e638ec880cd3f75ab4f65bbfc5990aaf3ece80" }, "downloads": -1, "filename": "tinybrain-1.2.4-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "328407bd0c1a0d62832c3777f51f5bfa", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.6", "size": 779242, "upload_time": "2022-03-04T22:08:16", "upload_time_iso_8601": "2022-03-04T22:08:16.156329Z", "url": "https://files.pythonhosted.org/packages/3e/ce/7f6e84bfd6dbef305f5e99a87c7e715cd2fe456bbc6dab4695e1a72cd2d2/tinybrain-1.2.4-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "20646dab8e087a30c970d25832e7fda1", "sha256": "a5fd066ae3763e7274bdb03ad2611a20798974ee957c668797de5cd09f596ca4" }, "downloads": -1, "filename": "tinybrain-1.2.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "20646dab8e087a30c970d25832e7fda1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.6", "size": 2399193, "upload_time": "2022-03-04T22:08:17", "upload_time_iso_8601": "2022-03-04T22:08:17.837867Z", "url": "https://files.pythonhosted.org/packages/a3/7c/75295f06cd312009607db5882190e3ba6144be5436c070db0dd0d386c6cb/tinybrain-1.2.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fa845b5ecb0dd9d22de2ce1596b66faf", "sha256": "278361ea6c8c9e62144b32e2c16605c27ead839b8b79e8eb486807abc7326d32" }, "downloads": -1, "filename": "tinybrain-1.2.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "fa845b5ecb0dd9d22de2ce1596b66faf", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.6", "size": 2446887, "upload_time": "2022-03-04T22:08:19", "upload_time_iso_8601": "2022-03-04T22:08:19.856915Z", "url": "https://files.pythonhosted.org/packages/09/ed/3dbc185ba8784460a0708a7bf0b06a653c98bff1e676489021806fb4f069/tinybrain-1.2.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "98d9e16ff4e954d9908f68531704e872", "sha256": "c7163a201eb38a53d9891ff75fd9633839ff064972717ef384222809f95223b6" }, "downloads": -1, "filename": "tinybrain-1.2.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "98d9e16ff4e954d9908f68531704e872", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.6", "size": 2316469, "upload_time": "2022-03-04T22:08:21", "upload_time_iso_8601": "2022-03-04T22:08:21.522588Z", "url": "https://files.pythonhosted.org/packages/e9/a4/28d02c78e258ee8752f501d4f62b2b6640ab8f4ebe834ac8715756fce942/tinybrain-1.2.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08b4012e2a73f8fc3d84bf145bf65167", "sha256": "66efaed60d1b90e17830ed7c7ee9b6dc23775cb740128eb75899805d6b58b200" }, "downloads": -1, "filename": "tinybrain-1.2.4-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "08b4012e2a73f8fc3d84bf145bf65167", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.6", "size": 606369, "upload_time": "2022-03-04T22:08:23", "upload_time_iso_8601": "2022-03-04T22:08:23.026166Z", "url": "https://files.pythonhosted.org/packages/45/47/dbabdbc392a96e2c3ffc4e7c1eafc30310ce8fee241d077368a5d7c5e090/tinybrain-1.2.4-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "29223279def26e6390e75b5090899da8", "sha256": "ceb7b8d854c5f0535115db47d12a73d75c9655d7db1ed1f9f968be988637d9f1" }, "downloads": -1, "filename": "tinybrain-1.2.4-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "29223279def26e6390e75b5090899da8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.6", "size": 644755, "upload_time": "2022-03-04T22:08:24", "upload_time_iso_8601": "2022-03-04T22:08:24.322359Z", "url": "https://files.pythonhosted.org/packages/7a/1e/3b81bcf109d878fe538ca3fddbb32dbff50188c0df525b089c1e5753e25e/tinybrain-1.2.4-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2fe26ffc710ade301973b1cc70522666", "sha256": "257d379aeb4cb0489b17cffc2652ad5a8b3f79ef078dcb6131e00ba01ea7f8f2" }, "downloads": -1, "filename": "tinybrain-1.2.4-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "2fe26ffc710ade301973b1cc70522666", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 791223, "upload_time": "2022-03-04T22:08:25", "upload_time_iso_8601": "2022-03-04T22:08:25.957899Z", "url": "https://files.pythonhosted.org/packages/73/2e/dbb90662bbc6d5e645df2f15038e1405b007e323c23be8c87a34cccd7ed2/tinybrain-1.2.4-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "627e98dfc9a226d4f79c65b24f345bf6", "sha256": "681b9d353c7c64d19b37b25a6d0e351b96078d817eb2b5d8c7033d57a9e6a52a" }, "downloads": -1, "filename": "tinybrain-1.2.4-cp38-cp38-macosx_11_0_universal2.whl", "has_sig": false, "md5_digest": "627e98dfc9a226d4f79c65b24f345bf6", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 1111160, "upload_time": "2022-03-04T22:08:27", "upload_time_iso_8601": "2022-03-04T22:08:27.306910Z", "url": "https://files.pythonhosted.org/packages/85/87/8250976717b19296bd529a34388a631e6d939b76693705b16b417e4cacaa/tinybrain-1.2.4-cp38-cp38-macosx_11_0_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1a4328d33dee9b717c5d33b9809d3a86", "sha256": "07d438ecc29a16133a9598f45f2118820947142e79eb5d05ca0f03a7f8d076a1" }, "downloads": -1, "filename": "tinybrain-1.2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "1a4328d33dee9b717c5d33b9809d3a86", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 2647686, "upload_time": "2022-03-04T22:08:28", "upload_time_iso_8601": "2022-03-04T22:08:28.932782Z", "url": "https://files.pythonhosted.org/packages/79/84/c3c2594b3fdfd68e8aa5618f2e97048082224b5e82298f04a6fb34f39412/tinybrain-1.2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "51a72b7683afb8df592dfd83d9124140", "sha256": "e8b7c0e95539d699172c21f878ddd5edc4ffd14f191379e55ccc6991f80dfb74" }, "downloads": -1, "filename": "tinybrain-1.2.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "51a72b7683afb8df592dfd83d9124140", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 2722472, "upload_time": "2022-03-04T22:08:30", "upload_time_iso_8601": "2022-03-04T22:08:30.779078Z", "url": "https://files.pythonhosted.org/packages/2d/88/5e35525be129c2e3cb65586449f63d76260282ebcbd5735f2bfa8d4cdedf/tinybrain-1.2.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b96d080d6c14c5b42ac92922c8f480a0", "sha256": "d6d0eee91588f33c53f0c2a614e77faf6d22e0e5f631dbd9042927aeb0274432" }, "downloads": -1, "filename": "tinybrain-1.2.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "b96d080d6c14c5b42ac92922c8f480a0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 2603963, "upload_time": "2022-03-04T22:08:32", "upload_time_iso_8601": "2022-03-04T22:08:32.204903Z", "url": "https://files.pythonhosted.org/packages/c3/fe/f7d8d6de8d4d7516e9acb9fbbb79f435aa9fb8d2866c0e60f535aa0d083c/tinybrain-1.2.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c9e88622fafd79401ab85b9b7f965da0", "sha256": "fe2d8b6b472bd11a4f3d7b221cd3af3326934430830a7af235da9e21c07f73b5" }, "downloads": -1, "filename": "tinybrain-1.2.4-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "c9e88622fafd79401ab85b9b7f965da0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 610349, "upload_time": "2022-03-04T22:08:33", "upload_time_iso_8601": "2022-03-04T22:08:33.741005Z", "url": "https://files.pythonhosted.org/packages/a8/72/2b5111da553a56a2ddd37a77b55f1a3cbfd71513d7e78246333cb337cc97/tinybrain-1.2.4-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d89c308265ad29f5277f390366f4d7e4", "sha256": "7a86a6b28717d58b7d62281208aebffbee20625a9689bbbff7e6478453135aa0" }, "downloads": -1, "filename": "tinybrain-1.2.4-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "d89c308265ad29f5277f390366f4d7e4", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.6", "size": 661982, "upload_time": "2022-03-04T22:08:34", "upload_time_iso_8601": "2022-03-04T22:08:34.962647Z", "url": "https://files.pythonhosted.org/packages/af/bf/3d1c6b635dc571c844bae0bf5ee5255859693d89d750b8bee801f73f453c/tinybrain-1.2.4-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ec1a96c18ea8538c17363eacd395bf6", "sha256": "c2796b29c1366505c8529dd111110c5d758a1c86c9f62beef339f5c7d666140e" }, "downloads": -1, "filename": "tinybrain-1.2.4-cp39-cp39-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "9ec1a96c18ea8538c17363eacd395bf6", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.6", "size": 1125805, "upload_time": "2022-03-04T22:08:36", "upload_time_iso_8601": "2022-03-04T22:08:36.526222Z", "url": "https://files.pythonhosted.org/packages/c8/9f/fd683496ce7fd6562970cb08022150926c6233348dde485986613b458823/tinybrain-1.2.4-cp39-cp39-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "937cc3be6a6fc7d891c92cc1dca97971", "sha256": "76376aa2b24763b7ac1f09bc0f133d74e09cba61f296ef7b8c5fd0d3ff1a441d" }, "downloads": -1, "filename": "tinybrain-1.2.4-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "937cc3be6a6fc7d891c92cc1dca97971", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.6", "size": 803284, "upload_time": "2022-03-04T22:08:37", "upload_time_iso_8601": "2022-03-04T22:08:37.911817Z", "url": "https://files.pythonhosted.org/packages/d7/3c/d40aad52c30d20f305dd707d73e27aa3cafe549ab03a3122667627645bb5/tinybrain-1.2.4-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "774a9e7f5e7eaf32581976c7cc653e9a", "sha256": "29cefe84c187ff96a2f6e7725022e1d8ebe573e8cfd03cc6b9722e6d1125c820" }, "downloads": -1, "filename": "tinybrain-1.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "774a9e7f5e7eaf32581976c7cc653e9a", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.6", "size": 2563956, "upload_time": "2022-03-04T22:08:39", "upload_time_iso_8601": "2022-03-04T22:08:39.659423Z", "url": "https://files.pythonhosted.org/packages/38/0f/797ceb73745aefb7f6da5acb5ddd58cb1a32a1c24c2d2e742fd24d7c7758/tinybrain-1.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6acb0647439f443dceebaea214f107ab", "sha256": "55efa9cda53f6ee79c3f9b91055c68fb023cd5830461dd9cc83c673437a1f5ca" }, "downloads": -1, "filename": "tinybrain-1.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "6acb0647439f443dceebaea214f107ab", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.6", "size": 2632642, "upload_time": "2022-03-04T22:08:41", "upload_time_iso_8601": "2022-03-04T22:08:41.193993Z", "url": "https://files.pythonhosted.org/packages/8f/03/4aad2752c773f96edb877cb65195eba9a4de74abd89949d31ba6c54e9ae5/tinybrain-1.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0a0ed51b05199f32489b507351f5211e", "sha256": "9e92c52285a4cb0e8201d705a782bc5efe2cf774c38e8e9a740b4bf7e46e8499" }, "downloads": -1, "filename": "tinybrain-1.2.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "0a0ed51b05199f32489b507351f5211e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.6", "size": 2525070, "upload_time": "2022-03-04T22:08:42", "upload_time_iso_8601": "2022-03-04T22:08:42.944767Z", "url": "https://files.pythonhosted.org/packages/d0/8e/dff2673aa8b993c318cc0568f74f9fc218511dde9c4a0627cbbc358027ec/tinybrain-1.2.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a70bc656e08ec59f6085ddd810d811bd", "sha256": "c892562fda52fceb9e4b220451f1dbd628e8482cd7cf51afb5fc1582d9c54e5b" }, "downloads": -1, "filename": "tinybrain-1.2.4-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "a70bc656e08ec59f6085ddd810d811bd", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.6", "size": 609934, "upload_time": "2022-03-04T22:08:44", "upload_time_iso_8601": "2022-03-04T22:08:44.383773Z", "url": "https://files.pythonhosted.org/packages/d7/e8/87e395e56828d3ea8ec5ccb8d739f5445c21d340056bf3d3d8d87ebcffbf/tinybrain-1.2.4-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4486acd80e7bd304e7df85a0b9111e30", "sha256": "fe47ab2ee4b8e14363e8caed4ad49488b9dc1fdc552b637e6ecb67e83fa9bd64" }, "downloads": -1, "filename": "tinybrain-1.2.4-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "4486acd80e7bd304e7df85a0b9111e30", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.6", "size": 662156, "upload_time": "2022-03-04T22:08:45", "upload_time_iso_8601": "2022-03-04T22:08:45.608279Z", "url": "https://files.pythonhosted.org/packages/db/70/b067843d6e334b73e65f74e60c1d44ed7f812a3242dcf3088a1fe1481360/tinybrain-1.2.4-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7c793db9d2fbe70483f9066aa4ba8575", "sha256": "2ff9a4ec4e9a51aee017d65c9d4dfe54f6c49dc6a0efdb95656ab66a1e7ab03f" }, "downloads": -1, "filename": "tinybrain-1.2.4.tar.gz", "has_sig": false, "md5_digest": "7c793db9d2fbe70483f9066aa4ba8575", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.6", "size": 390633, "upload_time": "2022-03-04T22:08:47", "upload_time_iso_8601": "2022-03-04T22:08:47.137113Z", "url": "https://files.pythonhosted.org/packages/76/6c/91f00278e8ff7606384f8ad5c94ddfd0e898aae875591204a0f08ba7cd41/tinybrain-1.2.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "88a98a45d9774dfbfe15a2711230e5d1", "sha256": "7092624cb7b73587f274a1ae28d57b9a2ec0b2794eabd78bf722984248b6622c" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp310-cp310-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "88a98a45d9774dfbfe15a2711230e5d1", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.7", "size": 1305366, "upload_time": "2022-03-05T16:10:36", "upload_time_iso_8601": "2022-03-05T16:10:36.046534Z", "url": "https://files.pythonhosted.org/packages/7a/fc/16ddeb6698441fa5ba12b47c3e919b198a0c9f5e1809ac1757795db2f09c/tinybrain-1.3.0-cp310-cp310-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9a90f09013748155c22933c323fab673", "sha256": "4dcaeaa9e30e98805319959ddcf5e33152df5473f3e2fff258005c6221aeebe1" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "9a90f09013748155c22933c323fab673", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.7", "size": 928238, "upload_time": "2022-03-05T16:10:38", "upload_time_iso_8601": "2022-03-05T16:10:38.508590Z", "url": "https://files.pythonhosted.org/packages/a8/58/fd2dd110b4a4513fd937f88d051dbd7a95617fa0703da85bc4133ce06ab9/tinybrain-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b4cd20644bf4de98c9a853cc48919b7c", "sha256": "23a938c8d56b67a943eb4411c11857204cb415103856f0741e075900a3ace8fb" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "b4cd20644bf4de98c9a853cc48919b7c", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.7", "size": 3022888, "upload_time": "2022-03-05T16:10:40", "upload_time_iso_8601": "2022-03-05T16:10:40.364349Z", "url": "https://files.pythonhosted.org/packages/0b/0c/2348081f36e82fcdefb7ebd81f026352e83cf90f9c99bc1fb9046a0cab43/tinybrain-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d9854b579021b7b70b0357d5e73063d4", "sha256": "54c9917e9df82397b0a3d24bfda4d39b5c7bc99db4a42b30771320837ebde5f5" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "d9854b579021b7b70b0357d5e73063d4", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.7", "size": 3119332, "upload_time": "2022-03-05T16:10:42", "upload_time_iso_8601": "2022-03-05T16:10:42.260826Z", "url": "https://files.pythonhosted.org/packages/0b/fe/8a4196848a808d67c5687ce3d2669487006cd967558e3f1bf477802d9a10/tinybrain-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5e8b6db8f681b1ad190749a76d86ce01", "sha256": "517c636f647a685ec22b05df5b6b58d6224f0cc11d3a13ead5ce6a47eab69846" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "5e8b6db8f681b1ad190749a76d86ce01", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.7", "size": 2986852, "upload_time": "2022-03-05T16:10:44", "upload_time_iso_8601": "2022-03-05T16:10:44.210851Z", "url": "https://files.pythonhosted.org/packages/b0/d9/5a3a06a9c221492f424e9ecf2d630d97ce5a72e05d3c29498ffbecf0d1d5/tinybrain-1.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9688edd8f3f30668204602135eb4189e", "sha256": "4bdd7e53a202a835d2344f1413af2724a2547782ed09d94cc574ab11ce1567b0" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp310-cp310-win32.whl", "has_sig": false, "md5_digest": "9688edd8f3f30668204602135eb4189e", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.7", "size": 650366, "upload_time": "2022-03-05T16:10:46", "upload_time_iso_8601": "2022-03-05T16:10:46.599179Z", "url": "https://files.pythonhosted.org/packages/b9/d9/ada2372a8785c500fff6b3cf0402a5a0ff059dfb4a9204d8128f7753386c/tinybrain-1.3.0-cp310-cp310-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "45af2a04ab8c1144128b8e4666bd5ca6", "sha256": "1d939f21bbfae0a5952b9dfc8e1706321afee1067609bd86ea44ac6edb2bbb4c" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "45af2a04ab8c1144128b8e4666bd5ca6", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.7", "size": 704711, "upload_time": "2022-03-05T16:10:48", "upload_time_iso_8601": "2022-03-05T16:10:48.535130Z", "url": "https://files.pythonhosted.org/packages/00/0c/43d05ca7d0378b7e7220328fd5b7074970b4ee36aefcad423208a91a6acb/tinybrain-1.3.0-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a976ce21f3e721aa2a21e62bafd7bb1f", "sha256": "8540d6f60c8781eefc440f288d0747bd2f2c286c1de7a6655f7549f5b9e8f9b4" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "a976ce21f3e721aa2a21e62bafd7bb1f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.7", "size": 901921, "upload_time": "2022-03-05T16:10:50", "upload_time_iso_8601": "2022-03-05T16:10:50.074784Z", "url": "https://files.pythonhosted.org/packages/1a/1b/f4578ff73111f6be2008d38a392eac73662a972437fe204b5d44bc46f5f4/tinybrain-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b55051b477f09746784d6b75260612f8", "sha256": "2c17f67476183808287dadc6c96e1306b38c3146d79a7f4bc87387633003100d" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "b55051b477f09746784d6b75260612f8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.7", "size": 2797119, "upload_time": "2022-03-05T16:10:51", "upload_time_iso_8601": "2022-03-05T16:10:51.730657Z", "url": "https://files.pythonhosted.org/packages/dd/e1/d730bba06f43312d3ba4669d3b904e5ab1df271b949305e579f056d1d810/tinybrain-1.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8a947b8812a65711277e1946d3be4d75", "sha256": "cc68a5f987843a5ad70f31a436fb3f6e8edb8ac491925edf0266f6c927c67d2b" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "8a947b8812a65711277e1946d3be4d75", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.7", "size": 2886130, "upload_time": "2022-03-05T16:10:54", "upload_time_iso_8601": "2022-03-05T16:10:54.100973Z", "url": "https://files.pythonhosted.org/packages/3b/e4/31ba721f22379bdb25fd8ecb3edf99ac23cc1d75f8c4c8d9c85dd2cbb971/tinybrain-1.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9f9a1a4ae7b26e6510ba14a2367c039a", "sha256": "8d62ec071449af44ff3c624313f95a3b6749f3ba4a8d071e58fafbdb7e7e043f" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "9f9a1a4ae7b26e6510ba14a2367c039a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.7", "size": 2751873, "upload_time": "2022-03-05T16:10:56", "upload_time_iso_8601": "2022-03-05T16:10:56.327057Z", "url": "https://files.pythonhosted.org/packages/9a/b7/314cef6182a8e589f76c8465c90cd674638ddfb1c38ea1a9b9b232e47406/tinybrain-1.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac32a2aabe038ec31325d30640efac31", "sha256": "48b732b48d94ea9039e23fad7dece930caff7e49c92f39daa0032e1f4dc72b50" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "ac32a2aabe038ec31325d30640efac31", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.7", "size": 640814, "upload_time": "2022-03-05T16:11:01", "upload_time_iso_8601": "2022-03-05T16:11:01.320986Z", "url": "https://files.pythonhosted.org/packages/4f/a6/944cd74ef6d6fb01458948ca210914a63d91c0b977bd663edda003ec1e54/tinybrain-1.3.0-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "483d0c37bd2b0a7d9026b9ad004ae2d2", "sha256": "02ca08db30d7fb0c7f6863ccdc77ef9a0773ab535294d7f1cc8f389a7386fc95" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "483d0c37bd2b0a7d9026b9ad004ae2d2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.7", "size": 683138, "upload_time": "2022-03-05T16:11:02", "upload_time_iso_8601": "2022-03-05T16:11:02.665432Z", "url": "https://files.pythonhosted.org/packages/b5/0c/300a5a1c9b95b23db0de6bd3010124c373244aecc41a0515d217cb229c29/tinybrain-1.3.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d339b4dfdbf8d691f6fa963154e055ea", "sha256": "e87baea17a2ea3740ffdf58356b1318226f0a2b947e6788821dc3348696c719c" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d339b4dfdbf8d691f6fa963154e055ea", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.7", "size": 924479, "upload_time": "2022-03-05T16:11:04", "upload_time_iso_8601": "2022-03-05T16:11:04.209649Z", "url": "https://files.pythonhosted.org/packages/8c/82/c8fbe0d345ca7d6c839e7c51def2afc48773f40fff4d1082001e0d6cd782/tinybrain-1.3.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9aa6c3ffec31fe4c9ec7048d22d386cc", "sha256": "5a54a5e31b58d8893f0d8e3401de375907be75cb833dba92f18195c0253ace99" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp38-cp38-macosx_11_0_universal2.whl", "has_sig": false, "md5_digest": "9aa6c3ffec31fe4c9ec7048d22d386cc", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.7", "size": 1297253, "upload_time": "2022-03-05T16:11:05", "upload_time_iso_8601": "2022-03-05T16:11:05.865163Z", "url": "https://files.pythonhosted.org/packages/fc/5e/cd36de0cd0a88f666fe6b977e22c925240a0769d998eaf844f301585afe8/tinybrain-1.3.0-cp38-cp38-macosx_11_0_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50d80833ce4e96591498151e8258d4ee", "sha256": "8045b2367b41ebd2f5d152bce37efe0c79685b11099f34fc4c2314f1fc0bfffc" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "50d80833ce4e96591498151e8258d4ee", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.7", "size": 3105433, "upload_time": "2022-03-05T16:11:07", "upload_time_iso_8601": "2022-03-05T16:11:07.494118Z", "url": "https://files.pythonhosted.org/packages/15/c2/1967ba5499795d60154e33becbb517f804ef997f861cef22df8f8f5d3d2f/tinybrain-1.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c8c06223d8a0fb09d8d2bca6d200270", "sha256": "5bb6e651e03736d5fb4ca6a4d0f59ebd8c6605071273b0a63ed242b6ca912085" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "0c8c06223d8a0fb09d8d2bca6d200270", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.7", "size": 3237969, "upload_time": "2022-03-05T16:11:09", "upload_time_iso_8601": "2022-03-05T16:11:09.621755Z", "url": "https://files.pythonhosted.org/packages/8c/2a/6bceda93594105d70f26a925b6a865f8cd12dc977b25127e3fe519c2c423/tinybrain-1.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0800033a4f68ef9d6c9f162a85628502", "sha256": "812755d2082fe67443bf0c45ca1d3f687a074b725aa8112c0d40dae880aa7f79" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "0800033a4f68ef9d6c9f162a85628502", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.7", "size": 3089240, "upload_time": "2022-03-05T16:11:11", "upload_time_iso_8601": "2022-03-05T16:11:11.966363Z", "url": "https://files.pythonhosted.org/packages/b3/7d/9fb913bf00ad79ba8882caee565208e8c027073828b2aa477d98c9dc6c55/tinybrain-1.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b4d9e52aaf6d7c1dd5275a8e7aa392c5", "sha256": "440925f69d2ef872c3a5e0ee6ac2edcc67561775e07e65ddf1b5d22a7a560ec8" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "b4d9e52aaf6d7c1dd5275a8e7aa392c5", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.7", "size": 653330, "upload_time": "2022-03-05T16:11:14", "upload_time_iso_8601": "2022-03-05T16:11:14.013780Z", "url": "https://files.pythonhosted.org/packages/60/f1/40804e030539165bb38450c6acd3871982d5497990e7aa8dec09f6aa6cf5/tinybrain-1.3.0-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "927f4c9f06f811cfe6f0dadeb1f9892b", "sha256": "480dd03af98460d8fbf6decb0a9a4f264d392079f6c572efc6b33ade47afc2c6" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "927f4c9f06f811cfe6f0dadeb1f9892b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.7", "size": 709057, "upload_time": "2022-03-05T16:11:16", "upload_time_iso_8601": "2022-03-05T16:11:16.174805Z", "url": "https://files.pythonhosted.org/packages/d2/74/124d52d5deaa20f949b32551c7dbe11a2bc5cd7b19c688913a611637d0be/tinybrain-1.3.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6546c9d2552f95ff1da1b08436b98f23", "sha256": "6ab4852cd5946ecd301703d9565da00a477a2bd385ea84a64556381f64781ff3" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp39-cp39-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "6546c9d2552f95ff1da1b08436b98f23", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.7", "size": 1305308, "upload_time": "2022-03-05T16:11:18", "upload_time_iso_8601": "2022-03-05T16:11:18.132886Z", "url": "https://files.pythonhosted.org/packages/5c/ce/21b6227c9016ba8d32d41409d4a1df685ce04b7584aec231d251c2c2fb4c/tinybrain-1.3.0-cp39-cp39-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "afd571763a4e5e4d1f3c803fb9b8ca5f", "sha256": "5fbbb29044025c25d99ab714280c6d7f6a1738d015a96ce1bdfb36c53e2d9b7a" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "afd571763a4e5e4d1f3c803fb9b8ca5f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.7", "size": 928240, "upload_time": "2022-03-05T16:11:19", "upload_time_iso_8601": "2022-03-05T16:11:19.680989Z", "url": "https://files.pythonhosted.org/packages/df/3c/b6b2ea0cba473d71156fa3896840dfa3b3e2e1be4323ee94f7fb1d3957c8/tinybrain-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "538d43b40a939da1c524ae708489030a", "sha256": "88ef95419ff0fce6d351e86862f92004fd814a6f7c28901dd87edbcbe905fd62" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "538d43b40a939da1c524ae708489030a", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.7", "size": 2998650, "upload_time": "2022-03-05T16:11:21", "upload_time_iso_8601": "2022-03-05T16:11:21.451518Z", "url": "https://files.pythonhosted.org/packages/e1/aa/f51a2ed99adb7e25d7f562950a7d46d89d938f01da1a47925b52cc7ca41f/tinybrain-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1a94f54a877cc761c939cb046e83b171", "sha256": "e3cb3ca4d396b29f2e2459ca927bd0e9c069108c97b5187d42fbde85d038b180" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "1a94f54a877cc761c939cb046e83b171", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.7", "size": 3119958, "upload_time": "2022-03-05T16:11:24", "upload_time_iso_8601": "2022-03-05T16:11:24.000904Z", "url": "https://files.pythonhosted.org/packages/65/b7/7b620abe9ca6bfbf72590361913739b2ade1083ee2bf75b6ec3a159ea4b0/tinybrain-1.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e25ed1e0d268111ad7a8f987e22b545e", "sha256": "9e7644c6c4d7717fb8d59354dc2976e791bf790c4d9ff55e8ca6356083928344" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "e25ed1e0d268111ad7a8f987e22b545e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.7", "size": 3006386, "upload_time": "2022-03-05T16:11:26", "upload_time_iso_8601": "2022-03-05T16:11:26.324583Z", "url": "https://files.pythonhosted.org/packages/70/1f/9594f91b7c311db49b0a61c9ef089e215ca527432642c9abdbd043392bc3/tinybrain-1.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9690a0dbe3f147787ee7bd8f0c40ad19", "sha256": "17bd40f926aa6fbff638f98f11a350330b2e98ab362a20a0542729f4c5d60c0c" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "9690a0dbe3f147787ee7bd8f0c40ad19", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.7", "size": 650337, "upload_time": "2022-03-05T16:11:28", "upload_time_iso_8601": "2022-03-05T16:11:28.404017Z", "url": "https://files.pythonhosted.org/packages/21/aa/d54e7caa94b5c7057d67bd66f53a5d582cb43930495527520f0804f7fb60/tinybrain-1.3.0-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "69c9d5fad3eedca7034e525d244acf63", "sha256": "1120dc4a152925a215636f1ccc21d8665e86cd10f10a9266fde20ad053cac158" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "69c9d5fad3eedca7034e525d244acf63", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.7", "size": 704718, "upload_time": "2022-03-05T16:11:29", "upload_time_iso_8601": "2022-03-05T16:11:29.834789Z", "url": "https://files.pythonhosted.org/packages/8f/93/5c3d478e692e5715748ac74b81b6003d54a9432906bb0d14f24bad2241ef/tinybrain-1.3.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "436a9b16226229a626a78c8c1dbd17fa", "sha256": "155bfc9e52efcd8ced5bcef67f4fd2154b7c1dd3075765a10f3412219713ec8e" }, "downloads": -1, "filename": "tinybrain-1.3.0.tar.gz", "has_sig": false, "md5_digest": "436a9b16226229a626a78c8c1dbd17fa", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.7", "size": 401471, "upload_time": "2022-03-05T16:11:31", "upload_time_iso_8601": "2022-03-05T16:11:31.460737Z", "url": "https://files.pythonhosted.org/packages/34/9b/3d64eedea64e128cfd32113bd2236b7a5a078d6be5dde50ca9110842ccc3/tinybrain-1.3.0.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "88a98a45d9774dfbfe15a2711230e5d1", "sha256": "7092624cb7b73587f274a1ae28d57b9a2ec0b2794eabd78bf722984248b6622c" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp310-cp310-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "88a98a45d9774dfbfe15a2711230e5d1", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.7", "size": 1305366, "upload_time": "2022-03-05T16:10:36", "upload_time_iso_8601": "2022-03-05T16:10:36.046534Z", "url": "https://files.pythonhosted.org/packages/7a/fc/16ddeb6698441fa5ba12b47c3e919b198a0c9f5e1809ac1757795db2f09c/tinybrain-1.3.0-cp310-cp310-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9a90f09013748155c22933c323fab673", "sha256": "4dcaeaa9e30e98805319959ddcf5e33152df5473f3e2fff258005c6221aeebe1" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "9a90f09013748155c22933c323fab673", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.7", "size": 928238, "upload_time": "2022-03-05T16:10:38", "upload_time_iso_8601": "2022-03-05T16:10:38.508590Z", "url": "https://files.pythonhosted.org/packages/a8/58/fd2dd110b4a4513fd937f88d051dbd7a95617fa0703da85bc4133ce06ab9/tinybrain-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b4cd20644bf4de98c9a853cc48919b7c", "sha256": "23a938c8d56b67a943eb4411c11857204cb415103856f0741e075900a3ace8fb" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "b4cd20644bf4de98c9a853cc48919b7c", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.7", "size": 3022888, "upload_time": "2022-03-05T16:10:40", "upload_time_iso_8601": "2022-03-05T16:10:40.364349Z", "url": "https://files.pythonhosted.org/packages/0b/0c/2348081f36e82fcdefb7ebd81f026352e83cf90f9c99bc1fb9046a0cab43/tinybrain-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d9854b579021b7b70b0357d5e73063d4", "sha256": "54c9917e9df82397b0a3d24bfda4d39b5c7bc99db4a42b30771320837ebde5f5" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "d9854b579021b7b70b0357d5e73063d4", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.7", "size": 3119332, "upload_time": "2022-03-05T16:10:42", "upload_time_iso_8601": "2022-03-05T16:10:42.260826Z", "url": "https://files.pythonhosted.org/packages/0b/fe/8a4196848a808d67c5687ce3d2669487006cd967558e3f1bf477802d9a10/tinybrain-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5e8b6db8f681b1ad190749a76d86ce01", "sha256": "517c636f647a685ec22b05df5b6b58d6224f0cc11d3a13ead5ce6a47eab69846" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "5e8b6db8f681b1ad190749a76d86ce01", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.7", "size": 2986852, "upload_time": "2022-03-05T16:10:44", "upload_time_iso_8601": "2022-03-05T16:10:44.210851Z", "url": "https://files.pythonhosted.org/packages/b0/d9/5a3a06a9c221492f424e9ecf2d630d97ce5a72e05d3c29498ffbecf0d1d5/tinybrain-1.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9688edd8f3f30668204602135eb4189e", "sha256": "4bdd7e53a202a835d2344f1413af2724a2547782ed09d94cc574ab11ce1567b0" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp310-cp310-win32.whl", "has_sig": false, "md5_digest": "9688edd8f3f30668204602135eb4189e", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.7", "size": 650366, "upload_time": "2022-03-05T16:10:46", "upload_time_iso_8601": "2022-03-05T16:10:46.599179Z", "url": "https://files.pythonhosted.org/packages/b9/d9/ada2372a8785c500fff6b3cf0402a5a0ff059dfb4a9204d8128f7753386c/tinybrain-1.3.0-cp310-cp310-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "45af2a04ab8c1144128b8e4666bd5ca6", "sha256": "1d939f21bbfae0a5952b9dfc8e1706321afee1067609bd86ea44ac6edb2bbb4c" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "45af2a04ab8c1144128b8e4666bd5ca6", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": "~=3.7", "size": 704711, "upload_time": "2022-03-05T16:10:48", "upload_time_iso_8601": "2022-03-05T16:10:48.535130Z", "url": "https://files.pythonhosted.org/packages/00/0c/43d05ca7d0378b7e7220328fd5b7074970b4ee36aefcad423208a91a6acb/tinybrain-1.3.0-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a976ce21f3e721aa2a21e62bafd7bb1f", "sha256": "8540d6f60c8781eefc440f288d0747bd2f2c286c1de7a6655f7549f5b9e8f9b4" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "a976ce21f3e721aa2a21e62bafd7bb1f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.7", "size": 901921, "upload_time": "2022-03-05T16:10:50", "upload_time_iso_8601": "2022-03-05T16:10:50.074784Z", "url": "https://files.pythonhosted.org/packages/1a/1b/f4578ff73111f6be2008d38a392eac73662a972437fe204b5d44bc46f5f4/tinybrain-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b55051b477f09746784d6b75260612f8", "sha256": "2c17f67476183808287dadc6c96e1306b38c3146d79a7f4bc87387633003100d" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "b55051b477f09746784d6b75260612f8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.7", "size": 2797119, "upload_time": "2022-03-05T16:10:51", "upload_time_iso_8601": "2022-03-05T16:10:51.730657Z", "url": "https://files.pythonhosted.org/packages/dd/e1/d730bba06f43312d3ba4669d3b904e5ab1df271b949305e579f056d1d810/tinybrain-1.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8a947b8812a65711277e1946d3be4d75", "sha256": "cc68a5f987843a5ad70f31a436fb3f6e8edb8ac491925edf0266f6c927c67d2b" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "8a947b8812a65711277e1946d3be4d75", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.7", "size": 2886130, "upload_time": "2022-03-05T16:10:54", "upload_time_iso_8601": "2022-03-05T16:10:54.100973Z", "url": "https://files.pythonhosted.org/packages/3b/e4/31ba721f22379bdb25fd8ecb3edf99ac23cc1d75f8c4c8d9c85dd2cbb971/tinybrain-1.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9f9a1a4ae7b26e6510ba14a2367c039a", "sha256": "8d62ec071449af44ff3c624313f95a3b6749f3ba4a8d071e58fafbdb7e7e043f" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "9f9a1a4ae7b26e6510ba14a2367c039a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.7", "size": 2751873, "upload_time": "2022-03-05T16:10:56", "upload_time_iso_8601": "2022-03-05T16:10:56.327057Z", "url": "https://files.pythonhosted.org/packages/9a/b7/314cef6182a8e589f76c8465c90cd674638ddfb1c38ea1a9b9b232e47406/tinybrain-1.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac32a2aabe038ec31325d30640efac31", "sha256": "48b732b48d94ea9039e23fad7dece930caff7e49c92f39daa0032e1f4dc72b50" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "ac32a2aabe038ec31325d30640efac31", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.7", "size": 640814, "upload_time": "2022-03-05T16:11:01", "upload_time_iso_8601": "2022-03-05T16:11:01.320986Z", "url": "https://files.pythonhosted.org/packages/4f/a6/944cd74ef6d6fb01458948ca210914a63d91c0b977bd663edda003ec1e54/tinybrain-1.3.0-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "483d0c37bd2b0a7d9026b9ad004ae2d2", "sha256": "02ca08db30d7fb0c7f6863ccdc77ef9a0773ab535294d7f1cc8f389a7386fc95" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "483d0c37bd2b0a7d9026b9ad004ae2d2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": "~=3.7", "size": 683138, "upload_time": "2022-03-05T16:11:02", "upload_time_iso_8601": "2022-03-05T16:11:02.665432Z", "url": "https://files.pythonhosted.org/packages/b5/0c/300a5a1c9b95b23db0de6bd3010124c373244aecc41a0515d217cb229c29/tinybrain-1.3.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d339b4dfdbf8d691f6fa963154e055ea", "sha256": "e87baea17a2ea3740ffdf58356b1318226f0a2b947e6788821dc3348696c719c" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d339b4dfdbf8d691f6fa963154e055ea", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.7", "size": 924479, "upload_time": "2022-03-05T16:11:04", "upload_time_iso_8601": "2022-03-05T16:11:04.209649Z", "url": "https://files.pythonhosted.org/packages/8c/82/c8fbe0d345ca7d6c839e7c51def2afc48773f40fff4d1082001e0d6cd782/tinybrain-1.3.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9aa6c3ffec31fe4c9ec7048d22d386cc", "sha256": "5a54a5e31b58d8893f0d8e3401de375907be75cb833dba92f18195c0253ace99" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp38-cp38-macosx_11_0_universal2.whl", "has_sig": false, "md5_digest": "9aa6c3ffec31fe4c9ec7048d22d386cc", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.7", "size": 1297253, "upload_time": "2022-03-05T16:11:05", "upload_time_iso_8601": "2022-03-05T16:11:05.865163Z", "url": "https://files.pythonhosted.org/packages/fc/5e/cd36de0cd0a88f666fe6b977e22c925240a0769d998eaf844f301585afe8/tinybrain-1.3.0-cp38-cp38-macosx_11_0_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50d80833ce4e96591498151e8258d4ee", "sha256": "8045b2367b41ebd2f5d152bce37efe0c79685b11099f34fc4c2314f1fc0bfffc" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "50d80833ce4e96591498151e8258d4ee", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.7", "size": 3105433, "upload_time": "2022-03-05T16:11:07", "upload_time_iso_8601": "2022-03-05T16:11:07.494118Z", "url": "https://files.pythonhosted.org/packages/15/c2/1967ba5499795d60154e33becbb517f804ef997f861cef22df8f8f5d3d2f/tinybrain-1.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c8c06223d8a0fb09d8d2bca6d200270", "sha256": "5bb6e651e03736d5fb4ca6a4d0f59ebd8c6605071273b0a63ed242b6ca912085" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "0c8c06223d8a0fb09d8d2bca6d200270", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.7", "size": 3237969, "upload_time": "2022-03-05T16:11:09", "upload_time_iso_8601": "2022-03-05T16:11:09.621755Z", "url": "https://files.pythonhosted.org/packages/8c/2a/6bceda93594105d70f26a925b6a865f8cd12dc977b25127e3fe519c2c423/tinybrain-1.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0800033a4f68ef9d6c9f162a85628502", "sha256": "812755d2082fe67443bf0c45ca1d3f687a074b725aa8112c0d40dae880aa7f79" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "0800033a4f68ef9d6c9f162a85628502", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.7", "size": 3089240, "upload_time": "2022-03-05T16:11:11", "upload_time_iso_8601": "2022-03-05T16:11:11.966363Z", "url": "https://files.pythonhosted.org/packages/b3/7d/9fb913bf00ad79ba8882caee565208e8c027073828b2aa477d98c9dc6c55/tinybrain-1.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b4d9e52aaf6d7c1dd5275a8e7aa392c5", "sha256": "440925f69d2ef872c3a5e0ee6ac2edcc67561775e07e65ddf1b5d22a7a560ec8" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "b4d9e52aaf6d7c1dd5275a8e7aa392c5", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.7", "size": 653330, "upload_time": "2022-03-05T16:11:14", "upload_time_iso_8601": "2022-03-05T16:11:14.013780Z", "url": "https://files.pythonhosted.org/packages/60/f1/40804e030539165bb38450c6acd3871982d5497990e7aa8dec09f6aa6cf5/tinybrain-1.3.0-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "927f4c9f06f811cfe6f0dadeb1f9892b", "sha256": "480dd03af98460d8fbf6decb0a9a4f264d392079f6c572efc6b33ade47afc2c6" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "927f4c9f06f811cfe6f0dadeb1f9892b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": "~=3.7", "size": 709057, "upload_time": "2022-03-05T16:11:16", "upload_time_iso_8601": "2022-03-05T16:11:16.174805Z", "url": "https://files.pythonhosted.org/packages/d2/74/124d52d5deaa20f949b32551c7dbe11a2bc5cd7b19c688913a611637d0be/tinybrain-1.3.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6546c9d2552f95ff1da1b08436b98f23", "sha256": "6ab4852cd5946ecd301703d9565da00a477a2bd385ea84a64556381f64781ff3" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp39-cp39-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "6546c9d2552f95ff1da1b08436b98f23", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.7", "size": 1305308, "upload_time": "2022-03-05T16:11:18", "upload_time_iso_8601": "2022-03-05T16:11:18.132886Z", "url": "https://files.pythonhosted.org/packages/5c/ce/21b6227c9016ba8d32d41409d4a1df685ce04b7584aec231d251c2c2fb4c/tinybrain-1.3.0-cp39-cp39-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "afd571763a4e5e4d1f3c803fb9b8ca5f", "sha256": "5fbbb29044025c25d99ab714280c6d7f6a1738d015a96ce1bdfb36c53e2d9b7a" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "afd571763a4e5e4d1f3c803fb9b8ca5f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.7", "size": 928240, "upload_time": "2022-03-05T16:11:19", "upload_time_iso_8601": "2022-03-05T16:11:19.680989Z", "url": "https://files.pythonhosted.org/packages/df/3c/b6b2ea0cba473d71156fa3896840dfa3b3e2e1be4323ee94f7fb1d3957c8/tinybrain-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "538d43b40a939da1c524ae708489030a", "sha256": "88ef95419ff0fce6d351e86862f92004fd814a6f7c28901dd87edbcbe905fd62" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "538d43b40a939da1c524ae708489030a", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.7", "size": 2998650, "upload_time": "2022-03-05T16:11:21", "upload_time_iso_8601": "2022-03-05T16:11:21.451518Z", "url": "https://files.pythonhosted.org/packages/e1/aa/f51a2ed99adb7e25d7f562950a7d46d89d938f01da1a47925b52cc7ca41f/tinybrain-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1a94f54a877cc761c939cb046e83b171", "sha256": "e3cb3ca4d396b29f2e2459ca927bd0e9c069108c97b5187d42fbde85d038b180" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "1a94f54a877cc761c939cb046e83b171", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.7", "size": 3119958, "upload_time": "2022-03-05T16:11:24", "upload_time_iso_8601": "2022-03-05T16:11:24.000904Z", "url": "https://files.pythonhosted.org/packages/65/b7/7b620abe9ca6bfbf72590361913739b2ade1083ee2bf75b6ec3a159ea4b0/tinybrain-1.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e25ed1e0d268111ad7a8f987e22b545e", "sha256": "9e7644c6c4d7717fb8d59354dc2976e791bf790c4d9ff55e8ca6356083928344" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "e25ed1e0d268111ad7a8f987e22b545e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.7", "size": 3006386, "upload_time": "2022-03-05T16:11:26", "upload_time_iso_8601": "2022-03-05T16:11:26.324583Z", "url": "https://files.pythonhosted.org/packages/70/1f/9594f91b7c311db49b0a61c9ef089e215ca527432642c9abdbd043392bc3/tinybrain-1.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9690a0dbe3f147787ee7bd8f0c40ad19", "sha256": "17bd40f926aa6fbff638f98f11a350330b2e98ab362a20a0542729f4c5d60c0c" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "9690a0dbe3f147787ee7bd8f0c40ad19", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.7", "size": 650337, "upload_time": "2022-03-05T16:11:28", "upload_time_iso_8601": "2022-03-05T16:11:28.404017Z", "url": "https://files.pythonhosted.org/packages/21/aa/d54e7caa94b5c7057d67bd66f53a5d582cb43930495527520f0804f7fb60/tinybrain-1.3.0-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "69c9d5fad3eedca7034e525d244acf63", "sha256": "1120dc4a152925a215636f1ccc21d8665e86cd10f10a9266fde20ad053cac158" }, "downloads": -1, "filename": "tinybrain-1.3.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "69c9d5fad3eedca7034e525d244acf63", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": "~=3.7", "size": 704718, "upload_time": "2022-03-05T16:11:29", "upload_time_iso_8601": "2022-03-05T16:11:29.834789Z", "url": "https://files.pythonhosted.org/packages/8f/93/5c3d478e692e5715748ac74b81b6003d54a9432906bb0d14f24bad2241ef/tinybrain-1.3.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "436a9b16226229a626a78c8c1dbd17fa", "sha256": "155bfc9e52efcd8ced5bcef67f4fd2154b7c1dd3075765a10f3412219713ec8e" }, "downloads": -1, "filename": "tinybrain-1.3.0.tar.gz", "has_sig": false, "md5_digest": "436a9b16226229a626a78c8c1dbd17fa", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.7", "size": 401471, "upload_time": "2022-03-05T16:11:31", "upload_time_iso_8601": "2022-03-05T16:11:31.460737Z", "url": "https://files.pythonhosted.org/packages/34/9b/3d64eedea64e128cfd32113bd2236b7a5a078d6be5dde50ca9110842ccc3/tinybrain-1.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }