automap


Nameautomap JSON
Version 0.6.2 PyPI version JSON
download
home_pagehttps://github.com/brandtbucher/automap
SummaryHigh-performance autoincremented integer-valued mappings.
upload_time2022-11-15 17:41:51
maintainer
docs_urlNone
authorBrandt Bucher
requires_python>=3.7.0
licenseMIT
keywords
VCS
bugtrack_url
requirements black hypothesis invoke pytest tzdata
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <div align=justify>

<div align=center>

automap
=======

[![latest version](https://img.shields.io/github/release-pre/brandtbucher/automap.svg?style=for-the-badge&label=latest)![latest release date](https://img.shields.io/github/release-date-pre/brandtbucher/automap.svg?style=for-the-badge&label=released)](https://github.com/brandtbucher/automap/releases)[![build status](https://img.shields.io/github/workflow/status/brandtbucher/automap/CI/master.svg?style=for-the-badge)](https://github.com/brandtbucher/automap/actions)[![issues](https://img.shields.io/github/issues-raw/brandtbucher/automap.svg?label=issues&style=for-the-badge)](https://github.com/brandtbucher/automap/issues)

<br>

</div>

`automap` is a Python package containing high-performance autoincremented
integer-valued mappings.

To install, just run `pip install automap`.

Examples
--------

`automap` objects are sort of like "inverse sequences". They come in two
variants:

### FrozenAutoMap

```py
>>> from automap import FrozenAutoMap
```

`FrozenAutoMap` objects are immutable. They can be constructed from any iterable
of hashable, unique keys.


```py
>>> a = FrozenAutoMap("AAA")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: 'A'
>>> a = FrozenAutoMap("ABC")
>>> a
automap.FrozenAutoMap(['A', 'B', 'C'])
```

The values are integers, incrementing according to the order of the original
keys:

```py
>>> a["A"]
0
>>> a["C"]
2
>>> a["X"]
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
KeyError: 'X'
```

The full `Mapping` interface is provided:

```py
>>> [*a.keys()]
['A', 'B', 'C']
>>> [*a.values()]
[0, 1, 2]
>>> [*a.items()]
[('A', 0), ('B', 1), ('C', 2)]
>>> a.get("X", 42)
42
>>> "B" in a
True
>>> [*a]
['A', 'B', 'C']
```

They may also be combined with each other using the `|` operator:

```py
>>> b = FrozenAutoMap(range(5))
>>> c = FrozenAutoMap(range(5, 10))
>>> b | c
automap.FrozenAutoMap([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
>>> b |= c  # Note that b is reassigned, not mutated!
>>> b
automap.FrozenAutoMap([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
```

### AutoMap

```py
>>> from automap import AutoMap
```

Unlike `FrozenAutoMap` objects, `AutoMap` objects can grow; new keys may be
added, but existing ones may not be deleted or changed.

```py
>>> d = AutoMap("ABC")
>>> d
automap.AutoMap(['A', 'B', 'C'])
>>> d |= "DEF"  # Here, d *is* mutated!
>>> d
automap.AutoMap(['A', 'B', 'C', 'D', 'E', 'F'])
```

They also have `add` and `update` methods for adding new keys:

```py
>>> e = AutoMap(["I", "II", "III"])
>>> e.add("IV")
>>> e
automap.AutoMap(['I', 'II', 'III', 'IV'])
>>> e.update(["V", "VI", "VII"])
>>> e
automap.AutoMap(['I', 'II', 'III', 'IV', 'V', 'VI', 'VII'])
```

Performance
-----------

Tests show string-keyed `AutoMap` objects being created 70% faster and accessed
5% faster than the equivalent `dict` construction, on average. They also tend to
take up the same amount of memory. You can run `invoke performance` from this
repository to see the comparison on your machine.

More details on the design can be found in `automap.c`.

</div>

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/brandtbucher/automap",
    "name": "automap",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7.0",
    "maintainer_email": "",
    "keywords": "",
    "author": "Brandt Bucher",
    "author_email": "brandt@python.org",
    "download_url": "https://files.pythonhosted.org/packages/ad/d8/98ea5caf8fbcfb59cd41aa2047b6c90a0d4a81c19e17044b0417c25d4114/automap-0.6.2.tar.gz",
    "platform": null,
    "description": "<div align=justify>\n\n<div align=center>\n\nautomap\n=======\n\n[![latest version](https://img.shields.io/github/release-pre/brandtbucher/automap.svg?style=for-the-badge&label=latest)![latest release date](https://img.shields.io/github/release-date-pre/brandtbucher/automap.svg?style=for-the-badge&label=released)](https://github.com/brandtbucher/automap/releases)[![build status](https://img.shields.io/github/workflow/status/brandtbucher/automap/CI/master.svg?style=for-the-badge)](https://github.com/brandtbucher/automap/actions)[![issues](https://img.shields.io/github/issues-raw/brandtbucher/automap.svg?label=issues&style=for-the-badge)](https://github.com/brandtbucher/automap/issues)\n\n<br>\n\n</div>\n\n`automap` is a Python package containing high-performance autoincremented\ninteger-valued mappings.\n\nTo install, just run `pip install automap`.\n\nExamples\n--------\n\n`automap` objects are sort of like \"inverse sequences\". They come in two\nvariants:\n\n### FrozenAutoMap\n\n```py\n>>> from automap import FrozenAutoMap\n```\n\n`FrozenAutoMap` objects are immutable. They can be constructed from any iterable\nof hashable, unique keys.\n\n\n```py\n>>> a = FrozenAutoMap(\"AAA\")\nTraceback (most recent call last):\n  File \"<stdin>\", line 1, in <module>\nValueError: 'A'\n>>> a = FrozenAutoMap(\"ABC\")\n>>> a\nautomap.FrozenAutoMap(['A', 'B', 'C'])\n```\n\nThe values are integers, incrementing according to the order of the original\nkeys:\n\n```py\n>>> a[\"A\"]\n0\n>>> a[\"C\"]\n2\n>>> a[\"X\"]\nTraceback (most recent call last):\n  File \"<stdin>\", line 1, in <module>\nKeyError: 'X'\n```\n\nThe full `Mapping` interface is provided:\n\n```py\n>>> [*a.keys()]\n['A', 'B', 'C']\n>>> [*a.values()]\n[0, 1, 2]\n>>> [*a.items()]\n[('A', 0), ('B', 1), ('C', 2)]\n>>> a.get(\"X\", 42)\n42\n>>> \"B\" in a\nTrue\n>>> [*a]\n['A', 'B', 'C']\n```\n\nThey may also be combined with each other using the `|` operator:\n\n```py\n>>> b = FrozenAutoMap(range(5))\n>>> c = FrozenAutoMap(range(5, 10))\n>>> b | c\nautomap.FrozenAutoMap([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])\n>>> b |= c  # Note that b is reassigned, not mutated!\n>>> b\nautomap.FrozenAutoMap([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])\n```\n\n### AutoMap\n\n```py\n>>> from automap import AutoMap\n```\n\nUnlike `FrozenAutoMap` objects, `AutoMap` objects can grow; new keys may be\nadded, but existing ones may not be deleted or changed.\n\n```py\n>>> d = AutoMap(\"ABC\")\n>>> d\nautomap.AutoMap(['A', 'B', 'C'])\n>>> d |= \"DEF\"  # Here, d *is* mutated!\n>>> d\nautomap.AutoMap(['A', 'B', 'C', 'D', 'E', 'F'])\n```\n\nThey also have `add` and `update` methods for adding new keys:\n\n```py\n>>> e = AutoMap([\"I\", \"II\", \"III\"])\n>>> e.add(\"IV\")\n>>> e\nautomap.AutoMap(['I', 'II', 'III', 'IV'])\n>>> e.update([\"V\", \"VI\", \"VII\"])\n>>> e\nautomap.AutoMap(['I', 'II', 'III', 'IV', 'V', 'VI', 'VII'])\n```\n\nPerformance\n-----------\n\nTests show string-keyed `AutoMap` objects being created 70% faster and accessed\n5% faster than the equivalent `dict` construction, on average. They also tend to\ntake up the same amount of memory. You can run `invoke performance` from this\nrepository to see the comparison on your machine.\n\nMore details on the design can be found in `automap.c`.\n\n</div>\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "High-performance autoincremented integer-valued mappings.",
    "version": "0.6.2",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "35d6d52c865bfcd169940a2596c1666a",
                "sha256": "b19bdfb1754f2b0cdd9c88193ca240408d4520210c0e9322a67d2fbfd8194ba8"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "35d6d52c865bfcd169940a2596c1666a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7.0",
            "size": 19668,
            "upload_time": "2022-11-15T17:40:55",
            "upload_time_iso_8601": "2022-11-15T17:40:55.677856Z",
            "url": "https://files.pythonhosted.org/packages/84/87/de93c2e2d788ba048ae8a8406e0ba3fcc58e21cf716d91c6a13cb1602757/automap-0.6.2-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "69ca3ecb4e729c055301404b5ab6d855",
                "sha256": "2601a48af24963e32a4f360a4bc64b947f9b34e195a1090935819a9c98f54e12"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "69ca3ecb4e729c055301404b5ab6d855",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7.0",
            "size": 11466,
            "upload_time": "2022-11-15T17:40:57",
            "upload_time_iso_8601": "2022-11-15T17:40:57.147561Z",
            "url": "https://files.pythonhosted.org/packages/75/e1/b24534cdb31de14266333246a595db8b3094899c21d28c09c7255f3a23c5/automap-0.6.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "518778ab27e7e07bcc1dd73af77a8bc7",
                "sha256": "9440a45d8bfb124c47cec7d2966fe21a9be72e210daaf2981dba088cb79f0695"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "518778ab27e7e07bcc1dd73af77a8bc7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7.0",
            "size": 11536,
            "upload_time": "2022-11-15T17:40:58",
            "upload_time_iso_8601": "2022-11-15T17:40:58.304755Z",
            "url": "https://files.pythonhosted.org/packages/de/4a/a42be4eeb5b15050a4589efcc41b36549723d727e583304357fcf3bc2b43/automap-0.6.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "e04dbd29808dba491d96b37fb83bc85b",
                "sha256": "f2bddcf9630724a1a02ea473b5a716b5b2669cc82b4c74158f024ca0e4874aab"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e04dbd29808dba491d96b37fb83bc85b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7.0",
            "size": 35021,
            "upload_time": "2022-11-15T17:40:59",
            "upload_time_iso_8601": "2022-11-15T17:40:59.389275Z",
            "url": "https://files.pythonhosted.org/packages/89/83/6375ca3840529fff7feff5152a6121ff869702483224ac446b77e8cc6fd1/automap-0.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "7fe4319d309a949ffd9372dc3bf35992",
                "sha256": "d44d10678d5d98e72a6ec106643f2d6cf882045320c181207f0ed9f5554dc9ac"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7fe4319d309a949ffd9372dc3bf35992",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7.0",
            "size": 32849,
            "upload_time": "2022-11-15T17:41:01",
            "upload_time_iso_8601": "2022-11-15T17:41:01.119193Z",
            "url": "https://files.pythonhosted.org/packages/bd/0f/3f8251020e957ca3fabf35272e2eca6c89bff51fb7d6b8bf47e97dcaf41b/automap-0.6.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "288b09c653dfb4ae9912ea41ad60b48f",
                "sha256": "31bff8a3a57dd5a451f67610e19c53a8e45fd68fcd93bad86e7db19d84ae24a7"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "288b09c653dfb4ae9912ea41ad60b48f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7.0",
            "size": 36859,
            "upload_time": "2022-11-15T17:41:02",
            "upload_time_iso_8601": "2022-11-15T17:41:02.461723Z",
            "url": "https://files.pythonhosted.org/packages/e3/a6/23abfef02b23e914fed7bebb68d0f29168874a6f42c21b3fdc17f3e41df6/automap-0.6.2-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "d27b81f3578374609e0c8c6627b09e09",
                "sha256": "bd125e547124c6b4018eea81e8cb00dac42053affcd6696b15707df938498c59"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d27b81f3578374609e0c8c6627b09e09",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7.0",
            "size": 38957,
            "upload_time": "2022-11-15T17:41:03",
            "upload_time_iso_8601": "2022-11-15T17:41:03.896441Z",
            "url": "https://files.pythonhosted.org/packages/6a/98/1e0f784fbffe432505804bb22774ba99cc69b53413ad1cfe2e9346a4c7dd/automap-0.6.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "39658ad7287158e1cb35b38b2d49ae99",
                "sha256": "31b649c0da2e119899ef6e773318004f4a41304dd2199dc8ecdb1d02a7c0fea0"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "39658ad7287158e1cb35b38b2d49ae99",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7.0",
            "size": 11405,
            "upload_time": "2022-11-15T17:41:05",
            "upload_time_iso_8601": "2022-11-15T17:41:05.252153Z",
            "url": "https://files.pythonhosted.org/packages/44/ca/aacecb44fb3273cc44215799bce25783bc7d22a580cd124d70df992ec32e/automap-0.6.2-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "a22df44fd090f810f2c89c2771135ab4",
                "sha256": "d87903446b07d45f9be351d455038fa34d7e4208595ec4600cdaee5350dc67db"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a22df44fd090f810f2c89c2771135ab4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7.0",
            "size": 12435,
            "upload_time": "2022-11-15T17:41:07",
            "upload_time_iso_8601": "2022-11-15T17:41:07.277444Z",
            "url": "https://files.pythonhosted.org/packages/e3/e5/edb65547af6aae6ff2d159fe9b17f6e64898f4fe0db0f6fcd341a6563b3f/automap-0.6.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "799d6217ce17a474db166c73c64d2874",
                "sha256": "ca4eb085a162da14e17b821e923dfbda39331acce6bf255d20a4b62f190787cd"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "799d6217ce17a474db166c73c64d2874",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7.0",
            "size": 19674,
            "upload_time": "2022-11-15T17:41:08",
            "upload_time_iso_8601": "2022-11-15T17:41:08.323254Z",
            "url": "https://files.pythonhosted.org/packages/b1/ea/30e6063535a989e4632c960efffa3e378a0befea8ae2f29361aab3e3a876/automap-0.6.2-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "48feabb57c5d414f9472ebba9d8e809a",
                "sha256": "9ac724f1f22b42821956e7a15ba383feceb7940d5ba6afdaa70e2fe5ebc4a583"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "48feabb57c5d414f9472ebba9d8e809a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7.0",
            "size": 11478,
            "upload_time": "2022-11-15T17:41:09",
            "upload_time_iso_8601": "2022-11-15T17:41:09.322143Z",
            "url": "https://files.pythonhosted.org/packages/1d/17/e036a781527c9cdef8f025dfe16603f25116d63c5fface004b159ba5809c/automap-0.6.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "464ef797c0068e147535bcdc6c4018bd",
                "sha256": "2f7794e447ca6eead7a7c2c908b8373a206ffc9741149aa65221e3d1ee319891"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "464ef797c0068e147535bcdc6c4018bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7.0",
            "size": 11539,
            "upload_time": "2022-11-15T17:41:10",
            "upload_time_iso_8601": "2022-11-15T17:41:10.571680Z",
            "url": "https://files.pythonhosted.org/packages/db/42/feb848acff64e4a4bfa9ebd43e461e96c0221e5b8507f35c8430bb9fdaf1/automap-0.6.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "3dd3f7c8c6cb5eae055fc8db48f4276b",
                "sha256": "53c5095a87f4aad2cdd8fe3468332d8225eb01c8638f82c8b9a3053cf804d899"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3dd3f7c8c6cb5eae055fc8db48f4276b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7.0",
            "size": 37328,
            "upload_time": "2022-11-15T17:41:11",
            "upload_time_iso_8601": "2022-11-15T17:41:11.926733Z",
            "url": "https://files.pythonhosted.org/packages/91/61/ffc3ba39519d3a8741f7603b5573f6a039e21a354353dc4a4f97166cf00d/automap-0.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "2cd25378dd1b5d56272b7912f456d3d2",
                "sha256": "60f263649c14d2e4042dccddaf2b1cd8a9b408237b30353de46259c8e9acca1f"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2cd25378dd1b5d56272b7912f456d3d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7.0",
            "size": 34953,
            "upload_time": "2022-11-15T17:41:13",
            "upload_time_iso_8601": "2022-11-15T17:41:13.413664Z",
            "url": "https://files.pythonhosted.org/packages/59/4d/b5cf7514b79b8fa6b5f2e5d4f84df47b096e8431e53917e25a3045781227/automap-0.6.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "6cc82bfd43adaaedbfa968e90681da09",
                "sha256": "7fe683045c21e4aa581a034381f74d4e21040c32052c4cefa633444eb300ef66"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "6cc82bfd43adaaedbfa968e90681da09",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7.0",
            "size": 39567,
            "upload_time": "2022-11-15T17:41:14",
            "upload_time_iso_8601": "2022-11-15T17:41:14.497568Z",
            "url": "https://files.pythonhosted.org/packages/7a/32/fee473dfd407afc31281a7871e721ac4010968c2f0729ac93b8ded17f612/automap-0.6.2-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "b4fe6e5c123cc2a785447f2588aa89c2",
                "sha256": "1055d21f7abbd1390a8e27f81e44cb5966af83f9301cfc3b117351ecf05c6a91"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b4fe6e5c123cc2a785447f2588aa89c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7.0",
            "size": 41912,
            "upload_time": "2022-11-15T17:41:15",
            "upload_time_iso_8601": "2022-11-15T17:41:15.550330Z",
            "url": "https://files.pythonhosted.org/packages/2c/d1/5f5d594d0e7d6e8fdf4d29d4758b2c531022b05c5fd24bcb1a962de97b9d/automap-0.6.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "09b247e2679ab7454f6707479eb4c015",
                "sha256": "d39ce60e82beb3b15db0087ab162ea24583144208f02bfc76ff209c3fcf799a4"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "09b247e2679ab7454f6707479eb4c015",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7.0",
            "size": 11409,
            "upload_time": "2022-11-15T17:41:16",
            "upload_time_iso_8601": "2022-11-15T17:41:16.678163Z",
            "url": "https://files.pythonhosted.org/packages/15/03/25a467d77aec4694d0a61d65157194941bb6d67527c20c05a8d37bc50af5/automap-0.6.2-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "01e9bc1679c2cb2af869c57ceedc57ba",
                "sha256": "f592cc87ca655536440201f5641df805bf8cfab950a07ed34a3b9b13cc5b4c00"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "01e9bc1679c2cb2af869c57ceedc57ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7.0",
            "size": 12434,
            "upload_time": "2022-11-15T17:41:18",
            "upload_time_iso_8601": "2022-11-15T17:41:18.062717Z",
            "url": "https://files.pythonhosted.org/packages/e3/6c/62a414c5fc7d83cea5606698fc7584d1d8973b788a6da4b912814cd96dac/automap-0.6.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "f64be464657d6bbfa8f90a7be6db00fe",
                "sha256": "3aa17c7dde4101414b3c60e7570071f250f4a3cc5148a170a0a31912d63a0469"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f64be464657d6bbfa8f90a7be6db00fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7.0",
            "size": 11102,
            "upload_time": "2022-11-15T17:41:19",
            "upload_time_iso_8601": "2022-11-15T17:41:19.895728Z",
            "url": "https://files.pythonhosted.org/packages/98/fe/a9b289349931b4e8b9c4ca0ac9243304c9c25f624d8baeb42b259a0024ba/automap-0.6.2-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "b64157205a8af030cce8369b200f52f0",
                "sha256": "08e8fd712b7eee9a334d8beec5cea28710e020b38c3bd0ab6ab3cbf1bda4ef85"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b64157205a8af030cce8369b200f52f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7.0",
            "size": 32237,
            "upload_time": "2022-11-15T17:41:20",
            "upload_time_iso_8601": "2022-11-15T17:41:20.957017Z",
            "url": "https://files.pythonhosted.org/packages/58/a6/635aa25881452f8bd7624e414b03c7dfe9dfd27a4655f7689783db1f511b/automap-0.6.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "4d2f2aeafc77b136090994eceb87ddd7",
                "sha256": "4a59e0837dfada5b61226b3744590e8f3ee3887cf7f92c8ae5458951b5c8e46b"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4d2f2aeafc77b136090994eceb87ddd7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7.0",
            "size": 30521,
            "upload_time": "2022-11-15T17:41:22",
            "upload_time_iso_8601": "2022-11-15T17:41:22.433286Z",
            "url": "https://files.pythonhosted.org/packages/57/51/f9416e2d8a332635fd34447843e430b4cd4f1be5a28cb47eefaa15316c08/automap-0.6.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "4208d100212406e29ab89b427895fa4f",
                "sha256": "237570ef6a58311942165b8c75f396310487264231a576f56d17f64fdd4321e8"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "4208d100212406e29ab89b427895fa4f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7.0",
            "size": 35675,
            "upload_time": "2022-11-15T17:41:23",
            "upload_time_iso_8601": "2022-11-15T17:41:23.477135Z",
            "url": "https://files.pythonhosted.org/packages/62/0d/5a9882422b108715ad4fa02134dc643c97daaac987fd5dcb4c4f61c6a637/automap-0.6.2-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "93fa8f572566c84e2cfac3db7ed67479",
                "sha256": "5d3417c9df5bb1b73e03cc7ccba84484b2f446fc6fa2cbf69617c940928f2bbb"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "93fa8f572566c84e2cfac3db7ed67479",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7.0",
            "size": 37362,
            "upload_time": "2022-11-15T17:41:24",
            "upload_time_iso_8601": "2022-11-15T17:41:24.545813Z",
            "url": "https://files.pythonhosted.org/packages/ac/44/8bffde6809b9f29fc9760707699fe18b5a5694a06ffb444a1fbbbdbbed34/automap-0.6.2-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "91f40b85e534e8217c2c3e4b05a42d45",
                "sha256": "50cce33d38d4e08b281c6ca5112cf4a2de59eb3aa13c46cf6ddb42527cf35d24"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "91f40b85e534e8217c2c3e4b05a42d45",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7.0",
            "size": 11366,
            "upload_time": "2022-11-15T17:41:25",
            "upload_time_iso_8601": "2022-11-15T17:41:25.667606Z",
            "url": "https://files.pythonhosted.org/packages/81/da/1e2208004101653d4399ff1591ab12852e3644257f978a5a1916f3eec1dc/automap-0.6.2-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "c1d25e2a99c1cfa35151bf4244f5ee3d",
                "sha256": "79f8f56cd129bdb5f7a7e479cecdb9783f3b29ab7661c6f6323e46e1a60f03e2"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c1d25e2a99c1cfa35151bf4244f5ee3d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7.0",
            "size": 12390,
            "upload_time": "2022-11-15T17:41:27",
            "upload_time_iso_8601": "2022-11-15T17:41:27.131605Z",
            "url": "https://files.pythonhosted.org/packages/66/57/2e2d846c6dd7e79fb71a4611899827b1f23fe94d445b72cd44d4b5781865/automap-0.6.2-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "d0e72db02d0c8088d8b06c4326132126",
                "sha256": "9eec107c178089d25435eb43f7f96d4a5e710a60e7d3f620f809eac849df45a7"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "d0e72db02d0c8088d8b06c4326132126",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7.0",
            "size": 19224,
            "upload_time": "2022-11-15T17:41:28",
            "upload_time_iso_8601": "2022-11-15T17:41:28.192896Z",
            "url": "https://files.pythonhosted.org/packages/3c/62/ddb1383c6b0c2ad60f6a7fe741167a72c1de800375de1b4c75c725c12867/automap-0.6.2-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "94c4344c43d7048677e6bf8a6e6412fe",
                "sha256": "44f620209ad440db49935fac3c710ea3d5faff0386948736d693c04d131a2d8e"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "94c4344c43d7048677e6bf8a6e6412fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7.0",
            "size": 11214,
            "upload_time": "2022-11-15T17:41:29",
            "upload_time_iso_8601": "2022-11-15T17:41:29.890539Z",
            "url": "https://files.pythonhosted.org/packages/89/ac/14346cb97d06f31ff36a1ccf5710dd2449606107a0313b53fb5e32bbcb7a/automap-0.6.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "c7ad46c294ce64d51de9486459c284e7",
                "sha256": "3ac476d214aea2025e04e23d246cc68ea4a69a34502cdd7019181373b7b58f05"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c7ad46c294ce64d51de9486459c284e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7.0",
            "size": 11337,
            "upload_time": "2022-11-15T17:41:31",
            "upload_time_iso_8601": "2022-11-15T17:41:31.201466Z",
            "url": "https://files.pythonhosted.org/packages/17/9b/362e24c30d4bf416fda4a6d1328f1fdecbccbdf46b0facdf2130e151f238/automap-0.6.2-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "a35fe2f5ccbd1336317d9d33a0554907",
                "sha256": "290eb501fd16ff9f2ee75ff6fb2e2cbe11dd77345681aab4faba0408d0d77471"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a35fe2f5ccbd1336317d9d33a0554907",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7.0",
            "size": 35780,
            "upload_time": "2022-11-15T17:41:33",
            "upload_time_iso_8601": "2022-11-15T17:41:33.072223Z",
            "url": "https://files.pythonhosted.org/packages/c5/1d/710c8dabf6db8d103bb9449bfa754c62b78f735fe0842f404341fe96501a/automap-0.6.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "b702a640ef72b86b6c8d29d677021ecb",
                "sha256": "66801b53059924161cff7b87261aef5eb43c1494a4152b318dd4a381e48e72b6"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b702a640ef72b86b6c8d29d677021ecb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7.0",
            "size": 33447,
            "upload_time": "2022-11-15T17:41:34",
            "upload_time_iso_8601": "2022-11-15T17:41:34.313562Z",
            "url": "https://files.pythonhosted.org/packages/15/74/57b43567b91789c7d8d098cacdbd25025bf39520f36233b253fccbb41947/automap-0.6.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "62a0be1eeef027917759ce8ac9d19294",
                "sha256": "599636b732af5f70ee1322f56b15d7e1f67dc633fadffc6f3bbff5a39eb5883f"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "62a0be1eeef027917759ce8ac9d19294",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7.0",
            "size": 37313,
            "upload_time": "2022-11-15T17:41:35",
            "upload_time_iso_8601": "2022-11-15T17:41:35.446425Z",
            "url": "https://files.pythonhosted.org/packages/cc/2f/cc6aa1755fbf31e53d3ba108b9267d9e7d98e1c00f2240072aa432d9be37/automap-0.6.2-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "5f4cc6f98d166b9316fdf9df08f10875",
                "sha256": "cb831c419ebdbc354ec8eb38e97835b0c688d3872193274d31ce9e468a288bd2"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5f4cc6f98d166b9316fdf9df08f10875",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7.0",
            "size": 39576,
            "upload_time": "2022-11-15T17:41:36",
            "upload_time_iso_8601": "2022-11-15T17:41:36.564395Z",
            "url": "https://files.pythonhosted.org/packages/a8/5e/59dc9ac9c9d6b70ddbaca4c8bc93a456c75688a33b3f3626ac205a574fb8/automap-0.6.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "dc1f320653c39de0d2b2b7ee9d6dfaad",
                "sha256": "02a2864f01a2eb9e4abed0ce33ddbd0c3cf2d402daa853e2880fb3e37f7ee9e6"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "dc1f320653c39de0d2b2b7ee9d6dfaad",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7.0",
            "size": 11458,
            "upload_time": "2022-11-15T17:41:37",
            "upload_time_iso_8601": "2022-11-15T17:41:37.540473Z",
            "url": "https://files.pythonhosted.org/packages/ff/87/6212e293f8d6aafc163b03ed93a12149b88d37c6fcb5c89295ba3440ad74/automap-0.6.2-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "2a523c63618c4a1ff28af3ddc2f6a216",
                "sha256": "378371fd44c4d3e2b00b2e1cb76788c9844cd1fc6bfde89c9de48507bc05aa89"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2a523c63618c4a1ff28af3ddc2f6a216",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7.0",
            "size": 12504,
            "upload_time": "2022-11-15T17:41:38",
            "upload_time_iso_8601": "2022-11-15T17:41:38.569559Z",
            "url": "https://files.pythonhosted.org/packages/91/7f/a93bfc65d6d7e3725f894017e61397334b3ba4e15ae176a87b43cb94868c/automap-0.6.2-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "781cd743b0b39b094a6f3e919736b79c",
                "sha256": "b37704cbcccf663fb75a74c75b787395159205266f2f6bc7b24e7c734c226754"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "781cd743b0b39b094a6f3e919736b79c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7.0",
            "size": 19659,
            "upload_time": "2022-11-15T17:41:39",
            "upload_time_iso_8601": "2022-11-15T17:41:39.684098Z",
            "url": "https://files.pythonhosted.org/packages/3e/08/b9752bd094ba1e9295c0f161e1d8fbcdd9e75122ccd59912f10dd046e27d/automap-0.6.2-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "a95f0456d5e1a5a5b77f6c906179a718",
                "sha256": "86e5c1c496e1c1d9eaf18732803675c718156e31b001bd839fe4f4f7e2818625"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a95f0456d5e1a5a5b77f6c906179a718",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7.0",
            "size": 11464,
            "upload_time": "2022-11-15T17:41:41",
            "upload_time_iso_8601": "2022-11-15T17:41:41.063208Z",
            "url": "https://files.pythonhosted.org/packages/95/a2/94b4752839454874ce2a928b5df4ca6c1e37cb263ff62a3adf3ab6367611/automap-0.6.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "0acc91fce52580407c3099c744afa2f3",
                "sha256": "c94786682d3dcd6ffbf11c9562adf657d506cc331a84b6bc93ca97666528fb4f"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0acc91fce52580407c3099c744afa2f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7.0",
            "size": 11528,
            "upload_time": "2022-11-15T17:41:42",
            "upload_time_iso_8601": "2022-11-15T17:41:42.499280Z",
            "url": "https://files.pythonhosted.org/packages/ec/fc/676dbdb03281c7ef4973117a244d9c8c2773641869f8ee0d5a45f5dc3bd9/automap-0.6.2-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "ac43354ba56ace434c769191d3470cb4",
                "sha256": "30164aeb490c1925a1480ed5e32dc110f368278687e58a53bcafb88784777821"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ac43354ba56ace434c769191d3470cb4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7.0",
            "size": 34257,
            "upload_time": "2022-11-15T17:41:43",
            "upload_time_iso_8601": "2022-11-15T17:41:43.630993Z",
            "url": "https://files.pythonhosted.org/packages/0c/cc/485c5663bab1db6fce4eeb4a82fec54bfd23d2ef1b6a52302c7c840202a6/automap-0.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "58b4e8aa275beaf2cd2a7393239797c2",
                "sha256": "d4106701551a69fbbb7719002e09eab71ba6740c18faa90bad337cd1db491ce5"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "58b4e8aa275beaf2cd2a7393239797c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7.0",
            "size": 32235,
            "upload_time": "2022-11-15T17:41:44",
            "upload_time_iso_8601": "2022-11-15T17:41:44.809571Z",
            "url": "https://files.pythonhosted.org/packages/87/93/d75e1e1d2da2a331db3576d52e3089573317298ab5e62c61dad8751a4a0a/automap-0.6.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "eaa19497a1865c2f2656830c01739293",
                "sha256": "1c0cadc09b2023d112d0be4142060ae19f2eea437e617caa627e3fae5f5a95eb"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "eaa19497a1865c2f2656830c01739293",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7.0",
            "size": 36130,
            "upload_time": "2022-11-15T17:41:46",
            "upload_time_iso_8601": "2022-11-15T17:41:46.361177Z",
            "url": "https://files.pythonhosted.org/packages/a3/d7/4a3b5bdb82d9c5c6831979b56e62f00a8e2c85684b1e01a5ebf043aaa30d/automap-0.6.2-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "148fddd218eb8356da6178cc801340a9",
                "sha256": "a3eb024bec77b50237e8089e94075da343ab7623ac8a5d51a639f23f201defaa"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "148fddd218eb8356da6178cc801340a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7.0",
            "size": 38119,
            "upload_time": "2022-11-15T17:41:48",
            "upload_time_iso_8601": "2022-11-15T17:41:48.087591Z",
            "url": "https://files.pythonhosted.org/packages/4a/f7/875342ee41ff5f418b9942125ba679db9bc6aae1d9f0a7e57b57a1b27341/automap-0.6.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "fea77ae5f5fdd5255176d42ee5c13eab",
                "sha256": "42afc6114d8688ba030a4046dd499fe96fb5cb5ef5f3e65c9dbd483578b6c196"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "fea77ae5f5fdd5255176d42ee5c13eab",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7.0",
            "size": 11431,
            "upload_time": "2022-11-15T17:41:49",
            "upload_time_iso_8601": "2022-11-15T17:41:49.109099Z",
            "url": "https://files.pythonhosted.org/packages/10/e0/ec240766ce5628e5a5543d685f4703fbe040bc688e2f1d5f8e36634fd636/automap-0.6.2-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "95b8a0db0ec25fb5b0ee5c52cd0f25c7",
                "sha256": "d4e4d39f56b41d38133ab3e98231910a1ec670e557069f7a5806390385cf9098"
            },
            "downloads": -1,
            "filename": "automap-0.6.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "95b8a0db0ec25fb5b0ee5c52cd0f25c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7.0",
            "size": 12463,
            "upload_time": "2022-11-15T17:41:50",
            "upload_time_iso_8601": "2022-11-15T17:41:50.331935Z",
            "url": "https://files.pythonhosted.org/packages/99/fb/41139b7d8ae4d438db3b9882bc9a340b7a32517bf39bd1b726e1c8aa8922/automap-0.6.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "afb15de873adef90ad68495b87a4bbbd",
                "sha256": "f9b93308ca3b4fc69d7fa757fbfa01b4e952a298fc7a6cc8b6adfb1fa966bfcc"
            },
            "downloads": -1,
            "filename": "automap-0.6.2.tar.gz",
            "has_sig": false,
            "md5_digest": "afb15de873adef90ad68495b87a4bbbd",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7.0",
            "size": 11009,
            "upload_time": "2022-11-15T17:41:51",
            "upload_time_iso_8601": "2022-11-15T17:41:51.738811Z",
            "url": "https://files.pythonhosted.org/packages/ad/d8/98ea5caf8fbcfb59cd41aa2047b6c90a0d4a81c19e17044b0417c25d4114/automap-0.6.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-11-15 17:41:51",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "brandtbucher",
    "github_project": "automap",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "black",
            "specs": [
                [
                    "==",
                    "22.3.0"
                ]
            ]
        },
        {
            "name": "hypothesis",
            "specs": [
                [
                    "==",
                    "6.46.7"
                ]
            ]
        },
        {
            "name": "invoke",
            "specs": [
                [
                    "==",
                    "1.7.1"
                ]
            ]
        },
        {
            "name": "pytest",
            "specs": [
                [
                    "==",
                    "7.1.2"
                ]
            ]
        },
        {
            "name": "tzdata",
            "specs": [
                [
                    "==",
                    "2022.1"
                ]
            ]
        }
    ],
    "lcname": "automap"
}
        
Elapsed time: 0.01875s