augurs


Nameaugurs JSON
Version 0.1.2 PyPI version JSON
download
home_pageNone
SummaryPython bindings for the augurs time series library.
upload_time2024-02-20 17:00:41
maintainerNone
docs_urlNone
authorBen Sully <ben.sully@grafana.com
requires_python>=3.7
licenseMIT OR Apache-2.0
keywords analysis forecasting time-series
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Python bindings to the augurs time series framework

## Installation

Eventually wheels will be provided as part of GitHub releases and maybe even on PyPI.
At that point it will be as easy as:

```shell
$ pip install augurs
```

Until then it's a bit more manual. You'll need [maturin] installed and a local copy of this
repository. Then, from the `crates/pyaugurs` directory, with your virtualenv activated:

```shell
$ maturin build --release
```

You'll probably want numpy as well:

```shell
$ pip install numpy
```

## Usage

### Multiple Seasonal Trend Decomposition with LOESS (MSTL) models

```python
import augurs as aug
import numpy as np

y = np.array([1.5, 3.0, 2.5, 4.2, 2.7, 1.9, 1.0, 1.2, 0.8])
periods = [3, 4]
# Use an AutoETS trend forecaster
model = aug.MSTL.ets(periods)
model.fit(y)
out_of_sample = model.predict(10, level=0.95)
print(out_of_sample.point())
print(out_of_sample.lower())
in_sample = model.predict_in_sample(level=0.95)

# Or use your own forecaster
class CustomForecaster:
    """See docs for more details on how to implement this."""    
    def fit(self, y: np.ndarray):
        pass
    def predict(self, horizon: int, level: float | None) -> aug.Forecast:
        return aug.Forecast(point=np.array([5.0, 6.0, 7.0]))
    def predict_in_sample(self, level: float | None) -> aug.Forecast:
        return aug.Forecast(point=y)
    ...

model = aug.MSTL.custom_trend(periods, aug.TrendModel(CustomForecaster()))
model.fit(y)
model.predict(10, level=0.95)
model.predict_in_sample(level=0.95)
```

### Exponential smoothing models

```python
import augurs as aug
import numpy as np

y = np.array([1.5, 3.0, 2.5, 4.2, 2.7, 1.9, 1.0, 1.2, 0.8])
model = aug.AutoETS(3, "ZZN")
model.fit(y)
model.predict(10, level=0.95)
```

More to come!

