{ "info": { "author": "Michael Boyle", "author_email": "michael.oliver.boyle@gmail.com", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10" ], "description": "[![Test and deploy](https://github.com/moble/scri/actions/workflows/build.yml/badge.svg)](https://github.com/moble/scri/actions/workflows/build.yml)\n[![Documentation Status](https://readthedocs.org/projects/scri/badge/?version=latest)](https://scri.readthedocs.io/en/latest/?badge=latest)\n[![PyPI Version](https://img.shields.io/pypi/v/scri?color=)](https://pypi.org/project/scri/)\n[![Conda Version](https://img.shields.io/conda/vn/conda-forge/scri.svg?color=)](https://anaconda.org/conda-forge/scri)\n[![MIT License](https://img.shields.io/github/license/moble/scri.svg)](https://github.com/moble/scri/blob/main/LICENSE)\n[![DOI](https://zenodo.org/badge/doi/10.5281/zenodo.4041971.svg)](https://doi.org/10.5281/zenodo.4041971)\n\nScri\n====\n\nPython/numba code for manipulating time-dependent functions of spin-weighted\nspherical harmonics\n\n## Citing this code\n\nIf you use this code for academic work (I can't actually imagine any other use\nfor it), please cite the latest version that you used in your publication. The DOI is:\n\n* DOI: [10.5281/zenodo.4041972](https://doi.org/10.5281/zenodo.4041972) ([BibTeX entry on Zenodo](https://zenodo.org/record/4041972/export/hx#.YFNpLe1KiV4))\n\nAlso please cite the papers for/by which it was produced:\n\n* \"Angular velocity of gravitational radiation from precessing binaries and the\n corotating frame\", Boyle,\n [Phys. Rev. D, 87, 104006](http://link.aps.org/doi/10.1103/PhysRevD.87.104006)\n (2013).\n* \"Gravitational-wave modes from precessing black-hole binaries\", Boyle *et\n al.*, http://arxiv.org/abs/1409.4431 (2014).\n* \"Transformations of asymptotic gravitational-wave data\", Boyle,\n [Phys. Rev. D, 93, 084031](http://link.aps.org/doi/10.1103/PhysRevD.93.084031)\n (2015).\n\nBibtex entries for these articles can be found\n[here](https://raw.githubusercontent.com/moble/scri/master/scri.bib). It might\nalso be nice of you to provide a link directly to this source code.\n\n\n## Quick start\n\nAssuming you have the [`anaconda`](http://continuum.io/downloads) distribution\nof python (the preferred distribution for scientific applications),\ninstallation is as simple as\n\n```sh\nconda update -y --all\nconda install -c conda-forge scri\n```\n\nIf you need to install `anaconda` first, it's very easy and doesn't require root permissions. Just [download](http://continuum.io/downloads) and follow the instructions \u2014 particularly setting your `PATH`. Also, make sure `PYTHONPATH` and `PYTHONHOME` are *not* set. Ensure that it worked by running `python --version`. It should say something about anaconda; if not, you probably forgot to set your `PATH`. Now just run the installation command above.\n\nThen, in python, you can check to make sure installation worked with\n\n```python\nimport scri\nw = scri.WaveformModes()\n```\n\nNow, `w` is an object to contain time and waveform data, as well as various\nrelated pieces of information -- though it is trivial in this case, because we\nhaven't given it any data. For more information, see the docstrings of `scri`,\n`scri.WaveformModes`, etc.\n\n\n## Dependencies\n\nThe dependencies should be taken care of automatically by the quick\ninstallation instructions above. However, if you run into problems (or if you\nfoolishly decide not to use anaconda to install things), it may be because you\nare missing some or all of these:\n\n * Standard packages (come with full anaconda installation)\n * [`numpy`](http://www.numpy.org/)\n * [`scipy`](http://scipy.org/)\n * [`matplotlib`](http://matplotlib.org/)\n * [`h5py`](http://www.h5py.org/)\n * [`numba`](http://numba.pydata.org/)\n * My packages, available from anaconda.org and/or github\n * [`fftw`](https://github.com/moble/fftw) (not actually mine,\n but I maintain a copy for easy installation)\n * [`spinsfast`](https://github.com/moble/spinsfast) (not actually mine,\n but I maintain a copy with updated python features)\n * [`quaternion`](https://github.com/moble/quaternion)\n * [`spherical_functions`](https://github.com/moble/spherical_functions)\n\nAll these dependencies are installed automatically when you use the `conda`\ncommand described above. The `anaconda` distribution can co-exist with your\nsystem python with no trouble -- you simply add the path to anaconda before\nyour system executables. In fact, your system python probably needs to stay\ncrusty and old so that your system doesn't break, while you want to use a newer\nversion of python to actually run fancy new code like this. This is what\n`anaconda` does for you. It installs into your home directory, so it doesn't\nrequire root access. It can be uninstalled easily, since it exists entirely\ninside its own directory. And updates are trivial.\n\n### \"Manual\" installation\n\nThe instructions in the \"Quick Start\" section above should be sufficient, as\nthere really is no good reason not to use `anaconda`. You will occasionally\nhear people complain about it not working; these people have not installed it\ncorrectly, and have other python-related environment variables that shouldn't\nbe there. You don't want to be one of those people.\n\nNonetheless, it is possible to install these packages without anaconda -- in\nprinciple. The main hurdle to overcome is `numba`. Maybe there are nice ways\nto install `numba` without `anaconda`. I don't know. I don't care. But if\nyou're awesome enough to do that, you're awesome enough to install all the\nother dependencies without advice from me. But in short, you can either use\nthe `setup.py` files as usual, or just use `pip`:\n\n```sh\npip install git+git://github.com/moble/spinsfast\npip install git+git://github.com/moble/quaternion\npip install git+git://github.com/moble/spherical_functions\npip install git+git://github.com/moble/scri\n```\n\nAnd since you're just *soooo* cool, you already know that the `--user` flag is\nmissing from those commands because you're presumably using a virtual\nenvironment, hotshot.\n\n(If you're really not that cool, and aren't using `virtualenv`, you might think\nyou should `sudo` those commands. But there's no need if you just use the\n`--user` flag instead. That installs packages into your user directory, which\nis usually a better idea.)\n\nNote that `spinsfast` depends (for both building and running) on `fftw`. If\nyou run into build problems with `spinsfast`, it probably can't find the\nheader or library for `fftw`. See the documentation of my copy of `spinsfast`\n[here](https://github.com/moble/spinsfast#manual-installation) for suggestions\non solving that problem. Of course, with `conda`, `fftw` is installed in the\nright place from my channel automatically.\n\n\n## Documentation\n\nTutorials and automatically generated API documentation are available on [Read the Docs: scri](https://scri.readthedocs.io/).\n\n## Acknowledgments\n\nThis code is, of course, hosted on github; because it is an open-source\nproject, the hosting is free, and all the wonderful features of github are\navailable, including free wiki space and web page hosting, pull requests, a\nnice interface to the git logs, etc.\n\nEvery change in this code is\n[auomatically tested](https://travis-ci.org/moble/scri) on\n[Travis-CI](https://travis-ci.org/). This is a free service (for open-source\nprojects like this one), which integrates beautifully with github, detecting\neach commit and automatically re-running the tests. The code is downloaded and\ninstalled fresh each time, and then tested, on both versions of python (2 and\n3). This ensures that no change I make to the code breaks either installation\nor any of the features that I have written tests for.\n\nEvery change to this code is also recompiled automatically, bundled into a\n`conda` package, and made available for download from\n[anaconda.org](https://anaconda.org/moble/scri). Again, because this is an\nopen-source project all those nice features are free.\n\nThe work of creating this code was supported in part by the Sherman Fairchild\nFoundation and by NSF Grants No. PHY-1306125 and AST-1333129.\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/moble/scri", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "scri", "package_url": "https://pypi.org/project/scri/", "platform": null, "project_url": "https://pypi.org/project/scri/", "project_urls": { "Homepage": "https://github.com/moble/scri" }, "release_url": "https://pypi.org/project/scri/2022.3.5/", "requires_dist": [ "numpy (>=1.20)", "scipy (>=1.0,<2.0)", "numba (>=0.55)", "h5py (>=3,<4)", "numpy-quaternion (>=2022.4)", "spherical-functions (>=2022.4)", "spinsfast (>=2022.4)", "sxs (>=2022.3.4)", "tqdm (>=4.48.2,<4.61.2)", "importlib-metadata (>=1.0,<2.0); python_version < \"3.8\"", "mkdocs (>=1.1.2,<2.0.0); extra == \"mkdocs\"", "mktheapidocs[plugin] (>=0.2.0,<0.3.0); extra == \"mktheapidocs\"" ], "requires_python": ">=3.8,<3.11", "summary": "Time-dependent functions of spin-weighted spherical harmonics", "version": "2022.3.5", "yanked": false, "yanked_reason": null }, "last_serial": 13795470, "releases": { "2018.02.22.23.55.50": [ { "comment_text": "", "digests": { "md5": "04d866faab11d87fe83e7f5f450eb4f7", "sha256": "0cdbd00b9fd9aef1e721148ba101067a732c33f52950baf2d04d59c3a6896d15" }, "downloads": -1, "filename": "scri-2018.02.22.23.55.50.tar.gz", "has_sig": false, "md5_digest": "04d866faab11d87fe83e7f5f450eb4f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45303, "upload_time": "2018-02-23T04:59:43", "upload_time_iso_8601": "2018-02-23T04:59:43.327685Z", "url": "https://files.pythonhosted.org/packages/12/80/16cf6759012db0dd43c65664a12a88daf5b2da8d014d31d8e4f48c66d309/scri-2018.02.22.23.55.50.tar.gz", "yanked": false, "yanked_reason": null } ], "2018.02.23.04.40.18": [ { "comment_text": "", "digests": { "md5": "a736bc9927d6c3d201ad1d544b6c8155", "sha256": "3c877a58dcd77b74eb7e53f7c93f4377d9ecac3bd3e3f84f04efcab4b51fc9c2" }, "downloads": -1, "filename": "scri-2018.02.23.04.40.18.tar.gz", "has_sig": false, "md5_digest": "a736bc9927d6c3d201ad1d544b6c8155", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45438, "upload_time": "2018-02-23T04:40:19", "upload_time_iso_8601": "2018-02-23T04:40:19.659878Z", "url": "https://files.pythonhosted.org/packages/82/75/2ff8e74a87501a83ad83dc0061d7aaec448c8a2d8bbe2f7ad1935ea0a6c6/scri-2018.02.23.04.40.18.tar.gz", "yanked": false, "yanked_reason": null } ], "2018.07.11.13.24.28": [ { "comment_text": "", "digests": { "md5": "8d77777949f471b81d4c4d0126419999", "sha256": "ba600f8e7ef472b1569f88d351d623fe9732356f1f3e8385f858e19f107ac970" }, "downloads": -1, "filename": "scri-2018.07.11.13.24.28.tar.gz", "has_sig": false, "md5_digest": "8d77777949f471b81d4c4d0126419999", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65539, "upload_time": "2018-09-28T17:08:31", "upload_time_iso_8601": "2018-09-28T17:08:31.140324Z", "url": "https://files.pythonhosted.org/packages/38/7d/5251ce97c5a4e266811542835ff70b1f760ac2a4a7af14db055c0bce10bc/scri-2018.07.11.13.24.28.tar.gz", "yanked": false, "yanked_reason": null } ], "2018.09.28.13.11.36": [ { "comment_text": "", "digests": { "md5": "81fc5e4ef8cb306c7c9a4d8ebd91257a", "sha256": "cde84a07829e52ab1332b6ec171d9e43827aa8223ef44c0aa288e1d10291622c" }, "downloads": -1, "filename": "scri-2018.09.28.13.11.36.tar.gz", "has_sig": false, "md5_digest": "81fc5e4ef8cb306c7c9a4d8ebd91257a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65540, "upload_time": "2018-09-28T17:11:50", "upload_time_iso_8601": "2018-09-28T17:11:50.149022Z", "url": "https://files.pythonhosted.org/packages/73/14/a302bf9a81127766287130f26dadb2c0aeb39b0a715aca1224a30d8ac58b/scri-2018.09.28.13.11.36.tar.gz", "yanked": false, "yanked_reason": null } ], "2019.03.20.12.03.46": [ { "comment_text": "", "digests": { "md5": "a0fd24848bb06a8b209acdc56324e5fb", "sha256": "6a474bf3e62b14268e9a39e1072cc069ac08a4978d2240b8db3bf7eab4a6b472" }, "downloads": -1, "filename": "scri-2019.03.20.12.03.46.tar.gz", "has_sig": false, "md5_digest": "a0fd24848bb06a8b209acdc56324e5fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66302, "upload_time": "2019-03-20T16:04:01", "upload_time_iso_8601": "2019-03-20T16:04:01.580278Z", "url": "https://files.pythonhosted.org/packages/23/50/fdce2f6c96eaa5169af6edbf547cdb4bfcf81d44b8f5f0d5c4f4cbef2a70/scri-2019.03.20.12.03.46.tar.gz", "yanked": false, "yanked_reason": null } ], "2019.10.28.11.59.32": [ { "comment_text": "", "digests": { "md5": "73bd965246f6702b6999f3536601f536", "sha256": "08a3079a10f1e3a64f437563849d60728178ee783b3d63e45e3efab4ba827aa5" }, "downloads": -1, "filename": "scri-2019.10.28.11.59.32.tar.gz", "has_sig": false, "md5_digest": "73bd965246f6702b6999f3536601f536", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81449, "upload_time": "2019-10-28T16:00:21", "upload_time_iso_8601": "2019-10-28T16:00:21.433473Z", "url": "https://files.pythonhosted.org/packages/a0/cc/9ae982f3b907edaa24d8aa47e1fd5d9c50b9ed322eaa7d8611132257c398/scri-2019.10.28.11.59.32.tar.gz", "yanked": false, "yanked_reason": null } ], "2019.12.11.13.26.16": [ { "comment_text": "", "digests": { "md5": "6bdbc11bf6451799d4497c0cdfad7769", "sha256": "b5d4def6dfd77758dc2e9f006a0917f64f697667a64cf6a72142e33b190a0a62" }, "downloads": -1, "filename": "scri-2019.12.11.13.26.16.tar.gz", "has_sig": false, "md5_digest": "6bdbc11bf6451799d4497c0cdfad7769", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81778, "upload_time": "2019-12-11T20:31:38", "upload_time_iso_8601": "2019-12-11T20:31:38.063349Z", "url": "https://files.pythonhosted.org/packages/27/ec/11d679ba30a3d53692acd572337707a77c0c899a31c1a76b1b46d719e1b5/scri-2019.12.11.13.26.16.tar.gz", "yanked": false, "yanked_reason": null } ], "2019.3.20.20.57.37": [ { "comment_text": "", "digests": { "md5": "552177b804135b3bdb1bcffbe98b91e5", "sha256": "58b4b3a6832144743bdf2178c0b6facaa290b02943e7d6a88a5623cde0dc7adc" }, "downloads": -1, "filename": "scri-2019.3.20.20.57.37.tar.gz", "has_sig": false, "md5_digest": "552177b804135b3bdb1bcffbe98b91e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66632, "upload_time": "2019-03-21T01:14:09", "upload_time_iso_8601": "2019-03-21T01:14:09.043930Z", "url": "https://files.pythonhosted.org/packages/01/4b/bcfeadfac39ea2da2223a4fe2e1bf532779c9e1efdc1ec65c3a196948f44/scri-2019.3.20.20.57.37.tar.gz", "yanked": false, "yanked_reason": null } ], "2019.3.20.21.24.22": [ { "comment_text": "", "digests": { "md5": "96591f15b0c0f1165683c42fc1ba4f4d", "sha256": "7365d3e644b1fa55b46814b7e3371c75e3b041838344b900e5e26f400043f78a" }, "downloads": -1, "filename": "scri-2019.3.20.21.24.22.tar.gz", "has_sig": false, "md5_digest": "96591f15b0c0f1165683c42fc1ba4f4d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66630, "upload_time": "2019-03-21T01:24:52", "upload_time_iso_8601": "2019-03-21T01:24:52.071423Z", "url": "https://files.pythonhosted.org/packages/54/1b/ee4e29c5810b8f8d667b537003ca3645c400c7a7c72bc77b190216a4ec70/scri-2019.3.20.21.24.22.tar.gz", "yanked": false, "yanked_reason": null } ], "2019.3.20.21.53.55": [ { "comment_text": "", "digests": { "md5": "ab89fb89e589a58453b9b2e25fd41cd7", "sha256": "029baf860a302624e7e508f5886613e29bfa516456b524dd4fdacec0b2dc18a7" }, "downloads": -1, "filename": "scri-2019.3.20.21.53.55.tar.gz", "has_sig": false, "md5_digest": "ab89fb89e589a58453b9b2e25fd41cd7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 70355, "upload_time": "2019-03-21T01:54:24", "upload_time_iso_8601": "2019-03-21T01:54:24.544629Z", "url": "https://files.pythonhosted.org/packages/a5/e5/7b497987ea42943656623d8cdc58ef533a91ec256a7b038def21b85be6da/scri-2019.3.20.21.53.55.tar.gz", "yanked": false, "yanked_reason": null } ], "2019.3.21.21.27.29": [ { "comment_text": "", "digests": { "md5": "85925773477867c12175908f267c2f82", "sha256": "4abb5b8619ff204808c50c2402e993b695ab49f05841f38d75cea861d05aee09" }, "downloads": -1, "filename": "scri-2019.3.21.21.27.29.tar.gz", "has_sig": false, "md5_digest": "85925773477867c12175908f267c2f82", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71076, "upload_time": "2019-03-22T01:28:06", "upload_time_iso_8601": "2019-03-22T01:28:06.797447Z", "url": "https://files.pythonhosted.org/packages/e4/35/19bd748d9e27f9629e1714927ef8d0a0b95851a85acabbf0c8c4418e6645/scri-2019.3.21.21.27.29.tar.gz", "yanked": false, "yanked_reason": null } ], "2019.5.23.13.24.58": [ { "comment_text": "", "digests": { "md5": "8e95160f0067cda3f044ebe0bb7df151", "sha256": "6c4b66177d3c0b150b88ae3671834466b745c9d6f5476e00a35a068e2ad587d4" }, "downloads": -1, "filename": "scri-2019.5.23.13.24.58.tar.gz", "has_sig": false, "md5_digest": "8e95160f0067cda3f044ebe0bb7df151", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69402, "upload_time": "2019-05-23T17:25:55", "upload_time_iso_8601": "2019-05-23T17:25:55.366041Z", "url": "https://files.pythonhosted.org/packages/b3/84/a8017ce5f7fbc52fd5974742752ec3febd4ddeffbf24f7fac16c9059747a/scri-2019.5.23.13.24.58.tar.gz", "yanked": false, "yanked_reason": null } ], "2019.6.5.13.20.47": [ { "comment_text": "", "digests": { "md5": "3e54de26a362171e6f9f42fa6af8c9aa", "sha256": "0d5969392f78582d1013079df13f472c0a05465c8a82bf706ce3082d13217c5a" }, "downloads": -1, "filename": "scri-2019.6.5.13.20.47.tar.gz", "has_sig": false, "md5_digest": "3e54de26a362171e6f9f42fa6af8c9aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72043, "upload_time": "2019-06-12T01:02:43", "upload_time_iso_8601": "2019-06-12T01:02:43.376818Z", "url": "https://files.pythonhosted.org/packages/7c/9b/a60cb7d8c13952ad3be8aedb6fd1c629714c28f0a2d56a2405f4399be424/scri-2019.6.5.13.20.47.tar.gz", "yanked": false, "yanked_reason": null } ], "2019.8.9.16.54.31": [ { "comment_text": "", "digests": { "md5": "6f009f9604c6c51f520410f91f5fc97e", "sha256": "c90e43b9350b0845bab398c77883497125d158262c35d3946f8b49bf4adf4114" }, "downloads": -1, "filename": "scri-2019.8.9.16.54.31.tar.gz", "has_sig": false, "md5_digest": "6f009f9604c6c51f520410f91f5fc97e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79841, "upload_time": "2019-08-09T20:55:08", "upload_time_iso_8601": "2019-08-09T20:55:08.987685Z", "url": "https://files.pythonhosted.org/packages/aa/45/79b4d6f21180a418be9ef01aec3a58892f317797b5468088960f06bb5a24/scri-2019.8.9.16.54.31.tar.gz", "yanked": false, "yanked_reason": null } ], "2020.11.24.22.57.48": [ { "comment_text": "", "digests": { "md5": "3ba8b77981433bef2354c65252a0fd01", "sha256": "06b3f070a61907cb1c6315456bbf491f0a6c5ccad0e02358fb459c08ed637782" }, "downloads": -1, "filename": "scri-2020.11.24.22.57.48.tar.gz", "has_sig": false, "md5_digest": "3ba8b77981433bef2354c65252a0fd01", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 107491, "upload_time": "2020-11-25T04:00:04", "upload_time_iso_8601": "2020-11-25T04:00:04.040467Z", "url": "https://files.pythonhosted.org/packages/d4/9c/6629c0a5c8694d4a5e5140c17830d4391f9e29c280e1401174bfb3df61f8/scri-2020.11.24.22.57.48.tar.gz", "yanked": false, "yanked_reason": null } ], "2020.7.30.14.3.40": [ { "comment_text": "", "digests": { "md5": "710206660e4b18d31c37104721fa5f3c", "sha256": "8e34e7ac70795f4fa9943eedcd579d95543473b41c320bc1019193a9f81aeada" }, "downloads": -1, "filename": "scri-2020.7.30.14.3.40.tar.gz", "has_sig": false, "md5_digest": "710206660e4b18d31c37104721fa5f3c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 105734, "upload_time": "2020-07-30T18:09:28", "upload_time_iso_8601": "2020-07-30T18:09:28.508123Z", "url": "https://files.pythonhosted.org/packages/bf/a7/b73755c5b4b1f360f1360b6809084c22f88cb59f5041d79515a5f35167d3/scri-2020.7.30.14.3.40.tar.gz", "yanked": false, "yanked_reason": null } ], "2020.7.30.17.4.28": [ { "comment_text": "", "digests": { "md5": "5b3fe0d0510b42cb86d69576fe8a93a9", "sha256": "6865c1779313abaed3dc19572de7739c2e8e338abd0662af59c8411876f85951" }, "downloads": -1, "filename": "scri-2020.7.30.17.4.28.tar.gz", "has_sig": false, "md5_digest": "5b3fe0d0510b42cb86d69576fe8a93a9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 105686, "upload_time": "2020-07-30T21:08:26", "upload_time_iso_8601": "2020-07-30T21:08:26.426828Z", "url": "https://files.pythonhosted.org/packages/ff/1e/a8f3d1963c8bcb11f416f52ed6f5c358ba77f3d7031dd6d43457015e7555/scri-2020.7.30.17.4.28.tar.gz", "yanked": false, "yanked_reason": null } ], "2020.7.31.12.13.31": [ { "comment_text": "", "digests": { "md5": "90bd420988a58128ba491dfd9684956e", "sha256": "7f6cc2da132160c06fd725db962275de946b45ee4ec4408cf4eb3b853cd6fe64" }, "downloads": -1, "filename": "scri-2020.7.31.12.13.31.tar.gz", "has_sig": false, "md5_digest": "90bd420988a58128ba491dfd9684956e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 105587, "upload_time": "2020-07-31T16:23:50", "upload_time_iso_8601": "2020-07-31T16:23:50.442957Z", "url": "https://files.pythonhosted.org/packages/94/1b/49b4db5a45a80ed1ab3fdfcf6dc42ead8a4ba01a299c0b996ad681687125/scri-2020.7.31.12.13.31.tar.gz", "yanked": false, "yanked_reason": null } ], "2020.7.31.14.10.39": [ { "comment_text": "", "digests": { "md5": "8f3871f70a2803b32e9d3b449552cfd2", "sha256": "913cb2808e5f4f00a9b4c418e75cd17a469afb668bf52b9426eb98c5f086a49e" }, "downloads": -1, "filename": "scri-2020.7.31.14.10.39.tar.gz", "has_sig": false, "md5_digest": "8f3871f70a2803b32e9d3b449552cfd2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 105581, "upload_time": "2020-07-31T18:10:53", "upload_time_iso_8601": "2020-07-31T18:10:53.820060Z", "url": "https://files.pythonhosted.org/packages/cc/e9/9922bdec1604e6f552bda4a5a7223db00059c4b1d09c160a674dffb266f6/scri-2020.7.31.14.10.39.tar.gz", "yanked": false, "yanked_reason": null } ], "2020.7.31.15.47.46": [ { "comment_text": "", "digests": { "md5": "660b9f3fdfa2a46ebf5be71553e436d3", "sha256": "06ba84ff77d6109761aebd7813d8f532586e86522b97ad97f78db111fed5ae2b" }, "downloads": -1, "filename": "scri-2020.7.31.15.47.46.tar.gz", "has_sig": false, "md5_digest": "660b9f3fdfa2a46ebf5be71553e436d3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 105918, "upload_time": "2020-07-31T19:48:19", "upload_time_iso_8601": "2020-07-31T19:48:19.400959Z", "url": "https://files.pythonhosted.org/packages/9a/17/35c112dfffe262549c1db0c32885a154b0c76d38c97c621fa56bc1f6fa38/scri-2020.7.31.15.47.46.tar.gz", "yanked": false, "yanked_reason": null } ], "2020.7.31.16.6.41": [ { "comment_text": "", "digests": { "md5": "94a11520b508f28254a880030e563398", "sha256": "9a0da325c8a516582be0add9a24ace4916cb3162704bd9227b06bc9856328a1d" }, "downloads": -1, "filename": "scri-2020.7.31.16.6.41.tar.gz", "has_sig": false, "md5_digest": "94a11520b508f28254a880030e563398", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 105911, "upload_time": "2020-07-31T20:06:54", "upload_time_iso_8601": "2020-07-31T20:06:54.582792Z", "url": "https://files.pythonhosted.org/packages/cb/30/4ce78e020514af1cd42b8c02471b22fd2247b781da9367adca498f0028aa/scri-2020.7.31.16.6.41.tar.gz", "yanked": false, "yanked_reason": null } ], "2020.7.31.23.51.16": [ { "comment_text": "", "digests": { "md5": "1681b3c5b0523cf8e0152d705e77ea50", "sha256": "6167944d0e41a2c9ad34d532ee993c0f642c6c624ff0e114aa69e3a44ad60125" }, "downloads": -1, "filename": "scri-2020.7.31.23.51.16.tar.gz", "has_sig": false, "md5_digest": "1681b3c5b0523cf8e0152d705e77ea50", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 106327, "upload_time": "2020-08-01T03:51:32", "upload_time_iso_8601": "2020-08-01T03:51:32.724489Z", "url": "https://files.pythonhosted.org/packages/e9/dc/846a6db781be7a89993b6ec5ffd0877a71db26a37c4ee2cf798cf20eb64d/scri-2020.7.31.23.51.16.tar.gz", "yanked": false, "yanked_reason": null } ], "2020.8.18.15.46.4": [ { "comment_text": "", "digests": { "md5": "71a69597ac44a1b8818833bd2f9cf7b4", "sha256": "ef8b08f622e6ab3a1a218ce44cec257d591ad34badebf94d55b7b245aa0bd63e" }, "downloads": -1, "filename": "scri-2020.8.18.15.46.4.tar.gz", "has_sig": false, "md5_digest": "71a69597ac44a1b8818833bd2f9cf7b4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 107261, "upload_time": "2020-08-18T19:46:58", "upload_time_iso_8601": "2020-08-18T19:46:58.907243Z", "url": "https://files.pythonhosted.org/packages/11/f0/800af50a3ef787e91a6bebef5b8a6ce65dee55be76890677c1d40372beb7/scri-2020.8.18.15.46.4.tar.gz", "yanked": false, "yanked_reason": null } ], "2021.10.27.16.34.33": [ { "comment_text": "", "digests": { "md5": "708561cd2b3f6e32b9e608532bbcae2a", "sha256": "d81411fbfb96021b84790f599d0ca9dde2571b5a395575c43255cae6a50c2825" }, "downloads": -1, "filename": "scri-2021.10.27.16.34.33.tar.gz", "has_sig": false, "md5_digest": "708561cd2b3f6e32b9e608532bbcae2a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 116908, "upload_time": "2021-10-27T17:07:14", "upload_time_iso_8601": "2021-10-27T17:07:14.574151Z", "url": "https://files.pythonhosted.org/packages/7b/ac/14c9e26e2e7cbc710f0499030bca4aeb354c795bbb23f86a87c450028932/scri-2021.10.27.16.34.33.tar.gz", "yanked": false, "yanked_reason": null } ], "2021.10.28.0": [ { "comment_text": "", "digests": { "md5": "01bc935fedd5e01ff04c08445f03ab04", "sha256": "107b8b918c40d8c61228ad4d0a642945b0ef14d8943cfe4ae31114da7014c4e2" }, "downloads": -1, "filename": "scri-2021.10.28.0-py3-none-any.whl", "has_sig": false, "md5_digest": "01bc935fedd5e01ff04c08445f03ab04", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8,<3.11", "size": 129826, "upload_time": "2022-03-02T23:09:31", "upload_time_iso_8601": "2022-03-02T23:09:31.034302Z", "url": "https://files.pythonhosted.org/packages/09/47/d61b094a1e78694abb29ea537b9c324042b20ac0f8498c88923b12e1a79b/scri-2021.10.28.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1ba09f5e1d8b81a97d36549c0bd24402", "sha256": "8b466aedad2a7f0ee87bb50b47ac7aed3c85e193f29365b7bdf084601699381f" }, "downloads": -1, "filename": "scri-2021.10.28.0.tar.gz", "has_sig": false, "md5_digest": "1ba09f5e1d8b81a97d36549c0bd24402", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8,<3.11", "size": 117967, "upload_time": "2022-03-02T23:09:32", "upload_time_iso_8601": "2022-03-02T23:09:32.629072Z", "url": "https://files.pythonhosted.org/packages/a4/74/c1398e0f4b94ac5cdb6f643d475dff916a5c1f0674679e316cbc21365d81/scri-2021.10.28.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2021.9.3.15.46.13": [ { "comment_text": "", "digests": { "md5": "3048eba8af29e5125782e8d812653244", "sha256": "8212a5f2fe146bd703a23d55628c476e4110a57abdda2df4d90963c9d865eefd" }, "downloads": -1, "filename": "scri-2021.9.3.15.46.13.tar.gz", "has_sig": false, "md5_digest": "3048eba8af29e5125782e8d812653244", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 116532, "upload_time": "2021-09-03T19:46:28", "upload_time_iso_8601": "2021-09-03T19:46:28.750781Z", "url": "https://files.pythonhosted.org/packages/b4/08/1414de460ec270c155bd934cb78da8a67e98a460c85b9f63b354b71bdecb/scri-2021.9.3.15.46.13.tar.gz", "yanked": false, "yanked_reason": null } ], "2021.9.3.19.18.34": [ { "comment_text": "", "digests": { "md5": "e52373dda7360d108f98b2f399735974", "sha256": "26ec8ad4e5d1df057c90e5564b8df9b9ab0a4a9f3d9460a7f01d2716f57f6362" }, "downloads": -1, "filename": "scri-2021.9.3.19.18.34.tar.gz", "has_sig": false, "md5_digest": "e52373dda7360d108f98b2f399735974", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 116347, "upload_time": "2021-09-03T19:24:08", "upload_time_iso_8601": "2021-09-03T19:24:08.604584Z", "url": "https://files.pythonhosted.org/packages/2f/a6/3252842bf4e4dbd8005fca21a7b512876f79dcefbab3c0d7235dc25e3b43/scri-2021.9.3.19.18.34.tar.gz", "yanked": true, "yanked_reason": "Inexplicable timestamp" } ], "2021.9.8.16.34.17": [ { "comment_text": "", "digests": { "md5": "8fa1e08af1eb071ae9256346a8c207e4", "sha256": "ee2f175c671b5869cefedee3e1bbb32b979b1bf78c0ced797004acf3f50813c0" }, "downloads": -1, "filename": "scri-2021.9.8.16.34.17.tar.gz", "has_sig": false, "md5_digest": "8fa1e08af1eb071ae9256346a8c207e4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 116803, "upload_time": "2021-09-08T20:42:46", "upload_time_iso_8601": "2021-09-08T20:42:46.540122Z", "url": "https://files.pythonhosted.org/packages/04/9d/f9702d84f64bc979860c4dfc937ad34299d3ea054d9233350d2a3af3c785/scri-2021.9.8.16.34.17.tar.gz", "yanked": false, "yanked_reason": null } ], "2022.0.0.0": [ { "comment_text": "", "digests": { "md5": "0f852ec234a2f3c76e28931446221cac", "sha256": "124f36eb57cfe7ca7cea41eb4c247dd94ef89569cf9044f300d373aa3ae99ef7" }, "downloads": -1, "filename": "scri-2022.0.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "0f852ec234a2f3c76e28931446221cac", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8,<3.11", "size": 129845, "upload_time": "2022-03-03T01:36:40", "upload_time_iso_8601": "2022-03-03T01:36:40.633488Z", "url": "https://files.pythonhosted.org/packages/92/c1/a7d8e951d8b56ed8d48808037da69d0bc7f1a5538bdd462c24043b736cf9/scri-2022.0.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2f1ac53ebd7aa18df7856504b01076b5", "sha256": "c8a365622c8d9d5d8fbdbde4f934e66ac49cac7c1e5368530d1f402f64a4e93d" }, "downloads": -1, "filename": "scri-2022.0.0.0.tar.gz", "has_sig": false, "md5_digest": "2f1ac53ebd7aa18df7856504b01076b5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8,<3.11", "size": 118016, "upload_time": "2022-03-03T01:36:41", "upload_time_iso_8601": "2022-03-03T01:36:41.801057Z", "url": "https://files.pythonhosted.org/packages/55/08/7260435d3f5753f150367f5e37cd2a9804f973d1c3fcb88bb6991d36396c/scri-2022.0.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2022.0.1": [ { "comment_text": "", "digests": { "md5": "257b3e3f8e47ac31d1d73e3312a4c14f", "sha256": "9e35ccfc38f4f46e2e9ef37a0aae82dacf29599c9e09afbeb17d765d6691f22d" }, "downloads": -1, "filename": "scri-2022.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "257b3e3f8e47ac31d1d73e3312a4c14f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8,<3.11", "size": 129829, "upload_time": "2022-03-03T01:41:05", "upload_time_iso_8601": "2022-03-03T01:41:05.385805Z", "url": "https://files.pythonhosted.org/packages/89/ea/30dea38e5ae08d0196ea4d753fff83ff7a75583fcf794c189232da262952/scri-2022.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "33f22ab75db1f75c23e825b088884650", "sha256": "08797b72bd6685436880aaa08b7028ea9430351a21abc3d4db1bc7d2e3a91cf5" }, "downloads": -1, "filename": "scri-2022.0.1.tar.gz", "has_sig": false, "md5_digest": "33f22ab75db1f75c23e825b088884650", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8,<3.11", "size": 118014, "upload_time": "2022-03-03T01:41:06", "upload_time_iso_8601": "2022-03-03T01:41:06.966323Z", "url": "https://files.pythonhosted.org/packages/a4/c5/a56e1462c7bb42c8baf29e7e031d0abbc166d1de0969dc960ed8474bc3bf/scri-2022.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2022.0.2": [ { "comment_text": "", "digests": { "md5": "46bb43710fa76ac9c7a0f820d5aa6d2c", "sha256": "06f541f8b77663504adf7b8049653ed6636a49355a8c9d2c4afb16360f067fe5" }, "downloads": -1, "filename": "scri-2022.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "46bb43710fa76ac9c7a0f820d5aa6d2c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8,<3.11", "size": 130533, "upload_time": "2022-03-28T15:49:36", "upload_time_iso_8601": "2022-03-28T15:49:36.294303Z", "url": "https://files.pythonhosted.org/packages/20/a4/31fa3627de76f5dac1f4a82d1c5044debe132dd19062fa8c1099c89a5b87/scri-2022.0.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "adf1281da86a3dcfb37e4a3e2b7a929e", "sha256": "e90db335ffe233e3019afc64a12d87803e4ac51803ffd0493441acf2517e0779" }, "downloads": -1, "filename": "scri-2022.0.2.tar.gz", "has_sig": false, "md5_digest": "adf1281da86a3dcfb37e4a3e2b7a929e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8,<3.11", "size": 118499, "upload_time": "2022-03-28T15:49:38", "upload_time_iso_8601": "2022-03-28T15:49:38.065795Z", "url": "https://files.pythonhosted.org/packages/11/54/02462b27de129e295920080a6187ad45fd9b5840c5e570ea06da84ca69df/scri-2022.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2022.3.1": [ { "comment_text": "", "digests": { "md5": "c13cb5c506de8871187954970c142f49", "sha256": "0efa41ee386e6da347eb23ec37c535a6f809bef438c6ff653ca7b077332a2a5e" }, "downloads": -1, "filename": "scri-2022.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "c13cb5c506de8871187954970c142f49", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8,<3.11", "size": 126546, "upload_time": "2022-04-05T03:21:56", "upload_time_iso_8601": "2022-04-05T03:21:56.366759Z", "url": "https://files.pythonhosted.org/packages/15/41/6ec5fa4464760bede8c1b598b6310e40cf39c1cbfdadb56a4e80b72b1485/scri-2022.3.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "59e28054af36028efd76d4b4b6738323", "sha256": "e3bf73cebce4bcca7ddbc90e21d0b2fe3ceaba830d7989a39e8baa81b17a7559" }, "downloads": -1, "filename": "scri-2022.3.1.tar.gz", "has_sig": false, "md5_digest": "59e28054af36028efd76d4b4b6738323", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8,<3.11", "size": 116485, "upload_time": "2022-04-05T03:21:57", "upload_time_iso_8601": "2022-04-05T03:21:57.517903Z", "url": "https://files.pythonhosted.org/packages/03/92/aa3fa0d9c4224bf8e98e35f9add566a9dfa0ad304de181636df48d82abf4/scri-2022.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2022.3.2": [ { "comment_text": "", "digests": { "md5": "be8b7adf13c274f65786747ba8f9d7dd", "sha256": "bd78daeeb7d1626a6eda83a36543dbf6d213342b87006879b8b98497e0d5b68e" }, "downloads": -1, "filename": "scri-2022.3.2-py3-none-any.whl", "has_sig": false, "md5_digest": "be8b7adf13c274f65786747ba8f9d7dd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8,<3.11", "size": 126548, "upload_time": "2022-04-05T19:50:13", "upload_time_iso_8601": "2022-04-05T19:50:13.017520Z", "url": "https://files.pythonhosted.org/packages/15/a0/31f2518c412852e3165ce54f5d463213d99884ff0ca20d18e2a977f3aeb7/scri-2022.3.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f4fbf99fdf755af95b5f516dae762af2", "sha256": "427bbda45d240e42e403b4ffa3eba731665f5245a1ae17cb8fc1fd6e066e6c68" }, "downloads": -1, "filename": "scri-2022.3.2.tar.gz", "has_sig": false, "md5_digest": "f4fbf99fdf755af95b5f516dae762af2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8,<3.11", "size": 116490, "upload_time": "2022-04-05T19:50:14", "upload_time_iso_8601": "2022-04-05T19:50:14.127452Z", "url": "https://files.pythonhosted.org/packages/db/d1/bec0150ecf22c5cffa68437a16ef12a84806c471960623be2d8e79dc3e90/scri-2022.3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2022.3.3": [ { "comment_text": "", "digests": { "md5": "2c43d6889ccc0f3d5218bf19a6c91698", "sha256": "6caf197bbe6ae4d88c98988a69d1c2243f9b6aa0c412663f66e45fdc14dff1fb" }, "downloads": -1, "filename": "scri-2022.3.3-py3-none-any.whl", "has_sig": false, "md5_digest": "2c43d6889ccc0f3d5218bf19a6c91698", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8,<3.11", "size": 126546, "upload_time": "2022-04-07T00:40:34", "upload_time_iso_8601": "2022-04-07T00:40:34.241538Z", "url": "https://files.pythonhosted.org/packages/5e/66/cc051fc8340d8530d5ae50a6fa57a8244d4f3440ac88671851303bc270ab/scri-2022.3.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0d88fc4222b57c061a41b8c5f2ecbd3c", "sha256": "ef8e9ff19aa3c04354a9575e38e8c39726f39dad735fc402e0b68214aa355c55" }, "downloads": -1, "filename": "scri-2022.3.3.tar.gz", "has_sig": false, "md5_digest": "0d88fc4222b57c061a41b8c5f2ecbd3c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8,<3.11", "size": 116483, "upload_time": "2022-04-07T00:40:35", "upload_time_iso_8601": "2022-04-07T00:40:35.571129Z", "url": "https://files.pythonhosted.org/packages/04/a0/96b33264b5a3b7cfa51aa9a8847b7a85cf633fa03ea1326de0f459c1b8c4/scri-2022.3.3.tar.gz", "yanked": false, "yanked_reason": null } ], "2022.3.4": [ { "comment_text": "", "digests": { "md5": "f40f334f872701bcfb5a5e79a0af05cd", "sha256": "f3ecd1c45f9de4b8776afd146b3a2ecbf3856acb87bb57ee34ef611ea4fa1af4" }, "downloads": -1, "filename": "scri-2022.3.4-py3-none-any.whl", "has_sig": false, "md5_digest": "f40f334f872701bcfb5a5e79a0af05cd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8,<3.11", "size": 126895, "upload_time": "2022-04-20T20:24:20", "upload_time_iso_8601": "2022-04-20T20:24:20.344336Z", "url": "https://files.pythonhosted.org/packages/a0/70/0e425a7f4c48cb5b501f3faa0d479eff396512f3f4cf6dc101d366df7922/scri-2022.3.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "da90f3dad4ea36f105f120d475c20b59", "sha256": "78b90f0f65f2c0ff9af7c7b249a0f3fb1d9bdddc69fc183e422e6a2663d62d78" }, "downloads": -1, "filename": "scri-2022.3.4.tar.gz", "has_sig": false, "md5_digest": "da90f3dad4ea36f105f120d475c20b59", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8,<3.11", "size": 116851, "upload_time": "2022-04-20T20:24:21", "upload_time_iso_8601": "2022-04-20T20:24:21.693362Z", "url": "https://files.pythonhosted.org/packages/93/25/af96835febbbea096d6807b5261fda1e6a56987d69a8b5f22e648830bd96/scri-2022.3.4.tar.gz", "yanked": false, "yanked_reason": null } ], "2022.3.5": [ { "comment_text": "", "digests": { "md5": "19aa8f0e1de422287e04ba12138a628b", "sha256": "b88ad521064cf416db816c9e2bd2b98a101c14f5162d211d161ab527d2b3fbc2" }, "downloads": -1, "filename": "scri-2022.3.5-py3-none-any.whl", "has_sig": false, "md5_digest": "19aa8f0e1de422287e04ba12138a628b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8,<3.11", "size": 126966, "upload_time": "2022-05-12T15:08:03", "upload_time_iso_8601": "2022-05-12T15:08:03.908595Z", "url": "https://files.pythonhosted.org/packages/f3/af/c54d6ff65bd92d0a7d6316bf213c0a18d2c876b366b1ee53de6ec69024ef/scri-2022.3.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "16e41490b8fc92af865fa25a964dee6d", "sha256": "fceb785178a117fc350bfd5a3ed3fc434565cd75e018bd1a66f57c08eaee5fc3" }, "downloads": -1, "filename": "scri-2022.3.5.tar.gz", "has_sig": false, "md5_digest": "16e41490b8fc92af865fa25a964dee6d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8,<3.11", "size": 116903, "upload_time": "2022-05-12T15:08:05", "upload_time_iso_8601": "2022-05-12T15:08:05.652586Z", "url": "https://files.pythonhosted.org/packages/90/64/7a96c7feecb5d5b960459c0684ee16b7d88f5996ae9453a7699094b707e7/scri-2022.3.5.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "19aa8f0e1de422287e04ba12138a628b", "sha256": "b88ad521064cf416db816c9e2bd2b98a101c14f5162d211d161ab527d2b3fbc2" }, "downloads": -1, "filename": "scri-2022.3.5-py3-none-any.whl", "has_sig": false, "md5_digest": "19aa8f0e1de422287e04ba12138a628b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8,<3.11", "size": 126966, "upload_time": "2022-05-12T15:08:03", "upload_time_iso_8601": "2022-05-12T15:08:03.908595Z", "url": "https://files.pythonhosted.org/packages/f3/af/c54d6ff65bd92d0a7d6316bf213c0a18d2c876b366b1ee53de6ec69024ef/scri-2022.3.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "16e41490b8fc92af865fa25a964dee6d", "sha256": "fceb785178a117fc350bfd5a3ed3fc434565cd75e018bd1a66f57c08eaee5fc3" }, "downloads": -1, "filename": "scri-2022.3.5.tar.gz", "has_sig": false, "md5_digest": "16e41490b8fc92af865fa25a964dee6d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8,<3.11", "size": 116903, "upload_time": "2022-05-12T15:08:05", "upload_time_iso_8601": "2022-05-12T15:08:05.652586Z", "url": "https://files.pythonhosted.org/packages/90/64/7a96c7feecb5d5b960459c0684ee16b7d88f5996ae9453a7699094b707e7/scri-2022.3.5.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }