# Python bindings to the augurs time series framework
## Installation
Wheels are provided on PyPI for all major platforms. Just run:
```shell
$ pip install augurs
```
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)
```
### Dynamic Time Warping
```python
import augurs as aug
a = np.array([1.0, 2.0, 3.0])
b = np.array([4.0, 5.0, 6.0])
dtw = aug.Dtw()
dist = dtw.distance(a, b)
dist_matrix = dtw.distance_matrix([a, b])
```
More to come!
Raw data
{
"_id": null,
"home_page": null,
"name": "augurs",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": null,
"keywords": "analysis, forecasting, outlier-detection, time-series",
"author": "Ben Sully <ben.sully@grafana.com",
"author_email": "Ben Sully <ben.sully@grafana.com",
"download_url": "https://files.pythonhosted.org/packages/61/74/b174205a5c86b93cecc118dbc23d15e7603fa5f481fb5ad0f0d19463b4a3/augurs-0.4.0.tar.gz",
"platform": null,
"description": "# Python bindings to the augurs time series framework\n\n## Installation\n\nWheels are provided on PyPI for all major platforms. Just run:\n\n```shell\n$ pip install augurs\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\n### Dynamic Time Warping\n\n```python\nimport augurs as aug\n\na = np.array([1.0, 2.0, 3.0])\nb = np.array([4.0, 5.0, 6.0])\ndtw = aug.Dtw()\ndist = dtw.distance(a, b)\ndist_matrix = dtw.distance_matrix([a, b])\n```\n\nMore to come!\n\n",
"bugtrack_url": null,
"license": "MIT OR Apache-2.0",
"summary": "Python bindings for the augurs time series library.",
"version": "0.4.0",
"project_urls": {
"Source Code": "https://github.com/grafana/augurs"
},
"split_keywords": [
"analysis",
" forecasting",
" outlier-detection",
" time-series"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "99cf6c7a39db37f514612e07186433197652adc4948998a3223c3f047d9ab25f",
"md5": "b80f5c01546262000840d9b1387aafcb",
"sha256": "ea8832d5b481158b80f516285c413b1e95c1d87b59ef41ef5dbbb5936f89a13d"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b80f5c01546262000840d9b1387aafcb",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 442510,
"upload_time": "2024-10-16T09:24:34",
"upload_time_iso_8601": "2024-10-16T09:24:34.999107Z",
"url": "https://files.pythonhosted.org/packages/99/cf/6c7a39db37f514612e07186433197652adc4948998a3223c3f047d9ab25f/augurs-0.4.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2fd3adbc9eb98efb62a35e9cd908800f27f6464a5511178c4abd5dc7a2b54ec8",
"md5": "bcb63b96e700693abc7137178f305de1",
"sha256": "b1eb740da5076b4bd98e0821bebf2b699d210e6801fc3953a830f88a45e5f3f3"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "bcb63b96e700693abc7137178f305de1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 499481,
"upload_time": "2024-10-16T09:23:13",
"upload_time_iso_8601": "2024-10-16T09:23:13.073028Z",
"url": "https://files.pythonhosted.org/packages/2f/d3/adbc9eb98efb62a35e9cd908800f27f6464a5511178c4abd5dc7a2b54ec8/augurs-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "17dfb9f53bcfcf65805435b27c9b6bb489560b1fc4a045bc5358c77d6a593bca",
"md5": "74ce32cb94ed4889b192e5c7f1c3d1ba",
"sha256": "e4054a7f895fe1ff0b3f09c4f5af6caccad8942c89fce6a98ec7fb72fa029def"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "74ce32cb94ed4889b192e5c7f1c3d1ba",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 493273,
"upload_time": "2024-10-16T09:23:30",
"upload_time_iso_8601": "2024-10-16T09:23:30.449959Z",
"url": "https://files.pythonhosted.org/packages/17/df/b9f53bcfcf65805435b27c9b6bb489560b1fc4a045bc5358c77d6a593bca/augurs-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6072fc6ed334aadf7d3528e0746ad6c7f52225d84759c4d2e5c460db06bbadb6",
"md5": "01273cd8989b830d27d2fbbb55217aa5",
"sha256": "f23bf85bd317cf9c43a65843efcf017fe9ccce19fb037f0b3efdb7daf528c511"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "01273cd8989b830d27d2fbbb55217aa5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 572878,
"upload_time": "2024-10-16T09:23:44",
"upload_time_iso_8601": "2024-10-16T09:23:44.268449Z",
"url": "https://files.pythonhosted.org/packages/60/72/fc6ed334aadf7d3528e0746ad6c7f52225d84759c4d2e5c460db06bbadb6/augurs-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f40f429ba4ddd0989dc9a57bf3f8b6f389ac761d17ce87a5a35ee0bae3840e8d",
"md5": "a3de0bc1b06f48ccdec34dfad35d7c57",
"sha256": "a86cf0c1830d0f8e65d755135ab4e156b5d4f2d38decee5dfc9e0c2ed875612a"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "a3de0bc1b06f48ccdec34dfad35d7c57",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 592086,
"upload_time": "2024-10-16T09:23:58",
"upload_time_iso_8601": "2024-10-16T09:23:58.796266Z",
"url": "https://files.pythonhosted.org/packages/f4/0f/429ba4ddd0989dc9a57bf3f8b6f389ac761d17ce87a5a35ee0bae3840e8d/augurs-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c9a1d3754666e51ff792b9c3e293802a1a3b38323081f40a61227b974707d17e",
"md5": "ead505f2ae4c7856edd69a4fd6c85e2d",
"sha256": "0cce036f37920ab3a36a27b400f0e3c81221c1a03254251e565da2e93937a735"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ead505f2ae4c7856edd69a4fd6c85e2d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 506468,
"upload_time": "2024-10-16T09:24:23",
"upload_time_iso_8601": "2024-10-16T09:24:23.305303Z",
"url": "https://files.pythonhosted.org/packages/c9/a1/d3754666e51ff792b9c3e293802a1a3b38323081f40a61227b974707d17e/augurs-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "62032fd9a4eae650154e10292952c63a26c0019fd7908cac47922c0c839a2adb",
"md5": "afbe0babb77981c0553417615db8fae8",
"sha256": "c17d07e7cf7a2ee68f8bf3e1753d81e48032fd98e779d5cec455076842184c89"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "afbe0babb77981c0553417615db8fae8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 530645,
"upload_time": "2024-10-16T09:24:12",
"upload_time_iso_8601": "2024-10-16T09:24:12.026924Z",
"url": "https://files.pythonhosted.org/packages/62/03/2fd9a4eae650154e10292952c63a26c0019fd7908cac47922c0c839a2adb/augurs-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9fc9390cdec1b50b2b1bcdbf8f721c98b852af1575b7ea2ad8e96d6ff00002b9",
"md5": "d7352dc73e1925100c4e2eb143e342bb",
"sha256": "5a65e3afae2f1921a2e46ab4d2f3261f8fc72e33f0a61dc05cec4895acfd73f9"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "d7352dc73e1925100c4e2eb143e342bb",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 672354,
"upload_time": "2024-10-16T09:24:43",
"upload_time_iso_8601": "2024-10-16T09:24:43.239523Z",
"url": "https://files.pythonhosted.org/packages/9f/c9/390cdec1b50b2b1bcdbf8f721c98b852af1575b7ea2ad8e96d6ff00002b9/augurs-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "71c474a5ae2ce38596d18965dd8d980ae7a1bcab0e4e11e8f4c9504b79a044d9",
"md5": "496a9049e2d4ab60096ea1fd74932b7a",
"sha256": "b15278afd4b1d8c5785498d992b3a6b5374e44b4ff545520a057855b1f634205"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "496a9049e2d4ab60096ea1fd74932b7a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 745263,
"upload_time": "2024-10-16T09:24:58",
"upload_time_iso_8601": "2024-10-16T09:24:58.616628Z",
"url": "https://files.pythonhosted.org/packages/71/c4/74a5ae2ce38596d18965dd8d980ae7a1bcab0e4e11e8f4c9504b79a044d9/augurs-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5a4a5a36ecf30b055575812c4aa1183ce2b7b1504786632253f01b9c34f96185",
"md5": "154c55c03b2e00fe97680460995c70c0",
"sha256": "d3a75ec035f16f996b6219f5352b44e4c87f2e7e0304ea58f603f68551e0c5f3"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "154c55c03b2e00fe97680460995c70c0",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 686954,
"upload_time": "2024-10-16T09:25:13",
"upload_time_iso_8601": "2024-10-16T09:25:13.292661Z",
"url": "https://files.pythonhosted.org/packages/5a/4a/5a36ecf30b055575812c4aa1183ce2b7b1504786632253f01b9c34f96185/augurs-0.4.0-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d9f6680ff5952e7cf61603b6496cf32086a150506150c8d001e37d2841a3a730",
"md5": "482b4d86f2a37f61fe6ca6f811f77c72",
"sha256": "28ba8de4e88901c1c2c874cf2de48bfa0d66220676422ea6f35cc4c153ad2f86"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "482b4d86f2a37f61fe6ca6f811f77c72",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 672381,
"upload_time": "2024-10-16T09:25:28",
"upload_time_iso_8601": "2024-10-16T09:25:28.662695Z",
"url": "https://files.pythonhosted.org/packages/d9/f6/680ff5952e7cf61603b6496cf32086a150506150c8d001e37d2841a3a730/augurs-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c62057cf296b125b03529ef2898628a8c21dba0ccbefd538b2c53f36b61de668",
"md5": "600369504f5e1ab82b3b758f96943b46",
"sha256": "a1b853106b359afca12be4741b66cea741793b3c0f5ff0aea08f9d931d2b1037"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp310-none-win32.whl",
"has_sig": false,
"md5_digest": "600369504f5e1ab82b3b758f96943b46",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 333333,
"upload_time": "2024-10-16T09:25:56",
"upload_time_iso_8601": "2024-10-16T09:25:56.227259Z",
"url": "https://files.pythonhosted.org/packages/c6/20/57cf296b125b03529ef2898628a8c21dba0ccbefd538b2c53f36b61de668/augurs-0.4.0-cp310-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2ff2c2634234d498a4283ccbda005a4221341b2c139434700992f212d9d1d8bc",
"md5": "cd7131496c8f8b1ccdd879c0ed2f5a6f",
"sha256": "d00ed589ed2555e9f46c2bb70270a36c5209f0697c4d57427c8b20c1715ee898"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp310-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "cd7131496c8f8b1ccdd879c0ed2f5a6f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 357131,
"upload_time": "2024-10-16T09:25:45",
"upload_time_iso_8601": "2024-10-16T09:25:45.273055Z",
"url": "https://files.pythonhosted.org/packages/2f/f2/c2634234d498a4283ccbda005a4221341b2c139434700992f212d9d1d8bc/augurs-0.4.0-cp310-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "54a00d081c1e2c21ccba8cc186040629993b60a2d1be440785e58cf1a18a9475",
"md5": "6db31d7592c8ea223c27bd7feb66063b",
"sha256": "829b45e0110921bfc06b9c4b7b622272488da16ef0b8b99c5a6b6c03ca3ef064"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "6db31d7592c8ea223c27bd7feb66063b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 460545,
"upload_time": "2024-10-16T09:24:40",
"upload_time_iso_8601": "2024-10-16T09:24:40.116524Z",
"url": "https://files.pythonhosted.org/packages/54/a0/0d081c1e2c21ccba8cc186040629993b60a2d1be440785e58cf1a18a9475/augurs-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0acc568aea35f6721539514f825d80573cf7f85d81f563420ade4af8f856d717",
"md5": "15b5518659c97cbb6fdfd5bc93e90a11",
"sha256": "40daf6728bbd8fdff0657d201a0041dab7c0c7d8e108e4f1aec0c51bca582015"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "15b5518659c97cbb6fdfd5bc93e90a11",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 442434,
"upload_time": "2024-10-16T09:24:36",
"upload_time_iso_8601": "2024-10-16T09:24:36.312324Z",
"url": "https://files.pythonhosted.org/packages/0a/cc/568aea35f6721539514f825d80573cf7f85d81f563420ade4af8f856d717/augurs-0.4.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c101c1f5a1bee6ee8d945f56957c7cc40397ebb12c4ae3278b560d5bf53de4fc",
"md5": "cd03cb6e40dbe917f53a8ed6b46c2b59",
"sha256": "8e41815688716a4edb8ad6f1d76c55a4b0b6f196e159ef517a1cb60e20de72ec"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "cd03cb6e40dbe917f53a8ed6b46c2b59",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 499595,
"upload_time": "2024-10-16T09:23:14",
"upload_time_iso_8601": "2024-10-16T09:23:14.943876Z",
"url": "https://files.pythonhosted.org/packages/c1/01/c1f5a1bee6ee8d945f56957c7cc40397ebb12c4ae3278b560d5bf53de4fc/augurs-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e2a8eb3e4cc232540fe978a76b083518fefd881c0c6e1abdec116cd96cc9967f",
"md5": "565c9f98eb8c5c8dfcdc2585c275faab",
"sha256": "dd235a90ff04a3aa4a2cb25c0a7d0f8fe8626b60ceb2310ced37334054719519"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "565c9f98eb8c5c8dfcdc2585c275faab",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 493305,
"upload_time": "2024-10-16T09:23:31",
"upload_time_iso_8601": "2024-10-16T09:23:31.740926Z",
"url": "https://files.pythonhosted.org/packages/e2/a8/eb3e4cc232540fe978a76b083518fefd881c0c6e1abdec116cd96cc9967f/augurs-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "73017a77df03fccd85de1447a749d437bbf911c1f1ab59c4e052ed27b4235ec0",
"md5": "f522f3d72b327a07743651c5b749d718",
"sha256": "0ee8d65dafa9145db4785ee154425c9905297da409f08b5be5c85350036bfeb0"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "f522f3d72b327a07743651c5b749d718",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 572897,
"upload_time": "2024-10-16T09:23:45",
"upload_time_iso_8601": "2024-10-16T09:23:45.763808Z",
"url": "https://files.pythonhosted.org/packages/73/01/7a77df03fccd85de1447a749d437bbf911c1f1ab59c4e052ed27b4235ec0/augurs-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "354a94efa9215e55a14356474b45dcad382abfc5a489e06d39dcfda7a4c63556",
"md5": "efa01b615d3f6a1d7b078afe37d5c4eb",
"sha256": "9f6c476a3b3848ac3b7b1e15177d2498e3236aed18b57d7c3cd54ce2eb1f1726"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "efa01b615d3f6a1d7b078afe37d5c4eb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 592011,
"upload_time": "2024-10-16T09:24:00",
"upload_time_iso_8601": "2024-10-16T09:24:00.237798Z",
"url": "https://files.pythonhosted.org/packages/35/4a/94efa9215e55a14356474b45dcad382abfc5a489e06d39dcfda7a4c63556/augurs-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2517ae40c3178b0285c43bb6adb39fb5ba3cf5bf9de028296e64b01fa17f4f7e",
"md5": "32d9e14c555c15dcaa17d28ebbaad74d",
"sha256": "2bc43effe2e927e68d1e5ca747d99c2b827478e328a2ce8f12cd67af1efc0d13"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "32d9e14c555c15dcaa17d28ebbaad74d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 506498,
"upload_time": "2024-10-16T09:24:24",
"upload_time_iso_8601": "2024-10-16T09:24:24.492728Z",
"url": "https://files.pythonhosted.org/packages/25/17/ae40c3178b0285c43bb6adb39fb5ba3cf5bf9de028296e64b01fa17f4f7e/augurs-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1f98e82fc2bfda59451650a444a833ede77cc66d00fa4049b0974d8d2e97312d",
"md5": "f0032341a357554c33d01b4646e0d914",
"sha256": "bf535769627421208cd2f87f7306c41412a6bcecb65e5803be5eec342a154445"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "f0032341a357554c33d01b4646e0d914",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 530632,
"upload_time": "2024-10-16T09:24:13",
"upload_time_iso_8601": "2024-10-16T09:24:13.463376Z",
"url": "https://files.pythonhosted.org/packages/1f/98/e82fc2bfda59451650a444a833ede77cc66d00fa4049b0974d8d2e97312d/augurs-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cb604a922d2542586eac875e382a680f1d4f0a54ba91f6ad73c22ba8db0391f4",
"md5": "a2b49c2fb3ed880eac762b56e8bf121d",
"sha256": "c71b375ff2173310fdb2d28a5097b4ace18518223f6c4457d9d209aff989df72"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "a2b49c2fb3ed880eac762b56e8bf121d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 672377,
"upload_time": "2024-10-16T09:24:44",
"upload_time_iso_8601": "2024-10-16T09:24:44.493019Z",
"url": "https://files.pythonhosted.org/packages/cb/60/4a922d2542586eac875e382a680f1d4f0a54ba91f6ad73c22ba8db0391f4/augurs-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7321fecd9223533ae3bc33ca6df264ec5ac945d88c3539de110ebba799cb6240",
"md5": "ed3126bf1b2764bc268871529994c6d4",
"sha256": "9102b9bc6fcf489f2907c0553ce37540c4a6e1e910fe1e4ce03be0823aed1674"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "ed3126bf1b2764bc268871529994c6d4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 745291,
"upload_time": "2024-10-16T09:25:00",
"upload_time_iso_8601": "2024-10-16T09:25:00.180735Z",
"url": "https://files.pythonhosted.org/packages/73/21/fecd9223533ae3bc33ca6df264ec5ac945d88c3539de110ebba799cb6240/augurs-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c9ed1c3efe599d058c1acb55157e473fd9706010c9d68b55be62eaa6246d03f2",
"md5": "16c17808cbbc4545def8fb9a60ac48d6",
"sha256": "33deaafc377516a81f4046858e9f84866bdfe372527a99a5ea16f26a284f15bd"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "16c17808cbbc4545def8fb9a60ac48d6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 687021,
"upload_time": "2024-10-16T09:25:14",
"upload_time_iso_8601": "2024-10-16T09:25:14.709329Z",
"url": "https://files.pythonhosted.org/packages/c9/ed/1c3efe599d058c1acb55157e473fd9706010c9d68b55be62eaa6246d03f2/augurs-0.4.0-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f1317a1eff4b0b20e7ae7c2c816fc8033bc4772f42cf498cd49c22b9d2784f42",
"md5": "00d9d5d52f5bcf78bbe26dceb166a254",
"sha256": "7c61b6604290fcbb419efa770fb1d5e937f525282ec9234f987094a33ad1ac8c"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "00d9d5d52f5bcf78bbe26dceb166a254",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 672391,
"upload_time": "2024-10-16T09:25:30",
"upload_time_iso_8601": "2024-10-16T09:25:30.100756Z",
"url": "https://files.pythonhosted.org/packages/f1/31/7a1eff4b0b20e7ae7c2c816fc8033bc4772f42cf498cd49c22b9d2784f42/augurs-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "462e4498fbb62c9bcc60037858e7c6a5cad1c905952d7b851094006171605dee",
"md5": "c9b7f17c641fb5d690956639a07265d3",
"sha256": "7ee54562a72197fc275afef2e2925fd7168d32268087752d2aee660f5ff5e5db"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp311-none-win32.whl",
"has_sig": false,
"md5_digest": "c9b7f17c641fb5d690956639a07265d3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 333300,
"upload_time": "2024-10-16T09:25:57",
"upload_time_iso_8601": "2024-10-16T09:25:57.876819Z",
"url": "https://files.pythonhosted.org/packages/46/2e/4498fbb62c9bcc60037858e7c6a5cad1c905952d7b851094006171605dee/augurs-0.4.0-cp311-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bd7d899fc0c80af5f0d4084e6cdd0cd3cee5aa7039a4bd5fb35bf1918d2221ea",
"md5": "c8236c2ff5a8d7b0e4c62744dca60357",
"sha256": "254ef9c93a449e897ab90ecebecf9fa137c3fdabe7423cb3fe3d7b9ca66e153e"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp311-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "c8236c2ff5a8d7b0e4c62744dca60357",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 357056,
"upload_time": "2024-10-16T09:25:46",
"upload_time_iso_8601": "2024-10-16T09:25:46.935756Z",
"url": "https://files.pythonhosted.org/packages/bd/7d/899fc0c80af5f0d4084e6cdd0cd3cee5aa7039a4bd5fb35bf1918d2221ea/augurs-0.4.0-cp311-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "93deecf7a49654245157a2b07ec7de65f007943ccd2451fe955f054e4a0587da",
"md5": "2067800644cd5df8aca6cdb0f32a5e07",
"sha256": "9c45b82822315aea08fc7145adf649e54dc68067cf3120222736707009284630"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "2067800644cd5df8aca6cdb0f32a5e07",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 461994,
"upload_time": "2024-10-16T09:24:41",
"upload_time_iso_8601": "2024-10-16T09:24:41.513601Z",
"url": "https://files.pythonhosted.org/packages/93/de/ecf7a49654245157a2b07ec7de65f007943ccd2451fe955f054e4a0587da/augurs-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3fb066ec3b0fbf29b4b231b06c0c650d68896613fa320669d1470f8f82a6eff8",
"md5": "044946a3767fd7bc6c6be6beda29bdb7",
"sha256": "f5fb4e48f016c7300614c8d5d444c3d687b52d2591f28a0af64b6e3de743d6fe"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "044946a3767fd7bc6c6be6beda29bdb7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 444009,
"upload_time": "2024-10-16T09:24:37",
"upload_time_iso_8601": "2024-10-16T09:24:37.543343Z",
"url": "https://files.pythonhosted.org/packages/3f/b0/66ec3b0fbf29b4b231b06c0c650d68896613fa320669d1470f8f82a6eff8/augurs-0.4.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5522bca785e852bcfade8bea50539a47c0de11126529e8bd48b42757ceef3da0",
"md5": "049f581c9b53f818209184bfa8b0deb6",
"sha256": "91f436fa92f823bafe9f060b129271107905f3f937612893c26cc36b2dcaf85d"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "049f581c9b53f818209184bfa8b0deb6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 500746,
"upload_time": "2024-10-16T09:23:17",
"upload_time_iso_8601": "2024-10-16T09:23:17.438900Z",
"url": "https://files.pythonhosted.org/packages/55/22/bca785e852bcfade8bea50539a47c0de11126529e8bd48b42757ceef3da0/augurs-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "89b91bfe38634d955813eac0e0a1e45da994b19fe0f11635d4fcc30a748057e2",
"md5": "2ccec16f02239837ef78e4216da3e0d3",
"sha256": "3f7f1e5829e7157937226c2fed27fb758d4303335ec7f15016f78aae0c41bf1d"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "2ccec16f02239837ef78e4216da3e0d3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 494207,
"upload_time": "2024-10-16T09:23:33",
"upload_time_iso_8601": "2024-10-16T09:23:33.189063Z",
"url": "https://files.pythonhosted.org/packages/89/b9/1bfe38634d955813eac0e0a1e45da994b19fe0f11635d4fcc30a748057e2/augurs-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "91ba02353f26468b06b76957044ee16e38191ce04ecb1ba27513c6ce147bf253",
"md5": "a27abe96298e6ced67b87f7677ab35d3",
"sha256": "003a254654f9f27776d8c0609927550dfe62b91ec1b522adbb8ed0d05dccb5d9"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "a27abe96298e6ced67b87f7677ab35d3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 574590,
"upload_time": "2024-10-16T09:23:47",
"upload_time_iso_8601": "2024-10-16T09:23:47.404373Z",
"url": "https://files.pythonhosted.org/packages/91/ba/02353f26468b06b76957044ee16e38191ce04ecb1ba27513c6ce147bf253/augurs-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2747a4dccb93b0644060d789b1202db3a9db2c6d3e8b89454c17ae7a68f68d02",
"md5": "0068dc5fcc3544ad3a324bebf126baba",
"sha256": "ae1cd2ca02856c681280551ba4ed1bce85c5411055468ceb468324e9ed33036f"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "0068dc5fcc3544ad3a324bebf126baba",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 594035,
"upload_time": "2024-10-16T09:24:01",
"upload_time_iso_8601": "2024-10-16T09:24:01.477466Z",
"url": "https://files.pythonhosted.org/packages/27/47/a4dccb93b0644060d789b1202db3a9db2c6d3e8b89454c17ae7a68f68d02/augurs-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "01b21dce994bca4a616ec7f01b37c6a0783a54f1d49daf83f285db82083312cd",
"md5": "d406f847cf79312c1a657e2e94f972f8",
"sha256": "1acdb24b39ccc86c370351008cb91274c8c50615d4aa62529502dc2ac6d8bc11"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d406f847cf79312c1a657e2e94f972f8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 507398,
"upload_time": "2024-10-16T09:24:26",
"upload_time_iso_8601": "2024-10-16T09:24:26.391439Z",
"url": "https://files.pythonhosted.org/packages/01/b2/1dce994bca4a616ec7f01b37c6a0783a54f1d49daf83f285db82083312cd/augurs-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "15c919c7b72a68ab93cf9360ac35be0fcc033b2e21734b2fe9498798351a845f",
"md5": "e29513004e06df1be742f312761c5874",
"sha256": "2b6097b73ac48568013af27df28b0a055ead47e4aacb347ce0d1af579e8aff84"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "e29513004e06df1be742f312761c5874",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 531832,
"upload_time": "2024-10-16T09:24:14",
"upload_time_iso_8601": "2024-10-16T09:24:14.713986Z",
"url": "https://files.pythonhosted.org/packages/15/c9/19c7b72a68ab93cf9360ac35be0fcc033b2e21734b2fe9498798351a845f/augurs-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0afd138d9c769140b292ebe8f54e116510adc2ae98f7ad7eaa4e6a35b9896439",
"md5": "8b9536c96c5d9b9fa6cbac15a19878e3",
"sha256": "a81374a44f664f6f1144448cb11b6910803336f7830eeed2abdec687fc219d68"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "8b9536c96c5d9b9fa6cbac15a19878e3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 673640,
"upload_time": "2024-10-16T09:24:46",
"upload_time_iso_8601": "2024-10-16T09:24:46.453293Z",
"url": "https://files.pythonhosted.org/packages/0a/fd/138d9c769140b292ebe8f54e116510adc2ae98f7ad7eaa4e6a35b9896439/augurs-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8f2c46312cb40f4a5a94e214f7938bf886e0860f3ddf1ef140a605d45ed03338",
"md5": "80f16c62bb2ca72dacb65efd395a41b1",
"sha256": "3ff173941f87b811d6768b83ad754f170246cddfa03210baeeb9dee7651f0c8a"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "80f16c62bb2ca72dacb65efd395a41b1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 746961,
"upload_time": "2024-10-16T09:25:01",
"upload_time_iso_8601": "2024-10-16T09:25:01.705012Z",
"url": "https://files.pythonhosted.org/packages/8f/2c/46312cb40f4a5a94e214f7938bf886e0860f3ddf1ef140a605d45ed03338/augurs-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "41ccb1b1a23da5861e41d943f2f1a66f287b0eb47ffc5a9341954b645b6a5e71",
"md5": "874f37c2eece3e6535cad063c32350fb",
"sha256": "9e2138a3c1c3daa2e745d95d40279d62aff931f3463b1ce4b829621609e10dd4"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "874f37c2eece3e6535cad063c32350fb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 688953,
"upload_time": "2024-10-16T09:25:16",
"upload_time_iso_8601": "2024-10-16T09:25:16.444133Z",
"url": "https://files.pythonhosted.org/packages/41/cc/b1b1a23da5861e41d943f2f1a66f287b0eb47ffc5a9341954b645b6a5e71/augurs-0.4.0-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a82dc6357aab59e60c18793fffd279cc43249f7021f5954653b38f1f4d9dcdda",
"md5": "e2c8a9077ebe96fdbda11dfdbb81f4f0",
"sha256": "ac1a409ffa500ef582808007e8a82125c7ab775804cf0c3479f70240286d6f5a"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "e2c8a9077ebe96fdbda11dfdbb81f4f0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 673655,
"upload_time": "2024-10-16T09:25:31",
"upload_time_iso_8601": "2024-10-16T09:25:31.555036Z",
"url": "https://files.pythonhosted.org/packages/a8/2d/c6357aab59e60c18793fffd279cc43249f7021f5954653b38f1f4d9dcdda/augurs-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5d92207e641d9f1e7b0de0dc4af379415cf2033007c383721754bf1be97954fa",
"md5": "9c0bd05c3e7f81a56907ad624372fd7f",
"sha256": "9d5e076ecd009fee43509f7a7cd16ae25280947193a752fb2104acb893c8e771"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp312-none-win32.whl",
"has_sig": false,
"md5_digest": "9c0bd05c3e7f81a56907ad624372fd7f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 334608,
"upload_time": "2024-10-16T09:25:59",
"upload_time_iso_8601": "2024-10-16T09:25:59.408242Z",
"url": "https://files.pythonhosted.org/packages/5d/92/207e641d9f1e7b0de0dc4af379415cf2033007c383721754bf1be97954fa/augurs-0.4.0-cp312-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c79973d6b3c39836f10eb3803b219c5cdfcd495567763ca8ec59483d357c3cde",
"md5": "140b92d0b1c32fd0661c497cfc557348",
"sha256": "6be1a67113961294eb0106525a8d29668b0c9659d9be1ad8a086b134b09e8227"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp312-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "140b92d0b1c32fd0661c497cfc557348",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 358619,
"upload_time": "2024-10-16T09:25:49",
"upload_time_iso_8601": "2024-10-16T09:25:49.161490Z",
"url": "https://files.pythonhosted.org/packages/c7/99/73d6b3c39836f10eb3803b219c5cdfcd495567763ca8ec59483d357c3cde/augurs-0.4.0-cp312-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "16412e8697274075e4fb6a580e7d7c30bb9a0e05fb6f0cd3e2462aba00039605",
"md5": "69252be72cb9cc95cdd439fe5ba75fa0",
"sha256": "44303f93e5ca09c1419385b6e56c5fae800c5ea9de5e222c8674df91520cb2ef"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "69252be72cb9cc95cdd439fe5ba75fa0",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 500252,
"upload_time": "2024-10-16T09:23:19",
"upload_time_iso_8601": "2024-10-16T09:23:19.489128Z",
"url": "https://files.pythonhosted.org/packages/16/41/2e8697274075e4fb6a580e7d7c30bb9a0e05fb6f0cd3e2462aba00039605/augurs-0.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d99acef1f38e58700b6e416e088a8ad21fc4733121dfe4763e28f844402b299c",
"md5": "e3bc95b9daea9dde367081ed89a457b7",
"sha256": "a3296ef5d9fc026df6072df2c361f044d1b45e45289949dac1ee276f24a0ca00"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "e3bc95b9daea9dde367081ed89a457b7",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 493439,
"upload_time": "2024-10-16T09:23:35",
"upload_time_iso_8601": "2024-10-16T09:23:35.098279Z",
"url": "https://files.pythonhosted.org/packages/d9/9a/cef1f38e58700b6e416e088a8ad21fc4733121dfe4763e28f844402b299c/augurs-0.4.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0462c98115e51583138171938a3818968ea069e549ef3dd5a52c78598ca52b2b",
"md5": "9677d902dc1b796032cf2795e852c019",
"sha256": "105826d439d91a97a9b6c4d05668a22ab992ca05433c7a51289e010bbace4049"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "9677d902dc1b796032cf2795e852c019",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 573482,
"upload_time": "2024-10-16T09:23:49",
"upload_time_iso_8601": "2024-10-16T09:23:49.276860Z",
"url": "https://files.pythonhosted.org/packages/04/62/c98115e51583138171938a3818968ea069e549ef3dd5a52c78598ca52b2b/augurs-0.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5b185f768983cee18a5b8b56d67dc4f27e5c7a1ddb8049fa525c91667be0bbaf",
"md5": "01c2273f3db12f6c3f7e1995c55c65bb",
"sha256": "514266ada2fe37873f281ebbdcdc3b9d578e38db924910d69faadb06943d7d48"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "01c2273f3db12f6c3f7e1995c55c65bb",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 592423,
"upload_time": "2024-10-16T09:24:02",
"upload_time_iso_8601": "2024-10-16T09:24:02.720654Z",
"url": "https://files.pythonhosted.org/packages/5b/18/5f768983cee18a5b8b56d67dc4f27e5c7a1ddb8049fa525c91667be0bbaf/augurs-0.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9beab8bc687d66370d99bdff33ded980c65c095e0a034457ede9b89a98429aec",
"md5": "ac8621055cdca9b4413f6f7a47245f5a",
"sha256": "fbd7a5727e13c17b08c67819d6bf0862a15d18e910b6df8f37bae6d0aae52ab0"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ac8621055cdca9b4413f6f7a47245f5a",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 506880,
"upload_time": "2024-10-16T09:24:28",
"upload_time_iso_8601": "2024-10-16T09:24:28.164589Z",
"url": "https://files.pythonhosted.org/packages/9b/ea/b8bc687d66370d99bdff33ded980c65c095e0a034457ede9b89a98429aec/augurs-0.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "02468e13afe28e5f1c446440e74080820caf9ae99610ae04a54597e22fb98a0a",
"md5": "582464f9f088ff40d05001d9aa90c12a",
"sha256": "6b05909f542015d7f798f7e6be946fd3cfbf20cc989d32a872246caaa945e42f"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "582464f9f088ff40d05001d9aa90c12a",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 531027,
"upload_time": "2024-10-16T09:24:15",
"upload_time_iso_8601": "2024-10-16T09:24:15.977349Z",
"url": "https://files.pythonhosted.org/packages/02/46/8e13afe28e5f1c446440e74080820caf9ae99610ae04a54597e22fb98a0a/augurs-0.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e855aa6e91e9a46ee4aa4ac488163a33e0821606753199bf92b4b271aef1db37",
"md5": "a486a9e8ab62b295188f341d8c58ed37",
"sha256": "748d19b43014278cb1a568a6dd31f6360f793a3bc9d6a5c8bea9cddcd63d15f0"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "a486a9e8ab62b295188f341d8c58ed37",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 672777,
"upload_time": "2024-10-16T09:24:47",
"upload_time_iso_8601": "2024-10-16T09:24:47.910704Z",
"url": "https://files.pythonhosted.org/packages/e8/55/aa6e91e9a46ee4aa4ac488163a33e0821606753199bf92b4b271aef1db37/augurs-0.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c89132a5043736a6c417a6dad35838c59665ca5e4be4137a12d7f41dc94cc034",
"md5": "ebbf9b41ae131b02a34aeb7719e155dc",
"sha256": "b0aff26b37a959f5d418664051bd22ae1f06348a751fb3bd0112eb0b0d36ba7e"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp37-cp37m-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "ebbf9b41ae131b02a34aeb7719e155dc",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 745434,
"upload_time": "2024-10-16T09:25:03",
"upload_time_iso_8601": "2024-10-16T09:25:03.006285Z",
"url": "https://files.pythonhosted.org/packages/c8/91/32a5043736a6c417a6dad35838c59665ca5e4be4137a12d7f41dc94cc034/augurs-0.4.0-cp37-cp37m-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e2b410f689e0899a35e4f35a6f54bcccdb9c99ea9dde7e0c6b2015eda3875be1",
"md5": "08a3c9d5f7f754db83bc1d98da4ea1ab",
"sha256": "4a5bac07e9599f48af7fb5ecbe1011a2d008abe9f5c3f336ad8dd60819d6e887"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp37-cp37m-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "08a3c9d5f7f754db83bc1d98da4ea1ab",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 687532,
"upload_time": "2024-10-16T09:25:17",
"upload_time_iso_8601": "2024-10-16T09:25:17.792324Z",
"url": "https://files.pythonhosted.org/packages/e2/b4/10f689e0899a35e4f35a6f54bcccdb9c99ea9dde7e0c6b2015eda3875be1/augurs-0.4.0-cp37-cp37m-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e91a75817a6badd0903068da848c0432d4c0507c736a486b91c53693670e9f42",
"md5": "fcadb155237bdf7a1f9bc0fa4097a447",
"sha256": "152d27b5cbc6abc26977024ffcb563516bd4b4a741e0f824a5b5f061b1b63554"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "fcadb155237bdf7a1f9bc0fa4097a447",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 672809,
"upload_time": "2024-10-16T09:25:32",
"upload_time_iso_8601": "2024-10-16T09:25:32.953383Z",
"url": "https://files.pythonhosted.org/packages/e9/1a/75817a6badd0903068da848c0432d4c0507c736a486b91c53693670e9f42/augurs-0.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c4c417f874f624649a58f414662c4b03fc3000e6ed051f01915906203cbb5233",
"md5": "a1d014b99867d0fbcdd6ed431df3c825",
"sha256": "6146b9c93af20c88b1642ad264fff63b6b3ec05cdd9e198e28c08478110ae3d7"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp37-none-win32.whl",
"has_sig": false,
"md5_digest": "a1d014b99867d0fbcdd6ed431df3c825",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 333368,
"upload_time": "2024-10-16T09:26:00",
"upload_time_iso_8601": "2024-10-16T09:26:00.849541Z",
"url": "https://files.pythonhosted.org/packages/c4/c4/17f874f624649a58f414662c4b03fc3000e6ed051f01915906203cbb5233/augurs-0.4.0-cp37-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f9895fcdf589e3e38ba849bdd5697ce8c73183c18847017ce70b1367189737cc",
"md5": "56b7347f8df01540bacefd78ece54d08",
"sha256": "1f82bdc73f93984efcbbe05b9c16d4be0ceab380447f61293abe2b83d6bc4416"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp37-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "56b7347f8df01540bacefd78ece54d08",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 356901,
"upload_time": "2024-10-16T09:25:50",
"upload_time_iso_8601": "2024-10-16T09:25:50.984943Z",
"url": "https://files.pythonhosted.org/packages/f9/89/5fcdf589e3e38ba849bdd5697ce8c73183c18847017ce70b1367189737cc/augurs-0.4.0-cp37-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3e39e5576e4e17747c6b1b498331d435c2b52d3c7af50ae10a4bd540a7d23beb",
"md5": "3da98ceba8831c3c9e31bccbf1f73f31",
"sha256": "cd90901e7c31b49490671d8c7ce63be799111e41a88719fb3d47d16408325886"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3da98ceba8831c3c9e31bccbf1f73f31",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 500103,
"upload_time": "2024-10-16T09:23:21",
"upload_time_iso_8601": "2024-10-16T09:23:21.666826Z",
"url": "https://files.pythonhosted.org/packages/3e/39/e5576e4e17747c6b1b498331d435c2b52d3c7af50ae10a4bd540a7d23beb/augurs-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d355a140e21e47b243cc35ee56e625426836ef166c336ab1182f2e20a1de0142",
"md5": "7d245a65b36aa66bda75839e079481c3",
"sha256": "aab1cf2eae6953664301fd0319660f0c71fb0c8743d46e418fe5997b191788cf"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "7d245a65b36aa66bda75839e079481c3",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 493264,
"upload_time": "2024-10-16T09:23:36",
"upload_time_iso_8601": "2024-10-16T09:23:36.367368Z",
"url": "https://files.pythonhosted.org/packages/d3/55/a140e21e47b243cc35ee56e625426836ef166c336ab1182f2e20a1de0142/augurs-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f4d88ae606b6dd4317a5c18932b81c62a8219a80d820af58fd88a3b3f7360488",
"md5": "fdd8435ab6a2f0cf52d09703e24791ae",
"sha256": "5689feaf7595aa6596035937827d31ed8ccb3915a417b63dc07b6433a47c04ac"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "fdd8435ab6a2f0cf52d09703e24791ae",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 573302,
"upload_time": "2024-10-16T09:23:50",
"upload_time_iso_8601": "2024-10-16T09:23:50.887732Z",
"url": "https://files.pythonhosted.org/packages/f4/d8/8ae606b6dd4317a5c18932b81c62a8219a80d820af58fd88a3b3f7360488/augurs-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ecda389c129d38335565d87b43d985fa9d548ae7d1c92c053e7c6f0791185d8f",
"md5": "e3cde5f1aa4dd2fe5281cc4807e41477",
"sha256": "23a46bd784c4d7c071d07852006a824984297086e547d91a63cb6f1dd39e288e"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "e3cde5f1aa4dd2fe5281cc4807e41477",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 592296,
"upload_time": "2024-10-16T09:24:03",
"upload_time_iso_8601": "2024-10-16T09:24:03.921101Z",
"url": "https://files.pythonhosted.org/packages/ec/da/389c129d38335565d87b43d985fa9d548ae7d1c92c053e7c6f0791185d8f/augurs-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e0c424ded5bff3b399a6a94078586f338687f42ec44cb2ade677feb71966738d",
"md5": "8df9c82f791fa1b0951b4f4903c03326",
"sha256": "9f87ec351c26930d8e34ef5a9bbaf20b8e9830b7851cd2e69902c4068d8c2bf7"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8df9c82f791fa1b0951b4f4903c03326",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 506743,
"upload_time": "2024-10-16T09:24:29",
"upload_time_iso_8601": "2024-10-16T09:24:29.885373Z",
"url": "https://files.pythonhosted.org/packages/e0/c4/24ded5bff3b399a6a94078586f338687f42ec44cb2ade677feb71966738d/augurs-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1790bcd1dbc4f67e0844b29f4f416932b33dd28fed2aba2d9a144685fb32fa93",
"md5": "3d10074b8dcb6c21b99f0e52c6d71c95",
"sha256": "b66ed8d5997fa99533daec01f99be132fa311fd9d63ec1e1a8c7e24215ecc0cd"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "3d10074b8dcb6c21b99f0e52c6d71c95",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 530733,
"upload_time": "2024-10-16T09:24:17",
"upload_time_iso_8601": "2024-10-16T09:24:17.205780Z",
"url": "https://files.pythonhosted.org/packages/17/90/bcd1dbc4f67e0844b29f4f416932b33dd28fed2aba2d9a144685fb32fa93/augurs-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "407d3656ce9286781d58063b8859073b0326edd413b33d46cdb925d8809abf58",
"md5": "f577616cabdbb96022c5321083994c6d",
"sha256": "4bb6942cf133b08de4a6af440456a02dd12297dbc5f200d1c8390310a3741420"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "f577616cabdbb96022c5321083994c6d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 672737,
"upload_time": "2024-10-16T09:24:49",
"upload_time_iso_8601": "2024-10-16T09:24:49.175535Z",
"url": "https://files.pythonhosted.org/packages/40/7d/3656ce9286781d58063b8859073b0326edd413b33d46cdb925d8809abf58/augurs-0.4.0-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "77c171bc534d513b9d4d31bc4251e8e11ab317a5dad6bdfd435cf4f4cf0ae017",
"md5": "f7217c7fb930fe6fba2053fa463bc71f",
"sha256": "b6890ec71d94b3283be87a625cd54123e1efaee5f00650378d43af468d1e6e25"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp38-cp38-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "f7217c7fb930fe6fba2053fa463bc71f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 745329,
"upload_time": "2024-10-16T09:25:04",
"upload_time_iso_8601": "2024-10-16T09:25:04.306394Z",
"url": "https://files.pythonhosted.org/packages/77/c1/71bc534d513b9d4d31bc4251e8e11ab317a5dad6bdfd435cf4f4cf0ae017/augurs-0.4.0-cp38-cp38-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a7d19303b439d5078b288800df70c6f7cb0a993559d8b6d09d0ee0deab0955b1",
"md5": "b92fec4b16203a32cdbcbb8b128aceca",
"sha256": "6a16c739431b8e36878e21ecb9258ce51d8994fb5f1faf9a7d607350b7e29041"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "b92fec4b16203a32cdbcbb8b128aceca",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 687424,
"upload_time": "2024-10-16T09:25:19",
"upload_time_iso_8601": "2024-10-16T09:25:19.258809Z",
"url": "https://files.pythonhosted.org/packages/a7/d1/9303b439d5078b288800df70c6f7cb0a993559d8b6d09d0ee0deab0955b1/augurs-0.4.0-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2eacf3dacd466429ac5571a70f5f91ddccf4a4440b283e677f8214eed1b3ba91",
"md5": "cd2358b9428970e39c3b158b6e1d4e53",
"sha256": "297551d7ae528b6f540c9263c0a6e35cc5c745806e69991a0701bbf9256f1692"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "cd2358b9428970e39c3b158b6e1d4e53",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 672696,
"upload_time": "2024-10-16T09:25:34",
"upload_time_iso_8601": "2024-10-16T09:25:34.901371Z",
"url": "https://files.pythonhosted.org/packages/2e/ac/f3dacd466429ac5571a70f5f91ddccf4a4440b283e677f8214eed1b3ba91/augurs-0.4.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "34d0698ff6d2bb6e2b5c34abaa62ff61d3b9d8479db1b82bd4740d751410c649",
"md5": "0d4328cfad018e2b304c9d6b0fe235c9",
"sha256": "7d4e495c5c08910340070b00a324aa98c0de34744b1eccaa61f268f76e3a8152"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp38-none-win32.whl",
"has_sig": false,
"md5_digest": "0d4328cfad018e2b304c9d6b0fe235c9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 333350,
"upload_time": "2024-10-16T09:26:02",
"upload_time_iso_8601": "2024-10-16T09:26:02.557382Z",
"url": "https://files.pythonhosted.org/packages/34/d0/698ff6d2bb6e2b5c34abaa62ff61d3b9d8479db1b82bd4740d751410c649/augurs-0.4.0-cp38-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a9364dd669f17f12826e15b6ac1f8d3eaec17c822ba1e90fcc867f196379ca1a",
"md5": "20b0fbbee9bf13b7100be82590040034",
"sha256": "2e94b1c7dd046ebe0a5fe87c1798c8dfcfd8b08abc8625f03659da446469ddd5"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp38-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "20b0fbbee9bf13b7100be82590040034",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 356896,
"upload_time": "2024-10-16T09:25:52",
"upload_time_iso_8601": "2024-10-16T09:25:52.479009Z",
"url": "https://files.pythonhosted.org/packages/a9/36/4dd669f17f12826e15b6ac1f8d3eaec17c822ba1e90fcc867f196379ca1a/augurs-0.4.0-cp38-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2a1637154786b54273252a9d46b116ef002c58831579745bbba08440b136c872",
"md5": "db9c754b8f18b7af942a9f150b56d5b9",
"sha256": "11b763350ae0f3d4870b505d2162bdbc3138a10e4ba6af938f9a42aecec71f72"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "db9c754b8f18b7af942a9f150b56d5b9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 442944,
"upload_time": "2024-10-16T09:24:38",
"upload_time_iso_8601": "2024-10-16T09:24:38.843055Z",
"url": "https://files.pythonhosted.org/packages/2a/16/37154786b54273252a9d46b116ef002c58831579745bbba08440b136c872/augurs-0.4.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "afad1ac6b008e82888ae511fb4fa2f9f9be76346074a7639f9ef87ec8d1b8e1c",
"md5": "3b13bb173c27bf0b52e2252f1778ef68",
"sha256": "4842d3a511e94eda0e1892704ae5e885a13a2cc5f7c68dfee408bfe8276a7961"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3b13bb173c27bf0b52e2252f1778ef68",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 500175,
"upload_time": "2024-10-16T09:23:23",
"upload_time_iso_8601": "2024-10-16T09:23:23.396204Z",
"url": "https://files.pythonhosted.org/packages/af/ad/1ac6b008e82888ae511fb4fa2f9f9be76346074a7639f9ef87ec8d1b8e1c/augurs-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "08f7dd7b9487bfe8797bfa582a516dfb43fdcb0c79ff9f0dd246d43ffccc88c4",
"md5": "1df8bf2364e8def95fadcc6c05b4820f",
"sha256": "b6df6ee5e375b43e52c71cba6c0ca073f622f1d618e2543bd225da19027df0d3"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "1df8bf2364e8def95fadcc6c05b4820f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 493480,
"upload_time": "2024-10-16T09:23:37",
"upload_time_iso_8601": "2024-10-16T09:23:37.993913Z",
"url": "https://files.pythonhosted.org/packages/08/f7/dd7b9487bfe8797bfa582a516dfb43fdcb0c79ff9f0dd246d43ffccc88c4/augurs-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cfba41a2fa9a68f8c79743dc57ed7c42d5975f4a2e9a298f2ecd2de67fb55fec",
"md5": "be97c93a3915f56d83123009cc71b4b5",
"sha256": "1c900dfa27abb51b23911126f7fc6dd9bb252f4afedf126c692cfcf1e6bf9dc7"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "be97c93a3915f56d83123009cc71b4b5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 573457,
"upload_time": "2024-10-16T09:23:52",
"upload_time_iso_8601": "2024-10-16T09:23:52.420867Z",
"url": "https://files.pythonhosted.org/packages/cf/ba/41a2fa9a68f8c79743dc57ed7c42d5975f4a2e9a298f2ecd2de67fb55fec/augurs-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1dea7479905f1973b2fa9473e3eb672d0594127c4ed4505ce340879abd4fcd7d",
"md5": "727dda2f51cfb7642abb0a98f67711b6",
"sha256": "2c354fc39928426d4f5ece3166cd94932beb8c6a891382c05adc2ab7cd4c4af1"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "727dda2f51cfb7642abb0a98f67711b6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 592491,
"upload_time": "2024-10-16T09:24:05",
"upload_time_iso_8601": "2024-10-16T09:24:05.208026Z",
"url": "https://files.pythonhosted.org/packages/1d/ea/7479905f1973b2fa9473e3eb672d0594127c4ed4505ce340879abd4fcd7d/augurs-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "39f904c3939f089323182084b6701964e97d4c0f901010a4f21dbb53cb1272bc",
"md5": "a1fe3b75a5bddeca2c84a332de79ff65",
"sha256": "708d5d224ea98e162a01c56e5c48bcae1ef13e004e463d69f826de265764e2d9"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a1fe3b75a5bddeca2c84a332de79ff65",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 506860,
"upload_time": "2024-10-16T09:24:31",
"upload_time_iso_8601": "2024-10-16T09:24:31.133282Z",
"url": "https://files.pythonhosted.org/packages/39/f9/04c3939f089323182084b6701964e97d4c0f901010a4f21dbb53cb1272bc/augurs-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "99a8f8403d92df336419604ebff896502c76e0a3e414cd866851e4c0bc0963fc",
"md5": "584391de5040ed51ee82b66843b55490",
"sha256": "a547c3c51efa2b99a586977972ef82373065926758262f0755f86e597a6eea3d"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "584391de5040ed51ee82b66843b55490",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 531043,
"upload_time": "2024-10-16T09:24:18",
"upload_time_iso_8601": "2024-10-16T09:24:18.988856Z",
"url": "https://files.pythonhosted.org/packages/99/a8/f8403d92df336419604ebff896502c76e0a3e414cd866851e4c0bc0963fc/augurs-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a861dc678b9e6b90a469c0a74fa28179aaf520cb0d1a7395765132622881c410",
"md5": "ee30bb40717c162ab9154c11e6de1bcd",
"sha256": "c6b8e8e16a18b8440d6f38079fd3473cc54315b8a341b61e1d75e6e839c536c8"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "ee30bb40717c162ab9154c11e6de1bcd",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 672787,
"upload_time": "2024-10-16T09:24:51",
"upload_time_iso_8601": "2024-10-16T09:24:51.141315Z",
"url": "https://files.pythonhosted.org/packages/a8/61/dc678b9e6b90a469c0a74fa28179aaf520cb0d1a7395765132622881c410/augurs-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2eee2ed060576967e70b72cecd58e7a33911f671f8e37db5c527a87502612d64",
"md5": "54a198145814bc615084d4d230fda453",
"sha256": "6b92df470ff668a15fa6b4b70aa80dca4d7eb050e73fa900c3ab051e559b9e4b"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp39-cp39-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "54a198145814bc615084d4d230fda453",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 745640,
"upload_time": "2024-10-16T09:25:05",
"upload_time_iso_8601": "2024-10-16T09:25:05.772497Z",
"url": "https://files.pythonhosted.org/packages/2e/ee/2ed060576967e70b72cecd58e7a33911f671f8e37db5c527a87502612d64/augurs-0.4.0-cp39-cp39-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fc9f94034c63e49f89367717c0296511daa1de2f6948bd88f0c5d855e8ba4b9d",
"md5": "e0eb0ca5617d9b4d9a69c510d383ebd6",
"sha256": "3e7fabf2cdac06217e95595645af318a9c1092153c32e73474d25587933efdde"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "e0eb0ca5617d9b4d9a69c510d383ebd6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 687431,
"upload_time": "2024-10-16T09:25:20",
"upload_time_iso_8601": "2024-10-16T09:25:20.525397Z",
"url": "https://files.pythonhosted.org/packages/fc/9f/94034c63e49f89367717c0296511daa1de2f6948bd88f0c5d855e8ba4b9d/augurs-0.4.0-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "803339d27f8ddca4857900f8d8120b94b0c16850d9de1203be09dfd2cb8509fc",
"md5": "c7b93f450e0c7412728c63fa158b873b",
"sha256": "d7d669372145d1121a197257190e6be4cae23662e445a50fdc586bb3769055a2"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "c7b93f450e0c7412728c63fa158b873b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 672769,
"upload_time": "2024-10-16T09:25:36",
"upload_time_iso_8601": "2024-10-16T09:25:36.289592Z",
"url": "https://files.pythonhosted.org/packages/80/33/39d27f8ddca4857900f8d8120b94b0c16850d9de1203be09dfd2cb8509fc/augurs-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "78b59759c698322f006eac2fec631261205377a3212f91708d5d575b97cb2e7d",
"md5": "17f2a1a5f31e9be4fd912260ecf814c6",
"sha256": "4992094518c3b9eac95763c6c46f8ca73eee34a6a68ab773a54cb4c330f0ce7e"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp39-none-win32.whl",
"has_sig": false,
"md5_digest": "17f2a1a5f31e9be4fd912260ecf814c6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 333540,
"upload_time": "2024-10-16T09:26:04",
"upload_time_iso_8601": "2024-10-16T09:26:04.059302Z",
"url": "https://files.pythonhosted.org/packages/78/b5/9759c698322f006eac2fec631261205377a3212f91708d5d575b97cb2e7d/augurs-0.4.0-cp39-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3563313ca37142bbde8ee529a9ac1bd3e6ec82d9e4bc547869882628d21a82ea",
"md5": "488f90576f83475a51ba7f22033aac70",
"sha256": "d1f7bbb83d246caef8321f325d9f3de40fb17bc5278fa97f3b5e6e131cbb1c1d"
},
"downloads": -1,
"filename": "augurs-0.4.0-cp39-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "488f90576f83475a51ba7f22033aac70",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 357431,
"upload_time": "2024-10-16T09:25:54",
"upload_time_iso_8601": "2024-10-16T09:25:54.361998Z",
"url": "https://files.pythonhosted.org/packages/35/63/313ca37142bbde8ee529a9ac1bd3e6ec82d9e4bc547869882628d21a82ea/augurs-0.4.0-cp39-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6473e7fb70aa72f18892635a92566f5bdbd63fdad08ab0e40b24da84b24c2df4",
"md5": "f968fbff8e9588aa0264588d7d334ea6",
"sha256": "3b155e7002fc6d7e48f5a3df861368c7c12fce0bc3b892df3b3bb6bb2e203d72"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f968fbff8e9588aa0264588d7d334ea6",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 499685,
"upload_time": "2024-10-16T09:23:24",
"upload_time_iso_8601": "2024-10-16T09:23:24.973664Z",
"url": "https://files.pythonhosted.org/packages/64/73/e7fb70aa72f18892635a92566f5bdbd63fdad08ab0e40b24da84b24c2df4/augurs-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "71fc431edfaf0df4b1c2909ae6d2a9ee409c1e23d44d61c6fff64b02337ac766",
"md5": "be19130a688efa951ab078970fb38edb",
"sha256": "4821abd9ef959a76c89964577a86a1674e19b11da982248d775da47be9b53dea"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "be19130a688efa951ab078970fb38edb",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 493283,
"upload_time": "2024-10-16T09:23:39",
"upload_time_iso_8601": "2024-10-16T09:23:39.278906Z",
"url": "https://files.pythonhosted.org/packages/71/fc/431edfaf0df4b1c2909ae6d2a9ee409c1e23d44d61c6fff64b02337ac766/augurs-0.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8dc189926d8f9249813f4ab2a13a09b996f0bddf84b75587ac5f488ba1a12be6",
"md5": "d9f76b504da7e4d5263041135876a897",
"sha256": "398d85235159364a6d8eca94ccb7bf75b3aa9503fc6f3691635f9411f72bc5da"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "d9f76b504da7e4d5263041135876a897",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 573041,
"upload_time": "2024-10-16T09:23:53",
"upload_time_iso_8601": "2024-10-16T09:23:53.668035Z",
"url": "https://files.pythonhosted.org/packages/8d/c1/89926d8f9249813f4ab2a13a09b996f0bddf84b75587ac5f488ba1a12be6/augurs-0.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7b20cee7b086c5ca79ee77f4684100033f078f02710d194f7b11890a367194bb",
"md5": "eac10551accbcd4fe5b861e86959e2a5",
"sha256": "abc4364ad1ade95fee9e23efbe925ba937a0240ce6f6eef5904b197ac50457fb"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "eac10551accbcd4fe5b861e86959e2a5",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 590816,
"upload_time": "2024-10-16T09:24:06",
"upload_time_iso_8601": "2024-10-16T09:24:06.415785Z",
"url": "https://files.pythonhosted.org/packages/7b/20/cee7b086c5ca79ee77f4684100033f078f02710d194f7b11890a367194bb/augurs-0.4.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8c5f74b739101934276718cf9389b3fd0064e67955fe42e1261d492c9c01f410",
"md5": "1cb265fce03d5813548fa7471de09ff1",
"sha256": "0536af90a327c44ec819f4ab3553c222a042c55ca2e300a10341cd2561a42afa"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "1cb265fce03d5813548fa7471de09ff1",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 506652,
"upload_time": "2024-10-16T09:24:32",
"upload_time_iso_8601": "2024-10-16T09:24:32.428986Z",
"url": "https://files.pythonhosted.org/packages/8c/5f/74b739101934276718cf9389b3fd0064e67955fe42e1261d492c9c01f410/augurs-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "93396da2dd4a7f61924fde5ea0dd289b2890609c8bb4f3f60a8b320aca87b7ca",
"md5": "395a58a1dea04e4c267ada4318eed6ed",
"sha256": "3d75bd37ca4efb1a67c8ce054f44493f1560e597fccb9f7ab7842d4030b50767"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "395a58a1dea04e4c267ada4318eed6ed",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 530802,
"upload_time": "2024-10-16T09:24:20",
"upload_time_iso_8601": "2024-10-16T09:24:20.678000Z",
"url": "https://files.pythonhosted.org/packages/93/39/6da2dd4a7f61924fde5ea0dd289b2890609c8bb4f3f60a8b320aca87b7ca/augurs-0.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c21a640c8cd3eadfdb986ce8a9c9ab0b5b4594a31b79edf4c1e702cd18c8aa5a",
"md5": "ffc755f62860e180def944d134098e1f",
"sha256": "4cb2695702aa722109bdbf8c55c1e4320a9e871967af70f52def75d23a91f82d"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "ffc755f62860e180def944d134098e1f",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 673253,
"upload_time": "2024-10-16T09:24:52",
"upload_time_iso_8601": "2024-10-16T09:24:52.418366Z",
"url": "https://files.pythonhosted.org/packages/c2/1a/640c8cd3eadfdb986ce8a9c9ab0b5b4594a31b79edf4c1e702cd18c8aa5a/augurs-0.4.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8295cdd052f4ec6480b98318c4bf7729eab8e16e0aa4040b07494d29ba1b82a5",
"md5": "49c485dc246e072c553110d1343a99ed",
"sha256": "9ceaee73f8bd15ec6cc6fb82c5cd40202efefdf8a83b688e244512eefac7bdf2"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "49c485dc246e072c553110d1343a99ed",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 746195,
"upload_time": "2024-10-16T09:25:07",
"upload_time_iso_8601": "2024-10-16T09:25:07.565763Z",
"url": "https://files.pythonhosted.org/packages/82/95/cdd052f4ec6480b98318c4bf7729eab8e16e0aa4040b07494d29ba1b82a5/augurs-0.4.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a9d23bf27db9a0719351c392b84f9d8053c72c811ebb9a5554024aaac5113ed8",
"md5": "7e32c06492bdc18062bd4010c3afe55d",
"sha256": "ca481bf7b4610004d35bcd66ad29ca532064175b752584da09d5ba2f83e0661c"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "7e32c06492bdc18062bd4010c3afe55d",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 687970,
"upload_time": "2024-10-16T09:25:21",
"upload_time_iso_8601": "2024-10-16T09:25:21.976651Z",
"url": "https://files.pythonhosted.org/packages/a9/d2/3bf27db9a0719351c392b84f9d8053c72c811ebb9a5554024aaac5113ed8/augurs-0.4.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "af2f8942c2f3038912408a15a3cccc8457111484ad868af9962a051f971d4fb8",
"md5": "9c169fe3eb88af3a4a8eb50bb81ca85d",
"sha256": "28f69ae68c3ac9704f899914985913507bb51f93ed55bab6f4c783ecf18a2f4c"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "9c169fe3eb88af3a4a8eb50bb81ca85d",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 673051,
"upload_time": "2024-10-16T09:25:37",
"upload_time_iso_8601": "2024-10-16T09:25:37.744582Z",
"url": "https://files.pythonhosted.org/packages/af/2f/8942c2f3038912408a15a3cccc8457111484ad868af9962a051f971d4fb8/augurs-0.4.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4743f62d308dd2766bed1f6e1bb07a7fee1d9b39232ece732c92fe7eb834f3e3",
"md5": "204f00ca8ff4958a47361b06015e2cfc",
"sha256": "985672cb4a1f6e7cdde23fcdc7d587c8bed4f3f52441139ff475aa4fa0601367"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "204f00ca8ff4958a47361b06015e2cfc",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.7",
"size": 501215,
"upload_time": "2024-10-16T09:23:26",
"upload_time_iso_8601": "2024-10-16T09:23:26.516040Z",
"url": "https://files.pythonhosted.org/packages/47/43/f62d308dd2766bed1f6e1bb07a7fee1d9b39232ece732c92fe7eb834f3e3/augurs-0.4.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c9e12830313d1722ee7d3d89cf7e407ac61526d2b692d609377648e2257c1ec5",
"md5": "10eb6262dc1c3e5b4ac8e0b4bc575ee4",
"sha256": "3ba85c947bec6e13faf7b709dbbfc470fb464870b0e722e91fd1df8b2531d9c7"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "10eb6262dc1c3e5b4ac8e0b4bc575ee4",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.7",
"size": 494467,
"upload_time": "2024-10-16T09:23:40",
"upload_time_iso_8601": "2024-10-16T09:23:40.550745Z",
"url": "https://files.pythonhosted.org/packages/c9/e1/2830313d1722ee7d3d89cf7e407ac61526d2b692d609377648e2257c1ec5/augurs-0.4.0-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3a5cfb4a0851e465ee8a00b2cdf9927ca59a44d23d3e0f0651c1c6d92686fa0a",
"md5": "dbd50860709a345840be6cf78edae601",
"sha256": "14be1d295dd887d15d1a5936198799c229d7d86cbecb425663dd9bd0f28b1b8f"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "dbd50860709a345840be6cf78edae601",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.7",
"size": 575144,
"upload_time": "2024-10-16T09:23:54",
"upload_time_iso_8601": "2024-10-16T09:23:54.951228Z",
"url": "https://files.pythonhosted.org/packages/3a/5c/fb4a0851e465ee8a00b2cdf9927ca59a44d23d3e0f0651c1c6d92686fa0a/augurs-0.4.0-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3702b8186fac5675e66c896d3d4bb4ad426c8621bb1d1a65660648f199d8f133",
"md5": "c3cfe2c41cd85dce4a263c918ca00aa5",
"sha256": "65dcb71743238bf58a37b2832605b3ecd4d243caccbbf883ba08642f82d8ab46"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "c3cfe2c41cd85dce4a263c918ca00aa5",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.7",
"size": 592706,
"upload_time": "2024-10-16T09:24:07",
"upload_time_iso_8601": "2024-10-16T09:24:07.682659Z",
"url": "https://files.pythonhosted.org/packages/37/02/b8186fac5675e66c896d3d4bb4ad426c8621bb1d1a65660648f199d8f133/augurs-0.4.0-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d63f1227d205db0b990c236a2e8e3fd1f99756b17888af83dcc2c3b350a54232",
"md5": "a95ccf996a2652874a3343a9045cd66f",
"sha256": "1658c8022fa21e1d55437d343c3676c37ba115c05cc0ea801933ea26b6343c23"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp37-pypy37_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "a95ccf996a2652874a3343a9045cd66f",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.7",
"size": 675140,
"upload_time": "2024-10-16T09:24:53",
"upload_time_iso_8601": "2024-10-16T09:24:53.757069Z",
"url": "https://files.pythonhosted.org/packages/d6/3f/1227d205db0b990c236a2e8e3fd1f99756b17888af83dcc2c3b350a54232/augurs-0.4.0-pp37-pypy37_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c66a0331b467414ae764b3eeb23240ec5bdd45896a29ec60c425c3ffd369f98d",
"md5": "e13fa83907acca2f4616f8a1cab5b31b",
"sha256": "a80f3832c7ffaeaea298828ad4a8dea91c54835d1e9b1b4253e4fc562fc2faa8"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp37-pypy37_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "e13fa83907acca2f4616f8a1cab5b31b",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.7",
"size": 747884,
"upload_time": "2024-10-16T09:25:08",
"upload_time_iso_8601": "2024-10-16T09:25:08.936113Z",
"url": "https://files.pythonhosted.org/packages/c6/6a/0331b467414ae764b3eeb23240ec5bdd45896a29ec60c425c3ffd369f98d/augurs-0.4.0-pp37-pypy37_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0736b28312e1af0d1b7f76a00fdf230ac5d2646121895c80d40b541af19a0e28",
"md5": "de5e0ba6b27ca43c28e90e08bd4e6b14",
"sha256": "8fc3f17cd76c4cbe17d2963b154dba78b0daa7f65033719a74b01cccb5f316f6"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp37-pypy37_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "de5e0ba6b27ca43c28e90e08bd4e6b14",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.7",
"size": 689533,
"upload_time": "2024-10-16T09:25:23",
"upload_time_iso_8601": "2024-10-16T09:25:23.331557Z",
"url": "https://files.pythonhosted.org/packages/07/36/b28312e1af0d1b7f76a00fdf230ac5d2646121895c80d40b541af19a0e28/augurs-0.4.0-pp37-pypy37_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "258b96cfd516e5d06fc44159a1594c4cc78df1995c60765383e9f79c82d9c1fc",
"md5": "65abe5336344662bff9093c13ec03b38",
"sha256": "1899970abac94bd1be01d2db8132eb41d4e61b5c5e2b885a1b24ed3e2c638810"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp37-pypy37_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "65abe5336344662bff9093c13ec03b38",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.7",
"size": 674553,
"upload_time": "2024-10-16T09:25:39",
"upload_time_iso_8601": "2024-10-16T09:25:39.173082Z",
"url": "https://files.pythonhosted.org/packages/25/8b/96cfd516e5d06fc44159a1594c4cc78df1995c60765383e9f79c82d9c1fc/augurs-0.4.0-pp37-pypy37_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a301a70fd4e0a3ddce772f282d35e9501273806c53638d045e6d6d01626ae00b",
"md5": "dbe9645ca617a91922db7560637c032e",
"sha256": "7b5cd0e195af7eebfa4f90b4cc48cecf19ed3b60d0fa10d34eedfbc740b4ca5c"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "dbe9645ca617a91922db7560637c032e",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 500010,
"upload_time": "2024-10-16T09:23:27",
"upload_time_iso_8601": "2024-10-16T09:23:27.840211Z",
"url": "https://files.pythonhosted.org/packages/a3/01/a70fd4e0a3ddce772f282d35e9501273806c53638d045e6d6d01626ae00b/augurs-0.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cd109913c51ee4d30fffe25200fbda19f6a2dcb9a37957b7fbcdaf0b22fee57a",
"md5": "571900f8a7ff3e3ef81d1ac712e8fe94",
"sha256": "ae5a121bee4e1f539f6c7603a6ee49a0b925d4c4a080f36ef60ff8b825630386"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "571900f8a7ff3e3ef81d1ac712e8fe94",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 493380,
"upload_time": "2024-10-16T09:23:41",
"upload_time_iso_8601": "2024-10-16T09:23:41.834307Z",
"url": "https://files.pythonhosted.org/packages/cd/10/9913c51ee4d30fffe25200fbda19f6a2dcb9a37957b7fbcdaf0b22fee57a/augurs-0.4.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "93198c2dbc651500d8f01edcbeda005e3283e7bb3b4376fd1dd002badfc08b9e",
"md5": "e6f9f781bf4a715f162bd7a5615b0e30",
"sha256": "9647feefd600e281bef2be9cabcaa51bb51b3c4eb15bb3da7a60d4eecaf84eb4"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "e6f9f781bf4a715f162bd7a5615b0e30",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 573351,
"upload_time": "2024-10-16T09:23:56",
"upload_time_iso_8601": "2024-10-16T09:23:56.216858Z",
"url": "https://files.pythonhosted.org/packages/93/19/8c2dbc651500d8f01edcbeda005e3283e7bb3b4376fd1dd002badfc08b9e/augurs-0.4.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6f4d2ca708cd31dd35216cd0554207dd6fea76ca284a4170e212ba97a45d4b3d",
"md5": "187a777429e883b5e9aef05c1eeb0ed0",
"sha256": "97c9b9953747c71271359ed4f88a438672b92ba33ca72c5722e0a43b5e80771f"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "187a777429e883b5e9aef05c1eeb0ed0",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 590983,
"upload_time": "2024-10-16T09:24:09",
"upload_time_iso_8601": "2024-10-16T09:24:09.040772Z",
"url": "https://files.pythonhosted.org/packages/6f/4d/2ca708cd31dd35216cd0554207dd6fea76ca284a4170e212ba97a45d4b3d/augurs-0.4.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6c3a74b1c24cfe87e4b612c4fb1dc1f6da89bce3bd109dbf1e14e865f2abcf2a",
"md5": "55e7e013113ccb530c9bea3b98c486a6",
"sha256": "1d1e4fa978af9424c0f290c5603d70a0d34ca9964fa40a474aed97ef2f10f1a2"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "55e7e013113ccb530c9bea3b98c486a6",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 673532,
"upload_time": "2024-10-16T09:24:55",
"upload_time_iso_8601": "2024-10-16T09:24:55.602090Z",
"url": "https://files.pythonhosted.org/packages/6c/3a/74b1c24cfe87e4b612c4fb1dc1f6da89bce3bd109dbf1e14e865f2abcf2a/augurs-0.4.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6220d3549c593feab6b940309e06aa6cb1b82ea00b775dfa8219161b627c3327",
"md5": "5a04ec9d16fc87ffbd6e964204b65808",
"sha256": "7f57e95b06e167390391dfe761dbdc9fba3d47d6e94ecf5a535534f823b255e4"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "5a04ec9d16fc87ffbd6e964204b65808",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 746409,
"upload_time": "2024-10-16T09:25:10",
"upload_time_iso_8601": "2024-10-16T09:25:10.214481Z",
"url": "https://files.pythonhosted.org/packages/62/20/d3549c593feab6b940309e06aa6cb1b82ea00b775dfa8219161b627c3327/augurs-0.4.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "295ae955e65441fe2d44ac9d64d42dd85c74f83d8710de99251c7e7fa5b40a54",
"md5": "3c6941cd66626783921c90c7f55135c7",
"sha256": "86784d3cd3264005c9f3ecfecbd1212643a2b1662661fbe0650a429f3f5480b4"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "3c6941cd66626783921c90c7f55135c7",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 688033,
"upload_time": "2024-10-16T09:25:25",
"upload_time_iso_8601": "2024-10-16T09:25:25.298594Z",
"url": "https://files.pythonhosted.org/packages/29/5a/e955e65441fe2d44ac9d64d42dd85c74f83d8710de99251c7e7fa5b40a54/augurs-0.4.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f68b1ca44c3158a72680a2679fc8577d8630d3d5538776668de6eb55a3a6807c",
"md5": "e018f25787a70514842ee55b8b2c697b",
"sha256": "ffcac94f757bbe62bfc7bfc9e41ddd74006761f4201c48a359883872e08357a0"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "e018f25787a70514842ee55b8b2c697b",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 673111,
"upload_time": "2024-10-16T09:25:40",
"upload_time_iso_8601": "2024-10-16T09:25:40.608696Z",
"url": "https://files.pythonhosted.org/packages/f6/8b/1ca44c3158a72680a2679fc8577d8630d3d5538776668de6eb55a3a6807c/augurs-0.4.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e5ccaea6301002295d3d17de68a06e2b98f0caa2a0e652a8343b57acd3007f23",
"md5": "824df434a8465608c05bd6f7e8b640cd",
"sha256": "28504576fd75af012b0ac04fcdacc0f572f9a17b3d9e4167e52ead3634008afb"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "824df434a8465608c05bd6f7e8b640cd",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 500007,
"upload_time": "2024-10-16T09:23:29",
"upload_time_iso_8601": "2024-10-16T09:23:29.114824Z",
"url": "https://files.pythonhosted.org/packages/e5/cc/aea6301002295d3d17de68a06e2b98f0caa2a0e652a8343b57acd3007f23/augurs-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f6038d514f8ea9504d26939708969f8e1ef54f33d88b2424ba81e93f4ed89989",
"md5": "4a9f84e1d17e5a10b7ddd0ea83e36eef",
"sha256": "6fefe57f59cfc72c4d466572f8fe03634437c824f5603c932f097ac283a3b0b8"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "4a9f84e1d17e5a10b7ddd0ea83e36eef",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 493339,
"upload_time": "2024-10-16T09:23:43",
"upload_time_iso_8601": "2024-10-16T09:23:43.086111Z",
"url": "https://files.pythonhosted.org/packages/f6/03/8d514f8ea9504d26939708969f8e1ef54f33d88b2424ba81e93f4ed89989/augurs-0.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "609812e8612250e972cc8b14ec89101661675e985af86b121c0a9d5c9149f035",
"md5": "f6455e9b3396f12f9927c807dc38ef58",
"sha256": "af80aea89f1e0db3524ab6b30753da22cc494d42e72b2614a93ba4a4ea6c6253"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "f6455e9b3396f12f9927c807dc38ef58",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 573245,
"upload_time": "2024-10-16T09:23:57",
"upload_time_iso_8601": "2024-10-16T09:23:57.544417Z",
"url": "https://files.pythonhosted.org/packages/60/98/12e8612250e972cc8b14ec89101661675e985af86b121c0a9d5c9149f035/augurs-0.4.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5e2a30e60740c1a4d35bb92269a1027d21402892db8b77ce70fedb3925f280e2",
"md5": "0f3a32abf4166ef9cf97efce2aaf2315",
"sha256": "5693ada71ce7005e6a9f34cc86a2725b0e1918cbe5bfa4619f0a267d3006834f"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "0f3a32abf4166ef9cf97efce2aaf2315",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 590993,
"upload_time": "2024-10-16T09:24:10",
"upload_time_iso_8601": "2024-10-16T09:24:10.317513Z",
"url": "https://files.pythonhosted.org/packages/5e/2a/30e60740c1a4d35bb92269a1027d21402892db8b77ce70fedb3925f280e2/augurs-0.4.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "36521ca801901955c98a5794b9dc2d4bb6438741e6ae3ffc24a9c7728279b1a8",
"md5": "cf5b087cb3d54e988a82b54fca6abd8a",
"sha256": "f593669ba335a6faf7812f230dd73e60799875caecfc6db935bd6d71d3eb0303"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "cf5b087cb3d54e988a82b54fca6abd8a",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 506880,
"upload_time": "2024-10-16T09:24:33",
"upload_time_iso_8601": "2024-10-16T09:24:33.716077Z",
"url": "https://files.pythonhosted.org/packages/36/52/1ca801901955c98a5794b9dc2d4bb6438741e6ae3ffc24a9c7728279b1a8/augurs-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9025c3fdf9e7bc230abb7ceda0b71c5395848c1a72f49803dc2d63233745aadd",
"md5": "63fdd1907b11bb98beb06b8cf267173e",
"sha256": "4d98cef652fa6a484e8d9bd57b50c7fb07014baab3a27fd050e5730c5cef36dc"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "63fdd1907b11bb98beb06b8cf267173e",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 530851,
"upload_time": "2024-10-16T09:24:21",
"upload_time_iso_8601": "2024-10-16T09:24:21.997631Z",
"url": "https://files.pythonhosted.org/packages/90/25/c3fdf9e7bc230abb7ceda0b71c5395848c1a72f49803dc2d63233745aadd/augurs-0.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ba2de85d03ad226debd0bd70304376ff9510be172e6eee2e4e77bb3960dba6b7",
"md5": "6651070c7fcf5f95151cfe334c97a1d4",
"sha256": "0adf4808209bcf63788fa43115afe60d2affc388030349f658786693ded5da9b"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "6651070c7fcf5f95151cfe334c97a1d4",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 673470,
"upload_time": "2024-10-16T09:24:57",
"upload_time_iso_8601": "2024-10-16T09:24:57.283609Z",
"url": "https://files.pythonhosted.org/packages/ba/2d/e85d03ad226debd0bd70304376ff9510be172e6eee2e4e77bb3960dba6b7/augurs-0.4.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4a67e09f829b8336ed80a071762d87feff662659a9f15b90af05ed508f7093e6",
"md5": "36f4f103c440b58b3d40ad97fcf6c78e",
"sha256": "3e1771f92e67dbd78d948765668ea985b5bae65843ba5f7585930d73d0fe061c"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "36f4f103c440b58b3d40ad97fcf6c78e",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 746251,
"upload_time": "2024-10-16T09:25:11",
"upload_time_iso_8601": "2024-10-16T09:25:11.861909Z",
"url": "https://files.pythonhosted.org/packages/4a/67/e09f829b8336ed80a071762d87feff662659a9f15b90af05ed508f7093e6/augurs-0.4.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c84ab204f2978bfe8026610d6557a7476b147d491ca3cdfe8c2025d13eeecd66",
"md5": "5f49c565f7c433983b9569289524aa35",
"sha256": "ad2310eaece12054c9f768ffa708bd679d71e66a9a6699cfed78229d11b00b14"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "5f49c565f7c433983b9569289524aa35",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 688023,
"upload_time": "2024-10-16T09:25:27",
"upload_time_iso_8601": "2024-10-16T09:25:27.236666Z",
"url": "https://files.pythonhosted.org/packages/c8/4a/b204f2978bfe8026610d6557a7476b147d491ca3cdfe8c2025d13eeecd66/augurs-0.4.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fd074de706e44a6f81b839034b42100ec92a8b8f072c9a2ff1475021dbe32354",
"md5": "665e87b5378b292d9a09bd6d2c1a3e78",
"sha256": "24fc9f374e9769852e11ac85fded563c71b7cd19550a2af38897054ab0e0b589"
},
"downloads": -1,
"filename": "augurs-0.4.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "665e87b5378b292d9a09bd6d2c1a3e78",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 673187,
"upload_time": "2024-10-16T09:25:42",
"upload_time_iso_8601": "2024-10-16T09:25:42.045273Z",
"url": "https://files.pythonhosted.org/packages/fd/07/4de706e44a6f81b839034b42100ec92a8b8f072c9a2ff1475021dbe32354/augurs-0.4.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6174b174205a5c86b93cecc118dbc23d15e7603fa5f481fb5ad0f0d19463b4a3",
"md5": "be09f037fe0f4cda777f19858734e0c9",
"sha256": "fc86a74950c55372f98e07825a48715133fd8b97f9846cd5a7bba6525946acf1"
},
"downloads": -1,
"filename": "augurs-0.4.0.tar.gz",
"has_sig": false,
"md5_digest": "be09f037fe0f4cda777f19858734e0c9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 2143213,
"upload_time": "2024-10-16T09:25:43",
"upload_time_iso_8601": "2024-10-16T09:25:43.729155Z",
"url": "https://files.pythonhosted.org/packages/61/74/b174205a5c86b93cecc118dbc23d15e7603fa5f481fb5ad0f0d19463b4a3/augurs-0.4.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-16 09:25:43",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "grafana",
"github_project": "augurs",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "augurs"
}