[maturin]: https://www.maturin.rs/


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "augurs",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "analysis,forecasting,time-series",
    "author": "Ben Sully <ben.sully@grafana.com",
    "author_email": "Ben Sully <ben.sully@grafana.com",
    "download_url": "https://files.pythonhosted.org/packages/27/3f/1d410abafcca8e06ba555e381c4d113ad7e1fc4757d2b0a2831b94ae97d5/augurs-0.1.2.tar.gz",
    "platform": null,
    "description": "# Python bindings to the augurs time series framework\n\n## Installation\n\nEventually wheels will be provided as part of GitHub releases and maybe even on PyPI.\nAt that point it will be as easy as:\n\n```shell\n$ pip install augurs\n```\n\nUntil then it's a bit more manual. You'll need [maturin] installed and a local copy of this\nrepository. Then, from the `crates/pyaugurs` directory, with your virtualenv activated:\n\n```shell\n$ maturin build --release\n```\n\nYou'll probably want numpy as well:\n\n```shell\n$ pip install numpy\n```\n\n## Usage\n\n### Multiple Seasonal Trend Decomposition with LOESS (MSTL) models\n\n```python\nimport augurs as aug\nimport numpy as np\n\ny = np.array([1.5, 3.0, 2.5, 4.2, 2.7, 1.9, 1.0, 1.2, 0.8])\nperiods = [3, 4]\n# Use an AutoETS trend forecaster\nmodel = aug.MSTL.ets(periods)\nmodel.fit(y)\nout_of_sample = model.predict(10, level=0.95)\nprint(out_of_sample.point())\nprint(out_of_sample.lower())\nin_sample = model.predict_in_sample(level=0.95)\n\n# Or use your own forecaster\nclass CustomForecaster:\n    \"\"\"See docs for more details on how to implement this.\"\"\"    \n    def fit(self, y: np.ndarray):\n        pass\n    def predict(self, horizon: int, level: float | None) -> aug.Forecast:\n        return aug.Forecast(point=np.array([5.0, 6.0, 7.0]))\n    def predict_in_sample(self, level: float | None) -> aug.Forecast:\n        return aug.Forecast(point=y)\n    ...\n\nmodel = aug.MSTL.custom_trend(periods, aug.TrendModel(CustomForecaster()))\nmodel.fit(y)\nmodel.predict(10, level=0.95)\nmodel.predict_in_sample(level=0.95)\n```\n\n### Exponential smoothing models\n\n```python\nimport augurs as aug\nimport numpy as np\n\ny = np.array([1.5, 3.0, 2.5, 4.2, 2.7, 1.9, 1.0, 1.2, 0.8])\nmodel = aug.AutoETS(3, \"ZZN\")\nmodel.fit(y)\nmodel.predict(10, level=0.95)\n```\n\nMore to come!\n\n[maturin]: https://www.maturin.rs/\n\n",
    "bugtrack_url": null,
    "license": "MIT OR Apache-2.0",
    "summary": "Python bindings for the augurs time series library.",
    "version": "0.1.2",
    "project_urls": {
        "Source Code": "https://github.com/grafana/augurs"
    },
    "split_keywords": [
        "analysis",
        "forecasting",
        "time-series"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ed0f9313ba209628d4ca198b7451afbe0a1c57b2d0f37fb16752bd4e7a95ed84",
                "md5": "10bdb739aa18b8582119bd0a4f690ea6",
                "sha256": "914fc9a86da3d255ea0b9982f5fd5b9b4991731b4cb9dcf81862ad6b22c7a919"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "10bdb739aa18b8582119bd0a4f690ea6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 492140,
            "upload_time": "2024-02-20T16:49:28",
            "upload_time_iso_8601": "2024-02-20T16:49:28.284117Z",
            "url": "https://files.pythonhosted.org/packages/ed/0f/9313ba209628d4ca198b7451afbe0a1c57b2d0f37fb16752bd4e7a95ed84/augurs-0.1.2-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1d6cdb456962cc4b0c74669a3dfefbed7c3fe55d07c7a1927ed17b304d8e0362",
                "md5": "0c093ba7f2fb2ed4d933ce04fe964503",
                "sha256": "101fb8317b583a8c8f8cd1ac5814d0a53f1e3a3625dafa72dc0df19c94823969"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0c093ba7f2fb2ed4d933ce04fe964503",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 470567,
            "upload_time": "2024-02-20T16:49:30",
            "upload_time_iso_8601": "2024-02-20T16:49:30.620707Z",
            "url": "https://files.pythonhosted.org/packages/1d/6c/db456962cc4b0c74669a3dfefbed7c3fe55d07c7a1927ed17b304d8e0362/augurs-0.1.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bd57424a8362911ede209b80c9fec5feda9dc0d8d0c49aed22dc2aa983b3b766",
                "md5": "c380f4a894e281b1e4c9bf2825574a64",
                "sha256": "707c49e81928b597bf206ab638bea2db77fc9d2ea41c210e8b8b25d2481af96d"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c380f4a894e281b1e4c9bf2825574a64",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1261097,
            "upload_time": "2024-02-20T16:49:32",
            "upload_time_iso_8601": "2024-02-20T16:49:32.967903Z",
            "url": "https://files.pythonhosted.org/packages/bd/57/424a8362911ede209b80c9fec5feda9dc0d8d0c49aed22dc2aa983b3b766/augurs-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6ad6ad786f3b0ec84d10ef2e0f5c555c889bb425cef5405e491d7669fb764871",
                "md5": "57f7e00ef30da588e21608be6fbc6d14",
                "sha256": "85c6a480bf1d5c6aca215efb7170845ddbb45b598d13652dd8ca7f8744866bfd"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "57f7e00ef30da588e21608be6fbc6d14",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1273587,
            "upload_time": "2024-02-20T16:49:34",
            "upload_time_iso_8601": "2024-02-20T16:49:34.769651Z",
            "url": "https://files.pythonhosted.org/packages/6a/d6/ad786f3b0ec84d10ef2e0f5c555c889bb425cef5405e491d7669fb764871/augurs-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9fe83ccc016d7d1512a7bf8f2f525f3fe4779df971cd9c4e2d3be617aad69d0b",
                "md5": "4a78d4830cae16237479d1639aff575b",
                "sha256": "6d2919c038c073d06733e2123bcceaca4541358a5bc9a880cc7da111f5f3bc0e"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "4a78d4830cae16237479d1639aff575b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1403091,
            "upload_time": "2024-02-20T16:49:36",
            "upload_time_iso_8601": "2024-02-20T16:49:36.549036Z",
            "url": "https://files.pythonhosted.org/packages/9f/e8/3ccc016d7d1512a7bf8f2f525f3fe4779df971cd9c4e2d3be617aad69d0b/augurs-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a2cabb573199b5b42cf183577710bde9387cb62331a778465b8d4fb850f95cf5",
                "md5": "49d2e6799af74edf38d3e62b42e69b18",
                "sha256": "32ba94f5293aa45da9344e046565815294a1a8028d3c339572b4dd640282d47b"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "49d2e6799af74edf38d3e62b42e69b18",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1460207,
            "upload_time": "2024-02-20T16:49:38",
            "upload_time_iso_8601": "2024-02-20T16:49:38.994685Z",
            "url": "https://files.pythonhosted.org/packages/a2/ca/bb573199b5b42cf183577710bde9387cb62331a778465b8d4fb850f95cf5/augurs-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dbe9e46f7f6d9f9ccc8e9d4d16c4314f1d5d13b157cb0807496a55cb30f771ae",
                "md5": "245c9c1e73625c43fc7e12bde8b04889",
                "sha256": "41e6cd8dee9543b8ec45b7ac493910552ae15e271ce898a70e8fb80aef049f07"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "245c9c1e73625c43fc7e12bde8b04889",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1287643,
            "upload_time": "2024-02-20T16:49:40",
            "upload_time_iso_8601": "2024-02-20T16:49:40.950415Z",
            "url": "https://files.pythonhosted.org/packages/db/e9/e46f7f6d9f9ccc8e9d4d16c4314f1d5d13b157cb0807496a55cb30f771ae/augurs-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "35825ce95cd6785b32b447982dfc73354010885d536eec828fdc7e021065a711",
                "md5": "53bd3758321a1620114d042d893a1036",
                "sha256": "a439c0a14e3fe4ea81fd09054a4e5b122bbb58a54777c558a2a8e51410402c01"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "53bd3758321a1620114d042d893a1036",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1316047,
            "upload_time": "2024-02-20T16:49:42",
            "upload_time_iso_8601": "2024-02-20T16:49:42.942801Z",
            "url": "https://files.pythonhosted.org/packages/35/82/5ce95cd6785b32b447982dfc73354010885d536eec828fdc7e021065a711/augurs-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2f691435a9e1ca07eac4b9235abf9522f6f59acb70c2dc4ba0762c5d89c46f86",
                "md5": "c8b6f7488f786c1ff0aa877f756961f0",
                "sha256": "388c1dd165cb0b01113f60577798e222bc98c5ee36849158d0de2b7583e7a6d1"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "c8b6f7488f786c1ff0aa877f756961f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 334809,
            "upload_time": "2024-02-20T16:49:44",
            "upload_time_iso_8601": "2024-02-20T16:49:44.988570Z",
            "url": "https://files.pythonhosted.org/packages/2f/69/1435a9e1ca07eac4b9235abf9522f6f59acb70c2dc4ba0762c5d89c46f86/augurs-0.1.2-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "07a77193ccb14b89016c23379c7786f5bd1730d7c220cf3d7f797f85d53981ec",
                "md5": "d37a987bf36ac109275c839a22e6d53c",
                "sha256": "0cf622ff8b85d0e34cbb0a24a9b1bba45b478f33da16e032b9b24d37e68188a4"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d37a987bf36ac109275c839a22e6d53c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 353536,
            "upload_time": "2024-02-20T16:49:47",
            "upload_time_iso_8601": "2024-02-20T16:49:47.102032Z",
            "url": "https://files.pythonhosted.org/packages/07/a7/7193ccb14b89016c23379c7786f5bd1730d7c220cf3d7f797f85d53981ec/augurs-0.1.2-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5d7565e14f6ea807d3d6d213d46eea97ae270f25b0efb9247a873e6134aaaaa6",
                "md5": "f0f6f99720ed3c5334660d428d9eeafb",
                "sha256": "2669f59d6a48f6a7dd907b870334744e9c80894b6f9b4b9241350df4bdf1b79a"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f0f6f99720ed3c5334660d428d9eeafb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 492231,
            "upload_time": "2024-02-20T16:49:48",
            "upload_time_iso_8601": "2024-02-20T16:49:48.809381Z",
            "url": "https://files.pythonhosted.org/packages/5d/75/65e14f6ea807d3d6d213d46eea97ae270f25b0efb9247a873e6134aaaaa6/augurs-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6153a355ebf9575428fdb6c7311945e40a2cd19b56e66462aec5e66cb77d3883",
                "md5": "355e56e59e5de6d4d07d337cf3a678a0",
                "sha256": "f18e84d91e54a3aa835eb2cd36d42716de6ecd80ec78d0e4a93fe1460b5b422d"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "355e56e59e5de6d4d07d337cf3a678a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 470640,
            "upload_time": "2024-02-20T16:49:51",
            "upload_time_iso_8601": "2024-02-20T16:49:51.026901Z",
            "url": "https://files.pythonhosted.org/packages/61/53/a355ebf9575428fdb6c7311945e40a2cd19b56e66462aec5e66cb77d3883/augurs-0.1.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4daecbea7fc1fd8280ffdcaef0bdef4213c9f14b55c1899cb6fe0d3cf5d0c4a4",
                "md5": "7765525c1064d740d376ce4c8e0473a5",
                "sha256": "14474fa1ebae95f5d80d288a63c38e3eea37e3a24f5d86551b367942ca82a207"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7765525c1064d740d376ce4c8e0473a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1261362,
            "upload_time": "2024-02-20T16:49:52",
            "upload_time_iso_8601": "2024-02-20T16:49:52.876433Z",
            "url": "https://files.pythonhosted.org/packages/4d/ae/cbea7fc1fd8280ffdcaef0bdef4213c9f14b55c1899cb6fe0d3cf5d0c4a4/augurs-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0f4bbc8cccf0b3487935137619a2ad5c9e3786b8f1b0d24e2a207fbfd43302b7",
                "md5": "4c2b1cecfa194f1bc840131e7e1c047c",
                "sha256": "97cb7c0427909e719d4f391f0ced414d6cab3a332390a81cb973c5df24dfde18"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4c2b1cecfa194f1bc840131e7e1c047c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1273675,
            "upload_time": "2024-02-20T16:49:54",
            "upload_time_iso_8601": "2024-02-20T16:49:54.725820Z",
            "url": "https://files.pythonhosted.org/packages/0f/4b/bc8cccf0b3487935137619a2ad5c9e3786b8f1b0d24e2a207fbfd43302b7/augurs-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5a067c710cfb3f701ff56cce86418641eca0f7bcfafedc0d55e87edf8434bc57",
                "md5": "7d37b1035a2dcd331209cd3b7a6afaff",
                "sha256": "9d785980d3dc0a89f3f2a5cfe407992cebd169a5b03089ca88690d8170638185"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "7d37b1035a2dcd331209cd3b7a6afaff",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1402776,
            "upload_time": "2024-02-20T16:49:56",
            "upload_time_iso_8601": "2024-02-20T16:49:56.577955Z",
            "url": "https://files.pythonhosted.org/packages/5a/06/7c710cfb3f701ff56cce86418641eca0f7bcfafedc0d55e87edf8434bc57/augurs-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7a168f313be2220187c2fe0df94fcd3ff9332ce1d759fbddab0720b6a20539e4",
                "md5": "a446397e1107c487b5117939eb548fff",
                "sha256": "37c85e2c031852d6c6ffb4e62de25cef7821fd070a44fd3482469096863946a7"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a446397e1107c487b5117939eb548fff",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1460175,
            "upload_time": "2024-02-20T16:49:59",
            "upload_time_iso_8601": "2024-02-20T16:49:59.261866Z",
            "url": "https://files.pythonhosted.org/packages/7a/16/8f313be2220187c2fe0df94fcd3ff9332ce1d759fbddab0720b6a20539e4/augurs-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4298680a1c053bc76b65fa89d5b23f284195f1be228043d1b26a76f37101f17b",
                "md5": "d7bd62f1d6d81dc473459ad54ba29c63",
                "sha256": "e1443ac486876708015fdd1eb5ad4609141d7cc6a6276dde31cf45225abed9f1"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d7bd62f1d6d81dc473459ad54ba29c63",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1287670,
            "upload_time": "2024-02-20T16:50:01",
            "upload_time_iso_8601": "2024-02-20T16:50:01.490209Z",
            "url": "https://files.pythonhosted.org/packages/42/98/680a1c053bc76b65fa89d5b23f284195f1be228043d1b26a76f37101f17b/augurs-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "61e55b5b2d7dfa93e9be9c343317030bc794e9ef6ddcc129e6677a82a65b2f58",
                "md5": "f894a387a7697f8cec0775c801ab4c20",
                "sha256": "7087c0a813ebe4044453f2ff554e45db5440471e351c5dd5f98e40f97a0b9b32"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "f894a387a7697f8cec0775c801ab4c20",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1316192,
            "upload_time": "2024-02-20T16:50:04",
            "upload_time_iso_8601": "2024-02-20T16:50:04.152300Z",
            "url": "https://files.pythonhosted.org/packages/61/e5/5b5b2d7dfa93e9be9c343317030bc794e9ef6ddcc129e6677a82a65b2f58/augurs-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "90bcb591fa520454fa820a1174a4ff84755101c7cfd162a04165eebe877e595b",
                "md5": "9263edc7c1a237157343f7933507dd13",
                "sha256": "1775f7948e554d88bb094a04bbb26430301f53ade0d06d8b083dd66728b3e53a"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "9263edc7c1a237157343f7933507dd13",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 334349,
            "upload_time": "2024-02-20T16:50:06",
            "upload_time_iso_8601": "2024-02-20T16:50:06.802797Z",
            "url": "https://files.pythonhosted.org/packages/90/bc/b591fa520454fa820a1174a4ff84755101c7cfd162a04165eebe877e595b/augurs-0.1.2-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7202fdd1b020995581e750b04bd0720d584f0c19e53c279ac35333ac218c7f10",
                "md5": "beb4c022aa6b7015dc486ec3d12e4b72",
                "sha256": "99e53f91f0ec8921ea2c8bf88e17df83f1484e092fa631fc7ac5b598ffe786f7"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "beb4c022aa6b7015dc486ec3d12e4b72",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 353486,
            "upload_time": "2024-02-20T16:50:08",
            "upload_time_iso_8601": "2024-02-20T16:50:08.438339Z",
            "url": "https://files.pythonhosted.org/packages/72/02/fdd1b020995581e750b04bd0720d584f0c19e53c279ac35333ac218c7f10/augurs-0.1.2-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7a69ac66f1e10fa1bbd93d97883135a5f35e6bf845389adec157f85ded3a31db",
                "md5": "1624ecd689b37d7f47d7b3d74f2bcfa4",
                "sha256": "1331a4394b675afa41ba403db7fcecf76ed37ac4e24bda3417d65c8cd802b406"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1624ecd689b37d7f47d7b3d74f2bcfa4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 487348,
            "upload_time": "2024-02-20T16:50:10",
            "upload_time_iso_8601": "2024-02-20T16:50:10.596473Z",
            "url": "https://files.pythonhosted.org/packages/7a/69/ac66f1e10fa1bbd93d97883135a5f35e6bf845389adec157f85ded3a31db/augurs-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "70496fd888b62d74cef61f5b19a16c96481b09f475ed5a875924d78c6d5e9398",
                "md5": "1c73b429dbb98c26441fc433a133ffe6",
                "sha256": "13d71ded617fb182c2f30672285766ccbd42e850f99a0be12b0be3c48b808eeb"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1c73b429dbb98c26441fc433a133ffe6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 469317,
            "upload_time": "2024-02-20T16:50:12",
            "upload_time_iso_8601": "2024-02-20T16:50:12.565176Z",
            "url": "https://files.pythonhosted.org/packages/70/49/6fd888b62d74cef61f5b19a16c96481b09f475ed5a875924d78c6d5e9398/augurs-0.1.2-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0044dfbdb98182af30c1e5d70a6ee79b0330ceda7b6180d2fe96deb0b909b1d3",
                "md5": "afd4b3f4b5548adbcc4dfa4b23f34dbf",
                "sha256": "3f1a9f576f7077b222cd2d7c2f34f3be42b913ac2bbd80e5b79fa688242b43fa"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "afd4b3f4b5548adbcc4dfa4b23f34dbf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1259183,
            "upload_time": "2024-02-20T16:50:14",
            "upload_time_iso_8601": "2024-02-20T16:50:14.559913Z",
            "url": "https://files.pythonhosted.org/packages/00/44/dfbdb98182af30c1e5d70a6ee79b0330ceda7b6180d2fe96deb0b909b1d3/augurs-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "87ed3b01053656c2aea32a1b55e059ad5b9d16e2d29b66bbafa268e23a9f8ed9",
                "md5": "ac564efb697f1ca2aa3180139b47bfe0",
                "sha256": "1be016f3c23c015c811e74fa3726bbfe6f45ebd8d4d5b163a4e4231c040c6a21"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ac564efb697f1ca2aa3180139b47bfe0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1269344,
            "upload_time": "2024-02-20T16:50:17",
            "upload_time_iso_8601": "2024-02-20T16:50:17.033220Z",
            "url": "https://files.pythonhosted.org/packages/87/ed/3b01053656c2aea32a1b55e059ad5b9d16e2d29b66bbafa268e23a9f8ed9/augurs-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a88f6feef94ba4049d2d0eaeb544bc6a74fcabae5c354466c16953a6e0c3c46c",
                "md5": "b12038cd73390bb826e3be091429514c",
                "sha256": "85744ba74a2b823f8226b78293d8885ad31c865906d305c0c9851fa0be097674"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b12038cd73390bb826e3be091429514c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1400009,
            "upload_time": "2024-02-20T16:50:19",
            "upload_time_iso_8601": "2024-02-20T16:50:19.680124Z",
            "url": "https://files.pythonhosted.org/packages/a8/8f/6feef94ba4049d2d0eaeb544bc6a74fcabae5c354466c16953a6e0c3c46c/augurs-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e66c47bab7902f90f23b79f0267edba734034e738d33e1161f80d71b8711303a",
                "md5": "6cb6653c5c7525eb124c9a5f2ef1fd51",
                "sha256": "d0ba725007604321acc1dcd84f0feae77c2ec083eb85579554bd7be6d0804d63"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "6cb6653c5c7525eb124c9a5f2ef1fd51",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1446108,
            "upload_time": "2024-02-20T16:50:21",
            "upload_time_iso_8601": "2024-02-20T16:50:21.723423Z",
            "url": "https://files.pythonhosted.org/packages/e6/6c/47bab7902f90f23b79f0267edba734034e738d33e1161f80d71b8711303a/augurs-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ecbe13e75fbd305c7a10f98cbdc19c2915494d9ea6e10cfd00f96982a9b21931",
                "md5": "ce97658b5c24b0e84e5c3985f9781518",
                "sha256": "1c9eae2c4ee93559d477af30b1ea0fca4b9dfaa0f5168860298466c0fcc16c57"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ce97658b5c24b0e84e5c3985f9781518",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1284580,
            "upload_time": "2024-02-20T16:50:23",
            "upload_time_iso_8601": "2024-02-20T16:50:23.620885Z",
            "url": "https://files.pythonhosted.org/packages/ec/be/13e75fbd305c7a10f98cbdc19c2915494d9ea6e10cfd00f96982a9b21931/augurs-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c5b033e0baabc0c983f0c96f047663454ef23e4c362f0dc008e42296f5bbeefa",
                "md5": "04f4f1c89441641a7f90ea046bef60c4",
                "sha256": "b94293adb60cd424f0f6d7c0297459e089ffd8460a6772cd63eebfd3b07c9e1a"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "04f4f1c89441641a7f90ea046bef60c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1314138,
            "upload_time": "2024-02-20T16:50:26",
            "upload_time_iso_8601": "2024-02-20T16:50:26.270632Z",
            "url": "https://files.pythonhosted.org/packages/c5/b0/33e0baabc0c983f0c96f047663454ef23e4c362f0dc008e42296f5bbeefa/augurs-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e4315ccbe59e3c7b94d30239244e54446ba9c86ef5a97fdb546615b17d22786c",
                "md5": "2608bc92101edade558a438d1fd2eac3",
                "sha256": "95ecf82d66834f57cb9896ba6c38282037bfcbdb0c8aa042280c3ff0f5ec3bdb"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "2608bc92101edade558a438d1fd2eac3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 332590,
            "upload_time": "2024-02-20T16:50:28",
            "upload_time_iso_8601": "2024-02-20T16:50:28.606142Z",
            "url": "https://files.pythonhosted.org/packages/e4/31/5ccbe59e3c7b94d30239244e54446ba9c86ef5a97fdb546615b17d22786c/augurs-0.1.2-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a7e5262cdb38afded9936462e117e7c4e3badd1d2872ea228c517fc09aacff7f",
                "md5": "12578d36d3233c0356b485d8dc27413b",
                "sha256": "8400d8193dc2ce6c6cd60a120be37e533291544b966d7097b5a325e73357e96d"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "12578d36d3233c0356b485d8dc27413b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 351653,
            "upload_time": "2024-02-20T16:50:30",
            "upload_time_iso_8601": "2024-02-20T16:50:30.766887Z",
            "url": "https://files.pythonhosted.org/packages/a7/e5/262cdb38afded9936462e117e7c4e3badd1d2872ea228c517fc09aacff7f/augurs-0.1.2-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "db1f5c73d158a45952cc6e136ebfaca891da9b21be4383e357e0d02cc55cdd7a",
                "md5": "705eafe4e3d5947d2dc010afd4618905",
                "sha256": "b1fde20d4cd93a8070815a9f69e8cbbcbcb9ea39ef19dc9c7867c23b45d4b378"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "705eafe4e3d5947d2dc010afd4618905",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 1259182,
            "upload_time": "2024-02-20T16:50:32",
            "upload_time_iso_8601": "2024-02-20T16:50:32.926520Z",
            "url": "https://files.pythonhosted.org/packages/db/1f/5c73d158a45952cc6e136ebfaca891da9b21be4383e357e0d02cc55cdd7a/augurs-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e18d8293a4254f732470c7766038fa3e70c6c7985ab01297f36f0e75b4c2620e",
                "md5": "69c9d16a41418dd19d82920805581d0f",
                "sha256": "f2a5bc774a8d2f11354f08e90a5141b25bc6fd1bfe7de785bd3f82190748355f"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "69c9d16a41418dd19d82920805581d0f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 1269343,
            "upload_time": "2024-02-20T16:50:35",
            "upload_time_iso_8601": "2024-02-20T16:50:35.271980Z",
            "url": "https://files.pythonhosted.org/packages/e1/8d/8293a4254f732470c7766038fa3e70c6c7985ab01297f36f0e75b4c2620e/augurs-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2f48e9496c2dc3e8ca3243440cf8ef0efa30ee2e7727c18be72457a6928ce806",
                "md5": "3ec6a780f7c73c385d4074cfd40af61c",
                "sha256": "3e04d3cc67289ef2f04eadb0923ca770150b609bab5037134e30b7a96999e89b"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3ec6a780f7c73c385d4074cfd40af61c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 1400010,
            "upload_time": "2024-02-20T16:50:37",
            "upload_time_iso_8601": "2024-02-20T16:50:37.571166Z",
            "url": "https://files.pythonhosted.org/packages/2f/48/e9496c2dc3e8ca3243440cf8ef0efa30ee2e7727c18be72457a6928ce806/augurs-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6708e7c0956c656ab152ff68be862c16bd60d969c473bcd9b2c110be28304ecf",
                "md5": "e332656179a67cb8629d1b7c34a775be",
                "sha256": "764a8254b4134ee6bec4c7d43d2c0e7365533e18b250d3a87756acf6e52bcf56"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e332656179a67cb8629d1b7c34a775be",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 1446109,
            "upload_time": "2024-02-20T16:58:35",
            "upload_time_iso_8601": "2024-02-20T16:58:35.636916Z",
            "url": "https://files.pythonhosted.org/packages/67/08/e7c0956c656ab152ff68be862c16bd60d969c473bcd9b2c110be28304ecf/augurs-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "54db7bb5a9d82cb935d4567c7d248ec9ab519841849715b4688771f0604788a6",
                "md5": "b2d71b57c69000ef4b2c5361a8b77b9c",
                "sha256": "3341b920a1b3a54b29f5bce67c8f6cfcce48249b370cc9e8e7ec3bf487bd7de4"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b2d71b57c69000ef4b2c5361a8b77b9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1260908,
            "upload_time": "2024-02-20T16:58:38",
            "upload_time_iso_8601": "2024-02-20T16:58:38.010288Z",
            "url": "https://files.pythonhosted.org/packages/54/db/7bb5a9d82cb935d4567c7d248ec9ab519841849715b4688771f0604788a6/augurs-0.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a0ceed484305c69f4223cad7c8ab1d21e3cf4659c7e13e4151bb00c96b700a9d",
                "md5": "984af690a9b4dbaf53d0a20c7068ce1f",
                "sha256": "01e1173d4f2d065708d2a958956e631f7233384699dc53741ee6ded50dd0d2fa"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "984af690a9b4dbaf53d0a20c7068ce1f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1273168,
            "upload_time": "2024-02-20T16:58:41",
            "upload_time_iso_8601": "2024-02-20T16:58:41.707212Z",
            "url": "https://files.pythonhosted.org/packages/a0/ce/ed484305c69f4223cad7c8ab1d21e3cf4659c7e13e4151bb00c96b700a9d/augurs-0.1.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "56fedf89a5ba1af41236178057f37b983ea151f0805a938813984d54aaae7e60",
                "md5": "dec851a2c2c7d01f96446efc36bbee80",
                "sha256": "0b2e0d7b1b259f499dcefa2d085ee36bdb40b0d12a6b43a2c97c3ddb617426d0"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "dec851a2c2c7d01f96446efc36bbee80",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1402547,
            "upload_time": "2024-02-20T16:58:44",
            "upload_time_iso_8601": "2024-02-20T16:58:44.110578Z",
            "url": "https://files.pythonhosted.org/packages/56/fe/df89a5ba1af41236178057f37b983ea151f0805a938813984d54aaae7e60/augurs-0.1.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "44bca65ddf7a67a8dc434395507251662c32d8afb85cf57382ba2b4ac9bf4a02",
                "md5": "21a536d627231f1d2b15149f8d35bbfd",
                "sha256": "880a66bee2a440840296d962f632e531b82cfe946a313de1995b8ed33fbb96fb"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "21a536d627231f1d2b15149f8d35bbfd",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1460052,
            "upload_time": "2024-02-20T16:58:46",
            "upload_time_iso_8601": "2024-02-20T16:58:46.890475Z",
            "url": "https://files.pythonhosted.org/packages/44/bc/a65ddf7a67a8dc434395507251662c32d8afb85cf57382ba2b4ac9bf4a02/augurs-0.1.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "72b0f6c4d28e8a0469569935f974a3ba25d8342af877472adde1ef869c92b001",
                "md5": "29fbf5bfaefaa1063c4bab474a21c968",
                "sha256": "43892d8b1ca3da2682db16bb29daf2e03dbd8131863934d036aa088338887d1b"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "29fbf5bfaefaa1063c4bab474a21c968",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1288087,
            "upload_time": "2024-02-20T16:58:48",
            "upload_time_iso_8601": "2024-02-20T16:58:48.844308Z",
            "url": "https://files.pythonhosted.org/packages/72/b0/f6c4d28e8a0469569935f974a3ba25d8342af877472adde1ef869c92b001/augurs-0.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3e9a57ade88b679195979b60a55fa715cb78fe607caa2f3b0c28816de1ffb99b",
                "md5": "2302d0366c069a2c77f5b5f8116ee4fc",
                "sha256": "430cd525802543f98d964a95f552c2c325fd1e6c4d5afabb1f1769adfb9aead8"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "2302d0366c069a2c77f5b5f8116ee4fc",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1316145,
            "upload_time": "2024-02-20T16:58:51",
            "upload_time_iso_8601": "2024-02-20T16:58:51.234957Z",
            "url": "https://files.pythonhosted.org/packages/3e/9a/57ade88b679195979b60a55fa715cb78fe607caa2f3b0c28816de1ffb99b/augurs-0.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f0cefb3371acb6099fa170e53859edeb824823e4fc9a974d28b7b57012975d91",
                "md5": "4aa71153ddfdf2b54745d516bd317a3d",
                "sha256": "0c4d131693f3fce6f4cea842914e60e751ff29ba1e24c118be04c980e2f2ad1c"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp37-none-win32.whl",
            "has_sig": false,
            "md5_digest": "4aa71153ddfdf2b54745d516bd317a3d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 334231,
            "upload_time": "2024-02-20T16:58:52",
            "upload_time_iso_8601": "2024-02-20T16:58:52.926538Z",
            "url": "https://files.pythonhosted.org/packages/f0/ce/fb3371acb6099fa170e53859edeb824823e4fc9a974d28b7b57012975d91/augurs-0.1.2-cp37-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7414219ab0c2d209c4276736dfaa3b777ca866ea659c100339d45633f92246c6",
                "md5": "385bf3555bbdd04137a53c831c1e14ab",
                "sha256": "a339c7a52d15c345cc05863d8166ac6ce538d4c50a95fde0cce2e797ea0530d6"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp37-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "385bf3555bbdd04137a53c831c1e14ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 353565,
            "upload_time": "2024-02-20T16:58:54",
            "upload_time_iso_8601": "2024-02-20T16:58:54.528672Z",
            "url": "https://files.pythonhosted.org/packages/74/14/219ab0c2d209c4276736dfaa3b777ca866ea659c100339d45633f92246c6/augurs-0.1.2-cp37-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5fe789a32c9b27ac9905b67920d391a61ad050d0513e4f323dd14bf6eb00255e",
                "md5": "4c48f6070fff4ddeec465353a0db7723",
                "sha256": "8381335fff1ae66319cc58359e7652464fad2db65ffcf32582d89ddbbfb82d90"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4c48f6070fff4ddeec465353a0db7723",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1260642,
            "upload_time": "2024-02-20T16:58:56",
            "upload_time_iso_8601": "2024-02-20T16:58:56.456294Z",
            "url": "https://files.pythonhosted.org/packages/5f/e7/89a32c9b27ac9905b67920d391a61ad050d0513e4f323dd14bf6eb00255e/augurs-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3bb131e95aea56fc98c5ab2e0301e92d222d05d357d0c8ece50f6612390ddbf5",
                "md5": "b5841d65941e54a622dbe694722f2a5f",
                "sha256": "902f3602c2d354ec39b7fb53263ee700d10058b06808f03a0c029990e17862da"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b5841d65941e54a622dbe694722f2a5f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1272551,
            "upload_time": "2024-02-20T16:58:58",
            "upload_time_iso_8601": "2024-02-20T16:58:58.740313Z",
            "url": "https://files.pythonhosted.org/packages/3b/b1/31e95aea56fc98c5ab2e0301e92d222d05d357d0c8ece50f6612390ddbf5/augurs-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a15cf8fcc562146e299d825cbd2594a7243528749b4028f5f92b3ab0869489bc",
                "md5": "94fb2042641ec60aa48253e179de83f9",
                "sha256": "d3dfc824d60f6494a97f76e5fdb5e8cdec3f9a92f4523fccb9371da476c96c2c"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "94fb2042641ec60aa48253e179de83f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1402427,
            "upload_time": "2024-02-20T16:59:00",
            "upload_time_iso_8601": "2024-02-20T16:59:00.833662Z",
            "url": "https://files.pythonhosted.org/packages/a1/5c/f8fcc562146e299d825cbd2594a7243528749b4028f5f92b3ab0869489bc/augurs-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "705c1f23f08f520859a959fa3566a9953eb8ecec9f0c4843bad9efecd81e9fae",
                "md5": "1dddee9b262a472b26ca16c5abc6787b",
                "sha256": "73c00d6db48a90299492412cbf451575d19dae4d9e0759db8bb5a44b9295302a"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "1dddee9b262a472b26ca16c5abc6787b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1459991,
            "upload_time": "2024-02-20T16:59:03",
            "upload_time_iso_8601": "2024-02-20T16:59:03.381234Z",
            "url": "https://files.pythonhosted.org/packages/70/5c/1f23f08f520859a959fa3566a9953eb8ecec9f0c4843bad9efecd81e9fae/augurs-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "12d9c48ff8a331a7eeaff93bd799b8a3a151617060c59f0f8f0d5b8ee1f91910",
                "md5": "6bc82655cd9e93c0864a7a0180048c82",
                "sha256": "83530c728eb0e2dfb83266ebeff459056ad04c036acb9ba87a5ec6ed730176f0"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6bc82655cd9e93c0864a7a0180048c82",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1287301,
            "upload_time": "2024-02-20T16:59:05",
            "upload_time_iso_8601": "2024-02-20T16:59:05.391175Z",
            "url": "https://files.pythonhosted.org/packages/12/d9/c48ff8a331a7eeaff93bd799b8a3a151617060c59f0f8f0d5b8ee1f91910/augurs-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d323f51658d842c501c440209da73477491a91359c16bb7752a2df45916857ed",
                "md5": "25d52c6d27d562448988b3ee14f6af31",
                "sha256": "e92fff2ce954c37c24286e79f015eeba09e1531c99a23c2336d4ac53938d8a94"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "25d52c6d27d562448988b3ee14f6af31",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1317383,
            "upload_time": "2024-02-20T16:59:07",
            "upload_time_iso_8601": "2024-02-20T16:59:07.786900Z",
            "url": "https://files.pythonhosted.org/packages/d3/23/f51658d842c501c440209da73477491a91359c16bb7752a2df45916857ed/augurs-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "557b7dff6a1859af97d29bf1cb00ae514e45df2e05cf30bffcd1d9b66f10674a",
                "md5": "c7038c4074fdc3a1030fcb33fd583aa8",
                "sha256": "905bb159bdcae240c7f4d4f7373782d838afd8cd2e163cc9e36ef587d9f23df7"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "c7038c4074fdc3a1030fcb33fd583aa8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 334213,
            "upload_time": "2024-02-20T16:59:09",
            "upload_time_iso_8601": "2024-02-20T16:59:09.827453Z",
            "url": "https://files.pythonhosted.org/packages/55/7b/7dff6a1859af97d29bf1cb00ae514e45df2e05cf30bffcd1d9b66f10674a/augurs-0.1.2-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b8728c2a7a74954f5698fe27a3a364e9173e59c0f12a6fc3ac738813d9b7a79e",
                "md5": "fd5409fa87509b37cf6c2e16cbc1ddaa",
                "sha256": "c70b1c25d4f7869eb8c89882b8549d34545ccafd320d62ed01090230021c26ad"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fd5409fa87509b37cf6c2e16cbc1ddaa",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 353881,
            "upload_time": "2024-02-20T16:59:12",
            "upload_time_iso_8601": "2024-02-20T16:59:12.081419Z",
            "url": "https://files.pythonhosted.org/packages/b8/72/8c2a7a74954f5698fe27a3a364e9173e59c0f12a6fc3ac738813d9b7a79e/augurs-0.1.2-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "24710dbecdef87abae56f23120f49353df5f9ef8af55fd709e63d7502aad2b7a",
                "md5": "208798970c8bb8000f87e6ec9b76cd53",
                "sha256": "4aec8b21f64c2e69c62213317d500dcba27fa7db0477662e67518767e0b5efdc"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "208798970c8bb8000f87e6ec9b76cd53",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1261538,
            "upload_time": "2024-02-20T16:59:14",
            "upload_time_iso_8601": "2024-02-20T16:59:14.122986Z",
            "url": "https://files.pythonhosted.org/packages/24/71/0dbecdef87abae56f23120f49353df5f9ef8af55fd709e63d7502aad2b7a/augurs-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7945c02de3145f713bc0ef589a00574bdd50c15c545f074acc65263f516f5875",
                "md5": "00106ac70f8d7b114aa2a5c0699d8fdb",
                "sha256": "07ad027aabc6c9868efc32ce86fae5bd55384cb437388161c232d948a1b930c9"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "00106ac70f8d7b114aa2a5c0699d8fdb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1273060,
            "upload_time": "2024-02-20T16:59:16",
            "upload_time_iso_8601": "2024-02-20T16:59:16.548075Z",
            "url": "https://files.pythonhosted.org/packages/79/45/c02de3145f713bc0ef589a00574bdd50c15c545f074acc65263f516f5875/augurs-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8d0a77ffbfb03fabb71ce8d737a0906edca6d92453d5fd3a49fa238a3aaaf49f",
                "md5": "64c136fc417d4feed5bcb205b38535b2",
                "sha256": "22b2e4d11e07055a3fa2a2ed88eb20dcd84f054ae29f0b48535524f1b090186c"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "64c136fc417d4feed5bcb205b38535b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1402826,
            "upload_time": "2024-02-20T16:59:19",
            "upload_time_iso_8601": "2024-02-20T16:59:19.087759Z",
            "url": "https://files.pythonhosted.org/packages/8d/0a/77ffbfb03fabb71ce8d737a0906edca6d92453d5fd3a49fa238a3aaaf49f/augurs-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "488be683cb4dbaf3fb578991f191757e72b181a862d26ebc7555814ca74f0a9d",
                "md5": "319b8a0a5f59a66ab6213eb8a138ec7b",
                "sha256": "53caabb96f43a749dfd67a4f844bf2d3d909f5fb405d24b04e89a5da93045d28"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "319b8a0a5f59a66ab6213eb8a138ec7b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1459944,
            "upload_time": "2024-02-20T16:59:21",
            "upload_time_iso_8601": "2024-02-20T16:59:21.250218Z",
            "url": "https://files.pythonhosted.org/packages/48/8b/e683cb4dbaf3fb578991f191757e72b181a862d26ebc7555814ca74f0a9d/augurs-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0ca33641678523f719350485f44af189e9e11121b1d369d8d7c310a64bca25cb",
                "md5": "ddaae79906925004ad826116cd8c429d",
                "sha256": "855465d563f3e51edcf61fd3bdc434227633b35b6804375396be6a336eabba51"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ddaae79906925004ad826116cd8c429d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1287905,
            "upload_time": "2024-02-20T16:59:23",
            "upload_time_iso_8601": "2024-02-20T16:59:23.581293Z",
            "url": "https://files.pythonhosted.org/packages/0c/a3/3641678523f719350485f44af189e9e11121b1d369d8d7c310a64bca25cb/augurs-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "23fa9f0c06b3b6769def3d12c0a870d13d3312a5241f9f064f46459c3fba72d8",
                "md5": "c096ae487f2bce69f74b3fd5310ac2cf",
                "sha256": "7d6416b26a38cf9199fbbef8b0e61e042fda603f9b962baf23953d34938ed089"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "c096ae487f2bce69f74b3fd5310ac2cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1316189,
            "upload_time": "2024-02-20T16:59:26",
            "upload_time_iso_8601": "2024-02-20T16:59:26.754681Z",
            "url": "https://files.pythonhosted.org/packages/23/fa/9f0c06b3b6769def3d12c0a870d13d3312a5241f9f064f46459c3fba72d8/augurs-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c8ed177bbdafff9bae65fa83a1d002586dac641c1fd321872478952f7e80ca2c",
                "md5": "6684ca0a0087f037105c6c4d577b51c7",
                "sha256": "e871fb184f046c6b35d8c9d7ed132ec997fbc373dcc9c42d4fd44d5759e29f71"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "6684ca0a0087f037105c6c4d577b51c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 335197,
            "upload_time": "2024-02-20T16:59:28",
            "upload_time_iso_8601": "2024-02-20T16:59:28.690050Z",
            "url": "https://files.pythonhosted.org/packages/c8/ed/177bbdafff9bae65fa83a1d002586dac641c1fd321872478952f7e80ca2c/augurs-0.1.2-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6fd8703f1cb46a1afe120e135a9eb669b8500102e3fb811abae49868f0b6b819",
                "md5": "2bfd67646cb7dc532a45a281baff6b4a",
                "sha256": "20ccd2e2fc49ddf756a2e036577060cf3be6c8678faef7c572019434cf0508d8"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2bfd67646cb7dc532a45a281baff6b4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 353763,
            "upload_time": "2024-02-20T16:59:31",
            "upload_time_iso_8601": "2024-02-20T16:59:31.111569Z",
            "url": "https://files.pythonhosted.org/packages/6f/d8/703f1cb46a1afe120e135a9eb669b8500102e3fb811abae49868f0b6b819/augurs-0.1.2-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aa0477fc66dc53c1d53af3eb1f8e35aedca4f8d3fd914fd738a38a2f5bccf432",
                "md5": "a439a1d7a03cedd861bf9dce7728cebd",
                "sha256": "4496e75907196f120f1ddec17ea23dd24927c8e925bfaa9fae8539610337d6c7"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a439a1d7a03cedd861bf9dce7728cebd",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 1260488,
            "upload_time": "2024-02-20T16:59:32",
            "upload_time_iso_8601": "2024-02-20T16:59:32.939852Z",
            "url": "https://files.pythonhosted.org/packages/aa/04/77fc66dc53c1d53af3eb1f8e35aedca4f8d3fd914fd738a38a2f5bccf432/augurs-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b51db6e1961a84d1a783214808ec5d18fc4432e63d3c30a5e1d3aa4900783e53",
                "md5": "698ccd798e1b3f2c830e440bc0d9e905",
                "sha256": "fccca89298a454542315bd3a1c1a77bfa0b9d0097d6e1cd04d33aac0c6aea2d6"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "698ccd798e1b3f2c830e440bc0d9e905",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 1272613,
            "upload_time": "2024-02-20T16:59:35",
            "upload_time_iso_8601": "2024-02-20T16:59:35.201796Z",
            "url": "https://files.pythonhosted.org/packages/b5/1d/b6e1961a84d1a783214808ec5d18fc4432e63d3c30a5e1d3aa4900783e53/augurs-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c974038db0974ad7893ad25685ae74cdd91e348c7948730b774c56d0593b278b",
                "md5": "f7d3fe75d1b7b7f5ecaecdeddffe273a",
                "sha256": "17031fea092d5e992993ed1e8f4b45664e849cc9ef2151be52134fe3b85136c8"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f7d3fe75d1b7b7f5ecaecdeddffe273a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 1402391,
            "upload_time": "2024-02-20T16:59:37",
            "upload_time_iso_8601": "2024-02-20T16:59:37.359773Z",
            "url": "https://files.pythonhosted.org/packages/c9/74/038db0974ad7893ad25685ae74cdd91e348c7948730b774c56d0593b278b/augurs-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e209cd62a67041935610bb28c563ffc6a9ac49387e58c3bf22dd504b25de56ab",
                "md5": "89a596d8ea039a02d7ddaa6730b94cdf",
                "sha256": "aff192636643b425034109480cf9a0a19463340ebcbbc6456cbd74659336d3be"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "89a596d8ea039a02d7ddaa6730b94cdf",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 1458996,
            "upload_time": "2024-02-20T16:59:39",
            "upload_time_iso_8601": "2024-02-20T16:59:39.623920Z",
            "url": "https://files.pythonhosted.org/packages/e2/09/cd62a67041935610bb28c563ffc6a9ac49387e58c3bf22dd504b25de56ab/augurs-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b3e3fb86c9da5759931931cfc73ca60e6691fa8b7e47c80adba0ff5c8b5685a7",
                "md5": "2b588c06e5ffb5c52b0d91d700908968",
                "sha256": "30b83c32b51a97ccf1da3d943adb1a9402ce9e40ae52716584e53d62cf7f3f7e"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2b588c06e5ffb5c52b0d91d700908968",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 1286987,
            "upload_time": "2024-02-20T16:59:42",
            "upload_time_iso_8601": "2024-02-20T16:59:42.000712Z",
            "url": "https://files.pythonhosted.org/packages/b3/e3/fb86c9da5759931931cfc73ca60e6691fa8b7e47c80adba0ff5c8b5685a7/augurs-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "98b40945b893c5464ccda528389035a3b91955dafb685f51ad713f189ddea310",
                "md5": "bd2de1978f89af6a79729b0400a892b8",
                "sha256": "348afbc8d0917f55c0f7bb64fe90dd027dd31424d68d23141375bdfa77279bc4"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "bd2de1978f89af6a79729b0400a892b8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 1315866,
            "upload_time": "2024-02-20T16:59:45",
            "upload_time_iso_8601": "2024-02-20T16:59:45.733129Z",
            "url": "https://files.pythonhosted.org/packages/98/b4/0945b893c5464ccda528389035a3b91955dafb685f51ad713f189ddea310/augurs-0.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e94e1c458c0c7bd9acb11b8848d153ce9bfef4dedcc9e46f45f439d43894ad3c",
                "md5": "fd0b80e3b2c33fdf66798992e8090526",
                "sha256": "bf6a1cf565d18db102a1e37d256b0fd9bc490c6f3bfc5503b115d4f5c4b3db61"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fd0b80e3b2c33fdf66798992e8090526",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1263509,
            "upload_time": "2024-02-20T16:59:49",
            "upload_time_iso_8601": "2024-02-20T16:59:49.190994Z",
            "url": "https://files.pythonhosted.org/packages/e9/4e/1c458c0c7bd9acb11b8848d153ce9bfef4dedcc9e46f45f439d43894ad3c/augurs-0.1.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2488cbc600e267a204e646e21e8392514e7eab7a3997ee546e83fb93e62bac2c",
                "md5": "ddae3e46e427cd127719f3b3bbc1560a",
                "sha256": "805779614f357172d486f51899d1ba0a36f62775e3fda35b403be4d8640a0555"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ddae3e46e427cd127719f3b3bbc1560a",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1274813,
            "upload_time": "2024-02-20T16:59:52",
            "upload_time_iso_8601": "2024-02-20T16:59:52.280020Z",
            "url": "https://files.pythonhosted.org/packages/24/88/cbc600e267a204e646e21e8392514e7eab7a3997ee546e83fb93e62bac2c/augurs-0.1.2-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d9e4c7c1ee1b333a0f3a850379c8d0b41a905fc0a02656f185e13c6e858dd780",
                "md5": "b83eda2b557c03420c5658523d23187c",
                "sha256": "436788d8855e989d0fb8a73883fe3a2ead98e0a1d2ebd486faddd63244398cd0"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b83eda2b557c03420c5658523d23187c",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1404600,
            "upload_time": "2024-02-20T16:59:54",
            "upload_time_iso_8601": "2024-02-20T16:59:54.679232Z",
            "url": "https://files.pythonhosted.org/packages/d9/e4/c7c1ee1b333a0f3a850379c8d0b41a905fc0a02656f185e13c6e858dd780/augurs-0.1.2-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "62f14936d41df2d8cb6420a922076c0ae274fdb55664b3c5566f1099cc5bfbc4",
                "md5": "bd5fe08ced4f2f52bce8507d6001b33a",
                "sha256": "078328c68184c30e8b29574ba67dc83695cdf8efd5126438f1b3b2deea468952"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "bd5fe08ced4f2f52bce8507d6001b33a",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1461056,
            "upload_time": "2024-02-20T16:59:56",
            "upload_time_iso_8601": "2024-02-20T16:59:56.707372Z",
            "url": "https://files.pythonhosted.org/packages/62/f1/4936d41df2d8cb6420a922076c0ae274fdb55664b3c5566f1099cc5bfbc4/augurs-0.1.2-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b0a94b8c45e50c3a44d30398da02d58832752da770ffe6ee24545f55cc27a7ca",
                "md5": "5fdd6f04c7ec093bd66b3170567f7e0b",
                "sha256": "a3d0eba2da11cba85e7964af48bb4c8497bb00a0ce1b2fa2d5ab038cd42aef0f"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5fdd6f04c7ec093bd66b3170567f7e0b",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1290458,
            "upload_time": "2024-02-20T16:59:58",
            "upload_time_iso_8601": "2024-02-20T16:59:58.813382Z",
            "url": "https://files.pythonhosted.org/packages/b0/a9/4b8c45e50c3a44d30398da02d58832752da770ffe6ee24545f55cc27a7ca/augurs-0.1.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9fb62fd9569be9aae2850382b35faa885823bf42b04fb1c50ede5bf928f4c3a5",
                "md5": "431aa1f36c8904d39e0ef41e2e6f6667",
                "sha256": "8b9c5c338bb06fce1298e65e95771b37243966bf251cc9828d8631745fdff235"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "431aa1f36c8904d39e0ef41e2e6f6667",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1319690,
            "upload_time": "2024-02-20T17:00:00",
            "upload_time_iso_8601": "2024-02-20T17:00:00.780222Z",
            "url": "https://files.pythonhosted.org/packages/9f/b6/2fd9569be9aae2850382b35faa885823bf42b04fb1c50ede5bf928f4c3a5/augurs-0.1.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e110bb79a780813e97429ce589dbe5e88ee26f30f4e7f2abbb8051fcde7d1445",
                "md5": "672a732382206c5ccb9840183a52c153",
                "sha256": "f66b1a976008c9173b8c8ffd075fa71b37bcd1710b01e81ca5ff57326002cf7c"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "672a732382206c5ccb9840183a52c153",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1260859,
            "upload_time": "2024-02-20T17:00:04",
            "upload_time_iso_8601": "2024-02-20T17:00:04.819505Z",
            "url": "https://files.pythonhosted.org/packages/e1/10/bb79a780813e97429ce589dbe5e88ee26f30f4e7f2abbb8051fcde7d1445/augurs-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6edbc08eab16ce21c759a095c7580d6b1bb38865b01039e90090aa56fa9a4c03",
                "md5": "b5fead24d4e56422575f195db64f8a5e",
                "sha256": "7b734929ab8cdf2c321f2b94438c734135810dc11b28fe31ddff533af2ac2139"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b5fead24d4e56422575f195db64f8a5e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1272874,
            "upload_time": "2024-02-20T17:00:08",
            "upload_time_iso_8601": "2024-02-20T17:00:08.878899Z",
            "url": "https://files.pythonhosted.org/packages/6e/db/c08eab16ce21c759a095c7580d6b1bb38865b01039e90090aa56fa9a4c03/augurs-0.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2d117c3b4255f3ea349840535da42ef835b859086ec9e0bade5698522d42e212",
                "md5": "3ec3283628ab0780f58c644e8924d399",
                "sha256": "f97f384d31ae8c448b1baf76d4179469c2afebe65abd60601c46b837749b7f97"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3ec3283628ab0780f58c644e8924d399",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1401878,
            "upload_time": "2024-02-20T17:00:12",
            "upload_time_iso_8601": "2024-02-20T17:00:12.399595Z",
            "url": "https://files.pythonhosted.org/packages/2d/11/7c3b4255f3ea349840535da42ef835b859086ec9e0bade5698522d42e212/augurs-0.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7fafe803e17615a55eb6d769350cd30e9c118f3455af0698eaa1d3fbdbf0dee9",
                "md5": "86d7a1163773e8574a919b7f7e62bd8b",
                "sha256": "a378450c3b2f0ff945641599435f40831675241d6d2fd6ba2b878540b2b30489"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "86d7a1163773e8574a919b7f7e62bd8b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1458713,
            "upload_time": "2024-02-20T17:00:15",
            "upload_time_iso_8601": "2024-02-20T17:00:15.849166Z",
            "url": "https://files.pythonhosted.org/packages/7f/af/e803e17615a55eb6d769350cd30e9c118f3455af0698eaa1d3fbdbf0dee9/augurs-0.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0132452f5295f3c3d5f531636116e58872347cd50d64946c4fe04b30478a13ef",
                "md5": "0e830a692bd44559672f7dc0fb7fe35a",
                "sha256": "727ef049a5685ac0851f7c92e86aa3901b8e9e9925eb8a161be16c267db2088d"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0e830a692bd44559672f7dc0fb7fe35a",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1287033,
            "upload_time": "2024-02-20T17:00:18",
            "upload_time_iso_8601": "2024-02-20T17:00:18.384597Z",
            "url": "https://files.pythonhosted.org/packages/01/32/452f5295f3c3d5f531636116e58872347cd50d64946c4fe04b30478a13ef/augurs-0.1.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ac9f7c9deceda6a5c89e635020b32247e6e734d68f55e671bb466f1a4d3fe55b",
                "md5": "eac6496764a40f553a491f4ad8e6e845",
                "sha256": "34c9c84b8ef94815b3460fa2cc5724868c95e9133c39376bdbb6ff4dadfa0f23"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "eac6496764a40f553a491f4ad8e6e845",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1317819,
            "upload_time": "2024-02-20T17:00:21",
            "upload_time_iso_8601": "2024-02-20T17:00:21.467045Z",
            "url": "https://files.pythonhosted.org/packages/ac/9f/7c9deceda6a5c89e635020b32247e6e734d68f55e671bb466f1a4d3fe55b/augurs-0.1.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "83ba560ef5630b63ca591dc9555c4b4571e59fb16e54e5a296b01d468851abf4",
                "md5": "74c5b499f87c74019a076b847f8465d2",
                "sha256": "78353b048b11d110dea59c232a60042c2bef6532f210d358caa1299caae6de84"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "74c5b499f87c74019a076b847f8465d2",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1260727,
            "upload_time": "2024-02-20T17:00:24",
            "upload_time_iso_8601": "2024-02-20T17:00:24.651470Z",
            "url": "https://files.pythonhosted.org/packages/83/ba/560ef5630b63ca591dc9555c4b4571e59fb16e54e5a296b01d468851abf4/augurs-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8730e65412f73fbe89a3fcc9fdc448d019435a90278b6fbb1a6b46faa70bab3a",
                "md5": "fe1960026466801f702d083d01b1600d",
                "sha256": "f50d5203695c5a0aa9972b665c393560aee80b0aa3936e894dc5226469fa510b"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "fe1960026466801f702d083d01b1600d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1272619,
            "upload_time": "2024-02-20T17:00:27",
            "upload_time_iso_8601": "2024-02-20T17:00:27.096360Z",
            "url": "https://files.pythonhosted.org/packages/87/30/e65412f73fbe89a3fcc9fdc448d019435a90278b6fbb1a6b46faa70bab3a/augurs-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d279c4179d8a26f1f74d4f214b77593ed11f06d36df634c022af27837f1fb08e",
                "md5": "b8c502cd79ae32173258fc0551a02f3c",
                "sha256": "e95f3c0be2caddd316f109e437cc9a8f473cc279be468af2e412a956b08d917c"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b8c502cd79ae32173258fc0551a02f3c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1402332,
            "upload_time": "2024-02-20T17:00:30",
            "upload_time_iso_8601": "2024-02-20T17:00:30.051476Z",
            "url": "https://files.pythonhosted.org/packages/d2/79/c4179d8a26f1f74d4f214b77593ed11f06d36df634c022af27837f1fb08e/augurs-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "07254cd41e4430086c8c07b63e4dcc78b9a30d038eaa61fe94016108f15d3bc4",
                "md5": "0a4d02f71daf3b5ee6ad88dea38f6ae4",
                "sha256": "2c28f6d97cc118eaf47019983de3a81835f28a1a2e45a673f67d85ee76d64273"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "0a4d02f71daf3b5ee6ad88dea38f6ae4",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1458831,
            "upload_time": "2024-02-20T17:00:32",
            "upload_time_iso_8601": "2024-02-20T17:00:32.661522Z",
            "url": "https://files.pythonhosted.org/packages/07/25/4cd41e4430086c8c07b63e4dcc78b9a30d038eaa61fe94016108f15d3bc4/augurs-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7590e2add45724082bb4ed8fe4a42e979cac00c631ed10256c23845817c12730",
                "md5": "e067ed5f21331a155b82c9616231d628",
                "sha256": "cb6ed1b7b9c738abb022f18a1e12ce1c4b6fba367e7beb56184c7f21a016fd40"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e067ed5f21331a155b82c9616231d628",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1287056,
            "upload_time": "2024-02-20T17:00:35",
            "upload_time_iso_8601": "2024-02-20T17:00:35.252196Z",
            "url": "https://files.pythonhosted.org/packages/75/90/e2add45724082bb4ed8fe4a42e979cac00c631ed10256c23845817c12730/augurs-0.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e8f4660068840fa2c4a73b8c1a82f063c38f5b07f20aab026a802dbb69b2b9d6",
                "md5": "b5947165a4d9201d0e9dd8997ddd6f9f",
                "sha256": "9d8266bf9df4b1e0ce0f3294a6efcdd102622b6e1f2193d9254af465bbd65b57"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "b5947165a4d9201d0e9dd8997ddd6f9f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1315686,
            "upload_time": "2024-02-20T17:00:38",
            "upload_time_iso_8601": "2024-02-20T17:00:38.637981Z",
            "url": "https://files.pythonhosted.org/packages/e8/f4/660068840fa2c4a73b8c1a82f063c38f5b07f20aab026a802dbb69b2b9d6/augurs-0.1.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "273f1d410abafcca8e06ba555e381c4d113ad7e1fc4757d2b0a2831b94ae97d5",
                "md5": "4e28580985821738aa2bd11d20490cc6",
                "sha256": "e0584aba7ad9251b62254459f106f4388cb17c0f4dd9247da8beda9172f7467f"
            },
            "downloads": -1,
            "filename": "augurs-0.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "4e28580985821738aa2bd11d20490cc6",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 274557,
            "upload_time": "2024-02-20T17:00:41",
            "upload_time_iso_8601": "2024-02-20T17:00:41.271462Z",
            "url": "https://files.pythonhosted.org/packages/27/3f/1d410abafcca8e06ba555e381c4d113ad7e1fc4757d2b0a2831b94ae97d5/augurs-0.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-20 17:00:41",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "grafana",
    "github_project": "augurs",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "augurs"
}
        
Elapsed time: 0.19148s