# mapfile_parser
[](https://pypi.org/project/mapfile-parser/)
[](https://github.com/Decompollaborate/mapfile_parser/releases/latest)
[](https://github.com/Decompollaborate/mapfile_parser/releases/latest)
[](https://pypi.org/project/mapfile-parser/)

[](https://github.com/Decompollaborate/mapfile_parser/graphs/contributors)
Map file parser library focusing decompilation projects.
This library is available for Python3 and Rust
## Features
- Fast parsing written in Rust.
- Support map formats:
- GNU ld
- clang lld
- Built-in cli utilities to process the parsed map file (see [Examples](#examples)).
## Installing
### Python version
See this package at <https://pypi.org/project/mapfile_parser/>.
The recommended way to install is using from the PyPi release, via `pip`:
```bash
python3 -m pip install -U mapfile_parser
```
If you use a `requirements.txt` file in your repository, then you can add
this library with the following line:
```txt
mapfile_parser>=2.7.4,<3.0.0
```
#### Development version
The unstable development version is located at the [develop](https://github.com/Decompollaborate/mapfile_parser/tree/develop)
branch. PRs should be made into that branch instead of the main one.
The recommended way to install a locally cloned repo is by passing the `-e`
(editable) flag to `pip`.
```bash
python3 -m pip install -e .
```
In case you want to mess with the latest development version without wanting to
clone the repository, then you could use the following command:
```bash
python3 -m pip uninstall mapfile_parser
python3 -m pip install git+https://github.com/Decompollaborate/mapfile_parser.git@develop
```
NOTE: Installing the development version is not recommended unless you know what
you are doing. Proceed at your own risk.
### Rust version
See this crate at <https://crates.io/crates/mapfile_parser>.
To add this library to your project using Cargo:
```bash
cargo add mapfile_parser
```
Or add the following line manually to your `Cargo.toml` file:
```toml
mapfile_parser = "2.7.4"
```
## Versioning and changelog
This library follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
We try to always keep backwards compatibility, so no breaking changes should
happen until a major release (i.e. jumping from 2.X.X to 3.0.0).
To see what changed on each release check either the [CHANGELOG.md](CHANGELOG.md)
file or check the [releases page on Github](https://github.com/Decompollaborate/mapfile_parser/releases).
You can also use [this link](https://github.com/Decompollaborate/mapfile_parser/releases/latest)
to check the latest release.
## Examples
Various cli examples are provided in the [frontends folder](src/mapfile_parser/frontends).
Most of them are re-implementations of already existing tools using this
library to show how to use this library and inspire new ideas.
The list can be checked in runtime with `python3 -m mapfile_parser --help`.
Each one of them can be executed with `python3 -m mapfile_parser utilityname`,
for example `python3 -m mapfile_parser pj64_syms`.
- `bss_check`: Check that globally visible bss has not been reordered.
- `first_diff`: Find the first difference(s) between the built ROM and the base
ROM.
- `jsonify`: Converts a mapfile into a json format.
- `pj64_syms`: Produce a PJ64 compatible symbol map.
- `progress`: Computes current progress of the matched functions. Relies on a
[splat](https://github.com/ethteck/splat) folder structure and each matched
functions no longer having an `.s` file (i.e: delete the file after matching it).
- `sym_info`: Display various information about a symbol or address.
- `symbol_sizes_csv`: Produces a csv summarizing the files sizes by parsing a
map file.
- `upload_frogress`: Uploads current progress (calculated by the `progress`
utility) of the matched functions to [frogress](https://github.com/decompals/frogress).
None of the provided cli utilities are meant to be used directly on a command
line, because they need a large number of long parameters to them and every repo
has their own quirks which would need them to be adapted. Those have been
written mostly to facilitate people to write those utilities in a way which
accomodates their own repo.
Raw data
{
"_id": null,
"home_page": null,
"name": "mapfile-parser",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "mapfile, parser, decomp, decompilation",
"author": "Anghelo Carvajal <angheloalf95@gmail.com>",
"author_email": "Anghelo Carvajal <angheloalf95@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/c5/73/568318ea49a0eada42ad028d74068906d290763d37cc263a047cb7cafbfe/mapfile_parser-2.7.4.tar.gz",
"platform": null,
"description": "# mapfile_parser\n\n[](https://pypi.org/project/mapfile-parser/)\n[](https://github.com/Decompollaborate/mapfile_parser/releases/latest)\n[](https://github.com/Decompollaborate/mapfile_parser/releases/latest)\n[](https://pypi.org/project/mapfile-parser/)\n\n[](https://github.com/Decompollaborate/mapfile_parser/graphs/contributors)\n\nMap file parser library focusing decompilation projects.\n\nThis library is available for Python3 and Rust\n\n## Features\n\n- Fast parsing written in Rust.\n- Support map formats:\n - GNU ld\n - clang lld\n- Built-in cli utilities to process the parsed map file (see [Examples](#examples)).\n\n## Installing\n\n### Python version\n\nSee this package at <https://pypi.org/project/mapfile_parser/>.\n\nThe recommended way to install is using from the PyPi release, via `pip`:\n\n```bash\npython3 -m pip install -U mapfile_parser\n```\n\nIf you use a `requirements.txt` file in your repository, then you can add\nthis library with the following line:\n\n```txt\nmapfile_parser>=2.7.4,<3.0.0\n```\n\n#### Development version\n\nThe unstable development version is located at the [develop](https://github.com/Decompollaborate/mapfile_parser/tree/develop)\nbranch. PRs should be made into that branch instead of the main one.\n\nThe recommended way to install a locally cloned repo is by passing the `-e`\n(editable) flag to `pip`.\n\n```bash\npython3 -m pip install -e .\n```\n\nIn case you want to mess with the latest development version without wanting to\nclone the repository, then you could use the following command:\n\n```bash\npython3 -m pip uninstall mapfile_parser\npython3 -m pip install git+https://github.com/Decompollaborate/mapfile_parser.git@develop\n```\n\nNOTE: Installing the development version is not recommended unless you know what\nyou are doing. Proceed at your own risk.\n\n### Rust version\n\nSee this crate at <https://crates.io/crates/mapfile_parser>.\n\nTo add this library to your project using Cargo:\n\n```bash\ncargo add mapfile_parser\n```\n\nOr add the following line manually to your `Cargo.toml` file:\n\n```toml\nmapfile_parser = \"2.7.4\"\n```\n\n## Versioning and changelog\n\nThis library follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).\nWe try to always keep backwards compatibility, so no breaking changes should\nhappen until a major release (i.e. jumping from 2.X.X to 3.0.0).\n\nTo see what changed on each release check either the [CHANGELOG.md](CHANGELOG.md)\nfile or check the [releases page on Github](https://github.com/Decompollaborate/mapfile_parser/releases).\nYou can also use [this link](https://github.com/Decompollaborate/mapfile_parser/releases/latest)\nto check the latest release.\n\n## Examples\n\nVarious cli examples are provided in the [frontends folder](src/mapfile_parser/frontends).\nMost of them are re-implementations of already existing tools using this\nlibrary to show how to use this library and inspire new ideas.\n\nThe list can be checked in runtime with `python3 -m mapfile_parser --help`.\n\nEach one of them can be executed with `python3 -m mapfile_parser utilityname`,\nfor example `python3 -m mapfile_parser pj64_syms`.\n\n- `bss_check`: Check that globally visible bss has not been reordered.\n- `first_diff`: Find the first difference(s) between the built ROM and the base\n ROM.\n- `jsonify`: Converts a mapfile into a json format.\n- `pj64_syms`: Produce a PJ64 compatible symbol map.\n- `progress`: Computes current progress of the matched functions. Relies on a\n [splat](https://github.com/ethteck/splat) folder structure and each matched\n functions no longer having an `.s` file (i.e: delete the file after matching it).\n- `sym_info`: Display various information about a symbol or address.\n- `symbol_sizes_csv`: Produces a csv summarizing the files sizes by parsing a\n map file.\n- `upload_frogress`: Uploads current progress (calculated by the `progress`\n utility) of the matched functions to [frogress](https://github.com/decompals/frogress).\n\nNone of the provided cli utilities are meant to be used directly on a command\nline, because they need a large number of long parameters to them and every repo\nhas their own quirks which would need them to be adapted. Those have been\nwritten mostly to facilitate people to write those utilities in a way which\naccomodates their own repo.\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Map file parser library focusing decompilation projects",
"version": "2.7.4",
"project_urls": {
"Bug Tracker": "https://github.com/Decompollaborate/mapfile_parser/issues",
"Homepage": "https://github.com/Decompollaborate/mapfile_parser"
},
"split_keywords": [
"mapfile",
" parser",
" decomp",
" decompilation"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "288993c89453febdbc88e78b08c6dffa976eed523b8a73d6f247d592ea38b3a5",
"md5": "f73dc0c7f60b644be46c4cf40e06654d",
"sha256": "8cf7d5b77261fd45d2b82c243e7a3bf96393dbb0c63a9496d229dbd72b6f032e"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f73dc0c7f60b644be46c4cf40e06654d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1133537,
"upload_time": "2025-03-19T16:11:29",
"upload_time_iso_8601": "2025-03-19T16:11:29.755832Z",
"url": "https://files.pythonhosted.org/packages/28/89/93c89453febdbc88e78b08c6dffa976eed523b8a73d6f247d592ea38b3a5/mapfile_parser-2.7.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "06036e4fe0b77f96861a6d3422d1173d08017f933c93f51543bd35870269dfa6",
"md5": "f92136e064e78013d07061a01cb90b73",
"sha256": "e2b9d212af3a5a14d74ec7ebdcad14fdee8d475e3223e8fb5e7d8b602937a410"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "f92136e064e78013d07061a01cb90b73",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1095973,
"upload_time": "2025-03-19T16:11:47",
"upload_time_iso_8601": "2025-03-19T16:11:47.223860Z",
"url": "https://files.pythonhosted.org/packages/06/03/6e4fe0b77f96861a6d3422d1173d08017f933c93f51543bd35870269dfa6/mapfile_parser-2.7.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "77f5e14e85e39310841894b85c85790ecdaf4a9e4d107d6b00f03366686ea8ab",
"md5": "0b4b97052319ff9ef851cac20ef852b7",
"sha256": "0d4907967bf1b00527572a1676b98d344c9ea9b048922a38df8a0092baa4e19b"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "0b4b97052319ff9ef851cac20ef852b7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1225394,
"upload_time": "2025-03-19T16:12:02",
"upload_time_iso_8601": "2025-03-19T16:12:02.907827Z",
"url": "https://files.pythonhosted.org/packages/77/f5/e14e85e39310841894b85c85790ecdaf4a9e4d107d6b00f03366686ea8ab/mapfile_parser-2.7.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8753f821cf379911ab92b5bbcd886a00be55f33b19d6058743d4c2a1f4dd461c",
"md5": "2f09f1e5543e12ae48cff3b1b1da0fb3",
"sha256": "cdeffc2d374dd0bc422703c99f63dd2337006fda37c5cd0fed4a8f8fcf27dade"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "2f09f1e5543e12ae48cff3b1b1da0fb3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1286411,
"upload_time": "2025-03-19T16:12:18",
"upload_time_iso_8601": "2025-03-19T16:12:18.935550Z",
"url": "https://files.pythonhosted.org/packages/87/53/f821cf379911ab92b5bbcd886a00be55f33b19d6058743d4c2a1f4dd461c/mapfile_parser-2.7.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9fcd8d5091dea36283726e0c602ec8dd161b4a74d85624e365c66d6fcb9479f3",
"md5": "6b444239e7146f4a6567d3ae93cee05a",
"sha256": "ec8971191b5d02d1b2e9da728598d7d12c3be22df5c54d90759909695321e49f"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6b444239e7146f4a6567d3ae93cee05a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1188137,
"upload_time": "2025-03-19T16:12:50",
"upload_time_iso_8601": "2025-03-19T16:12:50.610762Z",
"url": "https://files.pythonhosted.org/packages/9f/cd/8d5091dea36283726e0c602ec8dd161b4a74d85624e365c66d6fcb9479f3/mapfile_parser-2.7.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "37c14eb1afac8e7a51729a70cb54f901c4617eff29ec6333d00c19611dbcef8a",
"md5": "aa1702010e9a2fec9e12aab4e49a6081",
"sha256": "6f2bedc1f823894e3d406f38ac6481518cf1d8c1f3061a61c3424aca0b551b49"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "aa1702010e9a2fec9e12aab4e49a6081",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1196195,
"upload_time": "2025-03-19T16:12:38",
"upload_time_iso_8601": "2025-03-19T16:12:38.356617Z",
"url": "https://files.pythonhosted.org/packages/37/c1/4eb1afac8e7a51729a70cb54f901c4617eff29ec6333d00c19611dbcef8a/mapfile_parser-2.7.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5f8bc6c48f18ae71a5e14dac0f3c689f28fbfed2d261ae26aa1057d8af998560",
"md5": "4707c1052b1ca8ca8cd551d5541397ea",
"sha256": "4edc9d14760e877b7c8bc523711386f441a7f3e5e45e56dace94cc3736a2e05a"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "4707c1052b1ca8ca8cd551d5541397ea",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1309356,
"upload_time": "2025-03-19T16:13:12",
"upload_time_iso_8601": "2025-03-19T16:13:12.864617Z",
"url": "https://files.pythonhosted.org/packages/5f/8b/c6c48f18ae71a5e14dac0f3c689f28fbfed2d261ae26aa1057d8af998560/mapfile_parser-2.7.4-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "826244bdeff38282a43554d7723d08db2b6b28d549a288404ccc531edf0a320c",
"md5": "fed50949df61cd8ab273f6e7f2d60aa2",
"sha256": "a0c4ec5f32a7fdbdc2e2e182b5f37ba4c3a8ecb1481d833619547113ba95342c"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp310-cp310-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "fed50949df61cd8ab273f6e7f2d60aa2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1359318,
"upload_time": "2025-03-19T16:13:27",
"upload_time_iso_8601": "2025-03-19T16:13:27.840750Z",
"url": "https://files.pythonhosted.org/packages/82/62/44bdeff38282a43554d7723d08db2b6b28d549a288404ccc531edf0a320c/mapfile_parser-2.7.4-cp310-cp310-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "18828059273133f009abe06c4ec0d29b939db7e5247abb50e1de2efed7f7713f",
"md5": "5278ff7570e58635395435f072acaae7",
"sha256": "0bb203ce1ac1a68c70c83eed59b8bc997b58c97dadd1a21aae841d3eb28efc44"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "5278ff7570e58635395435f072acaae7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1329093,
"upload_time": "2025-03-19T16:13:45",
"upload_time_iso_8601": "2025-03-19T16:13:45.829509Z",
"url": "https://files.pythonhosted.org/packages/18/82/8059273133f009abe06c4ec0d29b939db7e5247abb50e1de2efed7f7713f/mapfile_parser-2.7.4-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "84a99091c2354b0d0a00b9e7b606b41da24095440dde68bc4336e49356b9e533",
"md5": "b5e79a6a08ba694eea69c8b576124fac",
"sha256": "62307960d865e004b70bc42371e16f95f61295a47cda6b5a63e758d3f96d9a6d"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "b5e79a6a08ba694eea69c8b576124fac",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1359360,
"upload_time": "2025-03-19T16:14:02",
"upload_time_iso_8601": "2025-03-19T16:14:02.582215Z",
"url": "https://files.pythonhosted.org/packages/84/a9/9091c2354b0d0a00b9e7b606b41da24095440dde68bc4336e49356b9e533/mapfile_parser-2.7.4-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e5a496e9225afb990ea0e9b97304a7cd44e047eedd277e43597943098e0b2c31",
"md5": "bff18623f658fcb274544277e053683d",
"sha256": "cfd8e0703c55b934d9599fdd7e052db4e6b043508af4dd725f247b783e51f04c"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "bff18623f658fcb274544277e053683d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 835459,
"upload_time": "2025-03-19T16:14:28",
"upload_time_iso_8601": "2025-03-19T16:14:28.212026Z",
"url": "https://files.pythonhosted.org/packages/e5/a4/96e9225afb990ea0e9b97304a7cd44e047eedd277e43597943098e0b2c31/mapfile_parser-2.7.4-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "65274cece4f8f6b6c92389abaeb66c23a56b48adbb6878f9fd30337272fc8cda",
"md5": "ba4ded5714383500ea4bc8a090e4b7d8",
"sha256": "e696cb6663325020f851a86e65e6c497e5864b0c8906348c3544a3a1acc5d7b2"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "ba4ded5714383500ea4bc8a090e4b7d8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 911376,
"upload_time": "2025-03-19T16:14:18",
"upload_time_iso_8601": "2025-03-19T16:14:18.978308Z",
"url": "https://files.pythonhosted.org/packages/65/27/4cece4f8f6b6c92389abaeb66c23a56b48adbb6878f9fd30337272fc8cda/mapfile_parser-2.7.4-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d5b0c23ed85c3527a5be213e0644d4955eaa809aaeb58219cc02706ee36c61b1",
"md5": "de1f2a42c37e19e7fb0d5a9bed737cec",
"sha256": "ddb3add492c9c347ef0a9b421a81e3384df0402e7348f8e4f712642323cd5f5e"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "de1f2a42c37e19e7fb0d5a9bed737cec",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1080321,
"upload_time": "2025-03-19T16:13:08",
"upload_time_iso_8601": "2025-03-19T16:13:08.029474Z",
"url": "https://files.pythonhosted.org/packages/d5/b0/c23ed85c3527a5be213e0644d4955eaa809aaeb58219cc02706ee36c61b1/mapfile_parser-2.7.4-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "75d17eb162b6b9af88dd92c91982c2d18a125c8f45d07d1d593e05c95fc4094e",
"md5": "70256a2f4a87a4e8ad80895bdf8b5675",
"sha256": "95bdaed3c6bd0d87b0306d9fe4a45a5d9c5f3cf3124874ec61e3971bca35cf0f"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "70256a2f4a87a4e8ad80895bdf8b5675",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1013287,
"upload_time": "2025-03-19T16:13:02",
"upload_time_iso_8601": "2025-03-19T16:13:02.924926Z",
"url": "https://files.pythonhosted.org/packages/75/d1/7eb162b6b9af88dd92c91982c2d18a125c8f45d07d1d593e05c95fc4094e/mapfile_parser-2.7.4-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c0468624c2021275f1c9a5060f8f70c714b457e3f817e2a1336150bf2ffc8954",
"md5": "549715470441bac140368ab9f88a1036",
"sha256": "607ae85f2e081b3930a3d510f2ad68013f83d8bdd602d319948e7285abc4ac3e"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "549715470441bac140368ab9f88a1036",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1133477,
"upload_time": "2025-03-19T16:11:32",
"upload_time_iso_8601": "2025-03-19T16:11:32.109592Z",
"url": "https://files.pythonhosted.org/packages/c0/46/8624c2021275f1c9a5060f8f70c714b457e3f817e2a1336150bf2ffc8954/mapfile_parser-2.7.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2bc54f290706b9e07bd7f380077c680aa02c8d04778b5ddf202d17a2b0d19897",
"md5": "a8003ee4d7ccec16cd064076f2f5f933",
"sha256": "5280e1efcc4486eefff4cba2858e1228b7d8ce321df94cd2ad9f3a173c41c89b"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "a8003ee4d7ccec16cd064076f2f5f933",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1095759,
"upload_time": "2025-03-19T16:11:48",
"upload_time_iso_8601": "2025-03-19T16:11:48.939242Z",
"url": "https://files.pythonhosted.org/packages/2b/c5/4f290706b9e07bd7f380077c680aa02c8d04778b5ddf202d17a2b0d19897/mapfile_parser-2.7.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9487380c0845b476a312ed5ec4cf7c0a33eec796349608446d57c474421a8deb",
"md5": "98648326ef26a0aab8f240cf5c743c0f",
"sha256": "dfaf4a7ae826630c5241156837c8feee1b973f5ea85a76a7bc3c2eb281f30b52"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "98648326ef26a0aab8f240cf5c743c0f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1225333,
"upload_time": "2025-03-19T16:12:04",
"upload_time_iso_8601": "2025-03-19T16:12:04.481523Z",
"url": "https://files.pythonhosted.org/packages/94/87/380c0845b476a312ed5ec4cf7c0a33eec796349608446d57c474421a8deb/mapfile_parser-2.7.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "746bd6eb06a3c3321ff40712fd3364d20bc81529be5791aa994430b1139d0e5c",
"md5": "6c83528d51a9b2edbe365f04238fbc5f",
"sha256": "704a8260697dccd31b4a776b788dbfe84cde0eaa32d68cfc36d9872891e867ab"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "6c83528d51a9b2edbe365f04238fbc5f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1285621,
"upload_time": "2025-03-19T16:12:20",
"upload_time_iso_8601": "2025-03-19T16:12:20.900266Z",
"url": "https://files.pythonhosted.org/packages/74/6b/d6eb06a3c3321ff40712fd3364d20bc81529be5791aa994430b1139d0e5c/mapfile_parser-2.7.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9f2809ea53d91b0ef40b57d2055e0ba9b432583c06a5632580064fbeda996f2c",
"md5": "a9c2a94431efc9e18897652ff87e6d17",
"sha256": "d2fbde6e57c4d4511698bff5f14a8189243dc8b839af0c37529e83a6944f8cfd"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a9c2a94431efc9e18897652ff87e6d17",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1188006,
"upload_time": "2025-03-19T16:12:52",
"upload_time_iso_8601": "2025-03-19T16:12:52.152881Z",
"url": "https://files.pythonhosted.org/packages/9f/28/09ea53d91b0ef40b57d2055e0ba9b432583c06a5632580064fbeda996f2c/mapfile_parser-2.7.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7ac6ec7aea36ade19e45a4652150aa906afc93b9e8ce3fef42e7b19e472d7fb5",
"md5": "ecbbe30b3d0254a0e56a059455d368c0",
"sha256": "58610dc43a32e2be7a60a0b271528290aa5b6de4701d4321ba62bab0e9e772c1"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "ecbbe30b3d0254a0e56a059455d368c0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1196220,
"upload_time": "2025-03-19T16:12:39",
"upload_time_iso_8601": "2025-03-19T16:12:39.894108Z",
"url": "https://files.pythonhosted.org/packages/7a/c6/ec7aea36ade19e45a4652150aa906afc93b9e8ce3fef42e7b19e472d7fb5/mapfile_parser-2.7.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "14063eaf4952df3b69c474f6f4a5f1d0f3644be0f25897d03c32207e4ff3e710",
"md5": "7a918ee951a231211f157f38ebcab64f",
"sha256": "b60e88ea9f5ea8463937f2ed23424091caa62f5c97a2730bd2ae972f55d36452"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "7a918ee951a231211f157f38ebcab64f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1309315,
"upload_time": "2025-03-19T16:13:14",
"upload_time_iso_8601": "2025-03-19T16:13:14.585624Z",
"url": "https://files.pythonhosted.org/packages/14/06/3eaf4952df3b69c474f6f4a5f1d0f3644be0f25897d03c32207e4ff3e710/mapfile_parser-2.7.4-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d31d8bc2c2f443776efcb4994e5acd2bf5d6b683fd138fcb49659aea97b76509",
"md5": "7c26fa353b24eb54df91e2c6d909a8dc",
"sha256": "02da451deea6d9fb384a3a76f3bbcd02da2fde034137099012d45b5ae718fdaf"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp311-cp311-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "7c26fa353b24eb54df91e2c6d909a8dc",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1359678,
"upload_time": "2025-03-19T16:13:29",
"upload_time_iso_8601": "2025-03-19T16:13:29.471877Z",
"url": "https://files.pythonhosted.org/packages/d3/1d/8bc2c2f443776efcb4994e5acd2bf5d6b683fd138fcb49659aea97b76509/mapfile_parser-2.7.4-cp311-cp311-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "469631892422e78c21757be8409b439a488c4d93cd64d42f724a4a172dbe955f",
"md5": "ec339b9a9e06be99a4216d3686477205",
"sha256": "1f2b04ad8c2a1bee90c108f1222912036911ab1abb3591d30261c700c741c065"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "ec339b9a9e06be99a4216d3686477205",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1329450,
"upload_time": "2025-03-19T16:13:47",
"upload_time_iso_8601": "2025-03-19T16:13:47.575569Z",
"url": "https://files.pythonhosted.org/packages/46/96/31892422e78c21757be8409b439a488c4d93cd64d42f724a4a172dbe955f/mapfile_parser-2.7.4-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6b74fe9ab0f75ada756a1dc3bf932aae567ba425f685ab83774bf287485d5e88",
"md5": "dadcecfcec882002b2116cb90ed56849",
"sha256": "987f7aa99f99b5415791ce02ce822a6cd0248fd786a7e4fa40eb873a483b21ea"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "dadcecfcec882002b2116cb90ed56849",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1359154,
"upload_time": "2025-03-19T16:14:04",
"upload_time_iso_8601": "2025-03-19T16:14:04.322585Z",
"url": "https://files.pythonhosted.org/packages/6b/74/fe9ab0f75ada756a1dc3bf932aae567ba425f685ab83774bf287485d5e88/mapfile_parser-2.7.4-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7759ad5faef18eb4c1efdbf8e6ec1dda6c43c1547c73b12c8ca95f17d1524bf6",
"md5": "00e235c666df492b760bfb1ec07c9984",
"sha256": "73accb21e75c3eb828179b3e1eb35c40adb506216d9d1c3b49cf510dc57dcac4"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "00e235c666df492b760bfb1ec07c9984",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 835652,
"upload_time": "2025-03-19T16:14:30",
"upload_time_iso_8601": "2025-03-19T16:14:30.202593Z",
"url": "https://files.pythonhosted.org/packages/77/59/ad5faef18eb4c1efdbf8e6ec1dda6c43c1547c73b12c8ca95f17d1524bf6/mapfile_parser-2.7.4-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2ddb4d20f35cab1bb70697abf00ce74f53db72906531cf8e91df40a63c9d9323",
"md5": "ffde989c7988d7cb33504ec9f150a2f6",
"sha256": "b667aad8f0c9667ffbd1144e4518e3dac54f6163f1591729791d0274bb2b975d"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "ffde989c7988d7cb33504ec9f150a2f6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 911364,
"upload_time": "2025-03-19T16:14:21",
"upload_time_iso_8601": "2025-03-19T16:14:21.084791Z",
"url": "https://files.pythonhosted.org/packages/2d/db/4d20f35cab1bb70697abf00ce74f53db72906531cf8e91df40a63c9d9323/mapfile_parser-2.7.4-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3fe4b4ede102a40c658447737f69be672b80493b4743da4862f5d00bd93c5a7e",
"md5": "2039169c1b246db27bc2d2b0b5cbe0e0",
"sha256": "ecd3286c4f840114d9cf5a1a2d4c12240dad458c564a6784590420a76a6bf37a"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "2039169c1b246db27bc2d2b0b5cbe0e0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1073159,
"upload_time": "2025-03-19T16:13:09",
"upload_time_iso_8601": "2025-03-19T16:13:09.575624Z",
"url": "https://files.pythonhosted.org/packages/3f/e4/b4ede102a40c658447737f69be672b80493b4743da4862f5d00bd93c5a7e/mapfile_parser-2.7.4-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d8c335f21746bdc52b69a8be425b2065dba4c0563eee4d80a906bfd72df5d6c1",
"md5": "473c80218dd2587e9fa8722bc3a57dcf",
"sha256": "fa9cd4821eda54147cbe0468e02d8e503cfd670a82f0317e9a1a398a6d21b1bd"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "473c80218dd2587e9fa8722bc3a57dcf",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1008505,
"upload_time": "2025-03-19T16:13:04",
"upload_time_iso_8601": "2025-03-19T16:13:04.522981Z",
"url": "https://files.pythonhosted.org/packages/d8/c3/35f21746bdc52b69a8be425b2065dba4c0563eee4d80a906bfd72df5d6c1/mapfile_parser-2.7.4-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5ad26f57e974053ce8f66f9676adc426a524e5337f1b0de9495e455104ed6372",
"md5": "f07234405db01c391381314ae69a503c",
"sha256": "3957b32aa9b28530cd0b78ae36a221171d3a2bb2af18bd84407dbf7b94222245"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f07234405db01c391381314ae69a503c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1132958,
"upload_time": "2025-03-19T16:11:34",
"upload_time_iso_8601": "2025-03-19T16:11:34.065696Z",
"url": "https://files.pythonhosted.org/packages/5a/d2/6f57e974053ce8f66f9676adc426a524e5337f1b0de9495e455104ed6372/mapfile_parser-2.7.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4d633bbf46226f96dd6ffc297e09a3e54fdfe21b411a692c7c001b75e4c9c612",
"md5": "6faa2397fbec267aaf17d455546f0d5a",
"sha256": "9d190eb2c0b80a26c17e92b7cc166679de31acfe652278171818579b38284f03"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "6faa2397fbec267aaf17d455546f0d5a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1095317,
"upload_time": "2025-03-19T16:11:51",
"upload_time_iso_8601": "2025-03-19T16:11:51.336044Z",
"url": "https://files.pythonhosted.org/packages/4d/63/3bbf46226f96dd6ffc297e09a3e54fdfe21b411a692c7c001b75e4c9c612/mapfile_parser-2.7.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "63b79f75afb5ef003c25151e59ba350d66d08e81e4fecb9bd9dafbf33863f6e9",
"md5": "e043033039e579eff22b93130fc5f7ea",
"sha256": "c4b2d2c04427ce8d0ea886f5c4ed286ecad826c0c8de47b3befa74c95ba689c9"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "e043033039e579eff22b93130fc5f7ea",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1226634,
"upload_time": "2025-03-19T16:12:06",
"upload_time_iso_8601": "2025-03-19T16:12:06.419032Z",
"url": "https://files.pythonhosted.org/packages/63/b7/9f75afb5ef003c25151e59ba350d66d08e81e4fecb9bd9dafbf33863f6e9/mapfile_parser-2.7.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "45a96d8607f1ec4a02de2c54fcbb356462a07cdf8c3805d388547c941993c017",
"md5": "086cc7e07674aa953485a8454ed43b75",
"sha256": "d5ebcc65b1f1a03ce84b6152da7d84a28e790554cc416c8e6258d21ecb07bdae"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "086cc7e07674aa953485a8454ed43b75",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1283033,
"upload_time": "2025-03-19T16:12:23",
"upload_time_iso_8601": "2025-03-19T16:12:23.860868Z",
"url": "https://files.pythonhosted.org/packages/45/a9/6d8607f1ec4a02de2c54fcbb356462a07cdf8c3805d388547c941993c017/mapfile_parser-2.7.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cbcd9f97f77920f7c3ba5deb18dfc31c2ca2afbc2bcc10e821b186ec0d6bab4b",
"md5": "f7bcb4bce91b6c759e5f5f8365c1b3e2",
"sha256": "9f012520d584a672788921eb8d21d62dd744d74f3fc875a679625b9cfe564ad5"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f7bcb4bce91b6c759e5f5f8365c1b3e2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1188328,
"upload_time": "2025-03-19T16:12:53",
"upload_time_iso_8601": "2025-03-19T16:12:53.761534Z",
"url": "https://files.pythonhosted.org/packages/cb/cd/9f97f77920f7c3ba5deb18dfc31c2ca2afbc2bcc10e821b186ec0d6bab4b/mapfile_parser-2.7.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8bcb7ec4f31a26dc43b998e79ffff1a3f2cadbaee5af367966b4c2914c59b1cd",
"md5": "08e1e18f3f4b11ac4aa0b6dbf87e58c8",
"sha256": "ab03cf9be20c2cc688eb314939bb8caa152644e453565306892827b574c1896f"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "08e1e18f3f4b11ac4aa0b6dbf87e58c8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1195325,
"upload_time": "2025-03-19T16:12:41",
"upload_time_iso_8601": "2025-03-19T16:12:41.629095Z",
"url": "https://files.pythonhosted.org/packages/8b/cb/7ec4f31a26dc43b998e79ffff1a3f2cadbaee5af367966b4c2914c59b1cd/mapfile_parser-2.7.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d40a1066ebc7c654c335a1a13d789ba12d139b26ff83f2b6a31e2f10187df725",
"md5": "13690b38264a9e33fc2d54219519e918",
"sha256": "b86f4c17e932e6ef4ae5897d7d5f62f3bfd901f0b3fd535e0201e38482325ff3"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "13690b38264a9e33fc2d54219519e918",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1309137,
"upload_time": "2025-03-19T16:13:16",
"upload_time_iso_8601": "2025-03-19T16:13:16.204937Z",
"url": "https://files.pythonhosted.org/packages/d4/0a/1066ebc7c654c335a1a13d789ba12d139b26ff83f2b6a31e2f10187df725/mapfile_parser-2.7.4-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f8df5131bd204b2698918063652a7bae1a35e192f594d084eb2e1ead283cf310",
"md5": "884a188ce1ac7c3aadd07c31ea316cf6",
"sha256": "e60b6cdfc976f9d16b39b9f83f0e3cc3d441542e678d89dc9e561c8487f1ef9b"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp312-cp312-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "884a188ce1ac7c3aadd07c31ea316cf6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1358592,
"upload_time": "2025-03-19T16:13:31",
"upload_time_iso_8601": "2025-03-19T16:13:31.018225Z",
"url": "https://files.pythonhosted.org/packages/f8/df/5131bd204b2698918063652a7bae1a35e192f594d084eb2e1ead283cf310/mapfile_parser-2.7.4-cp312-cp312-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "02dede6ae0515803730ce05628d79c5e509f55a6fbc77c5833d6392e9431cea6",
"md5": "530e34a9db0d293d8041e7f910ade16a",
"sha256": "e7734f719595d562b501547247d899c27dce48b52264984849cd98530352e772"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "530e34a9db0d293d8041e7f910ade16a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1329076,
"upload_time": "2025-03-19T16:13:49",
"upload_time_iso_8601": "2025-03-19T16:13:49.432123Z",
"url": "https://files.pythonhosted.org/packages/02/de/de6ae0515803730ce05628d79c5e509f55a6fbc77c5833d6392e9431cea6/mapfile_parser-2.7.4-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "46ff137c612dad527410f1552da89572fe91f34203d4bbaa6b666e012b1566f0",
"md5": "7ea0eec571c4859355b684665a8cf394",
"sha256": "4977680b40a465fae7cccc1d2c5687a4fab8e9b187522eb5d9b1bc3994550c38"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "7ea0eec571c4859355b684665a8cf394",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1359521,
"upload_time": "2025-03-19T16:14:05",
"upload_time_iso_8601": "2025-03-19T16:14:05.986385Z",
"url": "https://files.pythonhosted.org/packages/46/ff/137c612dad527410f1552da89572fe91f34203d4bbaa6b666e012b1566f0/mapfile_parser-2.7.4-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "de81b7bd70fba9fe655cf226606dddfaa60f88f60b69cd0924e350a0af343f5a",
"md5": "8432387f1b387c9bd386846296c76d5f",
"sha256": "0206d1ab1db571f851d49096ebbc7b8e239d92ffdad305b08a3d68e3348c533e"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "8432387f1b387c9bd386846296c76d5f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 832610,
"upload_time": "2025-03-19T16:14:32",
"upload_time_iso_8601": "2025-03-19T16:14:32.415602Z",
"url": "https://files.pythonhosted.org/packages/de/81/b7bd70fba9fe655cf226606dddfaa60f88f60b69cd0924e350a0af343f5a/mapfile_parser-2.7.4-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2b50b6311c864c1fd71d580e9d164ed91cd3a6b2a5b2f816728445c6f600bbcd",
"md5": "79eabaf7d5b1f5e9e141d64c27b20401",
"sha256": "31d0e7810a19a7a6dc1ad1d3b95e1b846d1768bd4a34a0966c8ef155189b7613"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "79eabaf7d5b1f5e9e141d64c27b20401",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 913038,
"upload_time": "2025-03-19T16:14:22",
"upload_time_iso_8601": "2025-03-19T16:14:22.784448Z",
"url": "https://files.pythonhosted.org/packages/2b/50/b6311c864c1fd71d580e9d164ed91cd3a6b2a5b2f816728445c6f600bbcd/mapfile_parser-2.7.4-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1579b0aa469ea821e7c64ede36d19a94f36104a3337eb6dbf9fd96f9b0728f71",
"md5": "908e03f754911153aeccfb73cc2a5deb",
"sha256": "fb197007e33a51a329d574823058e2f63f8fca33476cc37e2c3ea6f31e3640fc"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "908e03f754911153aeccfb73cc2a5deb",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1072686,
"upload_time": "2025-03-19T16:13:11",
"upload_time_iso_8601": "2025-03-19T16:13:11.208983Z",
"url": "https://files.pythonhosted.org/packages/15/79/b0aa469ea821e7c64ede36d19a94f36104a3337eb6dbf9fd96f9b0728f71/mapfile_parser-2.7.4-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fdb9d9e8ce0ec63439978c11aa3abeafbb68c35f0d04b1bd7778ac0669d4a7ab",
"md5": "128ffdfabf75346ba76a7297cc04ef83",
"sha256": "055198d1f96181f9632c8d1017569757c05eb44839c173b1ae37dba5b6a2ca18"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "128ffdfabf75346ba76a7297cc04ef83",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1007942,
"upload_time": "2025-03-19T16:13:06",
"upload_time_iso_8601": "2025-03-19T16:13:06.422519Z",
"url": "https://files.pythonhosted.org/packages/fd/b9/d9e8ce0ec63439978c11aa3abeafbb68c35f0d04b1bd7778ac0669d4a7ab/mapfile_parser-2.7.4-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c705f31d4decaabb15dd6f7bd8a763b31911d47b5cacb0a2a1cd8a6ffac473b1",
"md5": "46e2255afa84bc7d844c0e1684fdf037",
"sha256": "c3ee4f31e56b66e492da5d1eb5d9d1bf575a3ffe68dfab8008b21f3f84fd1789"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "46e2255afa84bc7d844c0e1684fdf037",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1132601,
"upload_time": "2025-03-19T16:11:36",
"upload_time_iso_8601": "2025-03-19T16:11:36.071619Z",
"url": "https://files.pythonhosted.org/packages/c7/05/f31d4decaabb15dd6f7bd8a763b31911d47b5cacb0a2a1cd8a6ffac473b1/mapfile_parser-2.7.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "934697189e236abdbb7daecff30e58ffdb07309779b59e2d519e511279769dc5",
"md5": "814265e383ad172c53262e818ccb18e2",
"sha256": "104bb6c7b97004fb1f579747304ee4be1ee78f9b2b9d15c29fb8e1d339244720"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "814265e383ad172c53262e818ccb18e2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1095101,
"upload_time": "2025-03-19T16:11:52",
"upload_time_iso_8601": "2025-03-19T16:11:52.991044Z",
"url": "https://files.pythonhosted.org/packages/93/46/97189e236abdbb7daecff30e58ffdb07309779b59e2d519e511279769dc5/mapfile_parser-2.7.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "026f506554cebac2bc211bdf6dfa2d5be4039ec1847c317e80fb735a83a249cb",
"md5": "1fda63e38999f5d7e578f994955aa4b2",
"sha256": "c684f351d77a5b2495a7c422613558a8ec6131946e6d8076770c0dbca3056869"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "1fda63e38999f5d7e578f994955aa4b2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1225970,
"upload_time": "2025-03-19T16:12:07",
"upload_time_iso_8601": "2025-03-19T16:12:07.872968Z",
"url": "https://files.pythonhosted.org/packages/02/6f/506554cebac2bc211bdf6dfa2d5be4039ec1847c317e80fb735a83a249cb/mapfile_parser-2.7.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "acf7da5ac44a00ee6dec9a237599b249f495d7ef27267516ff1cfcf381e530cf",
"md5": "d097b4941477204ca135fcfcaec099c1",
"sha256": "510cabbbb2dda6cb2047724bdfb89993f337d96ffe50536942c39e61036c7d24"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "d097b4941477204ca135fcfcaec099c1",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1282425,
"upload_time": "2025-03-19T16:12:25",
"upload_time_iso_8601": "2025-03-19T16:12:25.938402Z",
"url": "https://files.pythonhosted.org/packages/ac/f7/da5ac44a00ee6dec9a237599b249f495d7ef27267516ff1cfcf381e530cf/mapfile_parser-2.7.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "030d213caa9f1695fba99bcf9f2d801670d6fb90fde15c0bd946f0e80ed28668",
"md5": "4449e958a22fd8090d4e89702219e6bd",
"sha256": "5c37de6af9946872e479f457206d6b32acdfbe4a78a8d65804356589e84694db"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4449e958a22fd8090d4e89702219e6bd",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1187696,
"upload_time": "2025-03-19T16:12:55",
"upload_time_iso_8601": "2025-03-19T16:12:55.306556Z",
"url": "https://files.pythonhosted.org/packages/03/0d/213caa9f1695fba99bcf9f2d801670d6fb90fde15c0bd946f0e80ed28668/mapfile_parser-2.7.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a2e8d3a8eca5482fe3334a096dd0ca3f0eb8d45e8024d7d4e568e55fb77cafa9",
"md5": "0aefbfb808337372b0560e693af400d5",
"sha256": "ed16d8049275d025d9b82cae37f806c71d5fbfdd7a69e7c8cbc6a64e4790e7eb"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "0aefbfb808337372b0560e693af400d5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1194489,
"upload_time": "2025-03-19T16:12:44",
"upload_time_iso_8601": "2025-03-19T16:12:44.041090Z",
"url": "https://files.pythonhosted.org/packages/a2/e8/d3a8eca5482fe3334a096dd0ca3f0eb8d45e8024d7d4e568e55fb77cafa9/mapfile_parser-2.7.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "103f3457bc6891ceb88431dab9b01926c8823bfd20ddc7fe47204952200a6f11",
"md5": "1dbe92b8e4a8d8a7341a91a1d5a9f8f9",
"sha256": "55d61fe2872ff77b6d6b2f58e38b43b0076686addc3cf06d590f4654103f1015"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "1dbe92b8e4a8d8a7341a91a1d5a9f8f9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1308989,
"upload_time": "2025-03-19T16:13:17",
"upload_time_iso_8601": "2025-03-19T16:13:17.852271Z",
"url": "https://files.pythonhosted.org/packages/10/3f/3457bc6891ceb88431dab9b01926c8823bfd20ddc7fe47204952200a6f11/mapfile_parser-2.7.4-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2ddb51680b6006f6227d8402beb1477de684edab6fa7b50c1c14f5a120d6e5f5",
"md5": "d48ab786e65b359ec4ebb9ded2e2f069",
"sha256": "8b11fa020b41ded0cc2de42365e7c29cda23180109eaf5cb8303d6dcdeb7ca05"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp313-cp313-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "d48ab786e65b359ec4ebb9ded2e2f069",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1357877,
"upload_time": "2025-03-19T16:13:32",
"upload_time_iso_8601": "2025-03-19T16:13:32.730321Z",
"url": "https://files.pythonhosted.org/packages/2d/db/51680b6006f6227d8402beb1477de684edab6fa7b50c1c14f5a120d6e5f5/mapfile_parser-2.7.4-cp313-cp313-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4762ec009f445ae9df3fbc9db9174e71545f1c3404cf3f7be6ad61f16ab128f5",
"md5": "58ef6122dbd1cb91d77eeaee2d50bb73",
"sha256": "1acf2f8e4820a9546347ec86520c7175e44a4db8cc249c4e01ef0949152ec2ab"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "58ef6122dbd1cb91d77eeaee2d50bb73",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1328082,
"upload_time": "2025-03-19T16:13:51",
"upload_time_iso_8601": "2025-03-19T16:13:51.107249Z",
"url": "https://files.pythonhosted.org/packages/47/62/ec009f445ae9df3fbc9db9174e71545f1c3404cf3f7be6ad61f16ab128f5/mapfile_parser-2.7.4-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b3a0cfce89b814767cc795358826b73fe810646f6a79ee75e8a22fa1cef3b146",
"md5": "6d195f7554052ed912dabf8d3cfb0bc7",
"sha256": "07e91250449214ebbfbfcea0985c751f4746c499accfe75497af2f80cbd58ac9"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "6d195f7554052ed912dabf8d3cfb0bc7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1359144,
"upload_time": "2025-03-19T16:14:07",
"upload_time_iso_8601": "2025-03-19T16:14:07.580909Z",
"url": "https://files.pythonhosted.org/packages/b3/a0/cfce89b814767cc795358826b73fe810646f6a79ee75e8a22fa1cef3b146/mapfile_parser-2.7.4-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e950ab44ed1065b4778ab89ca2bbc790c9cc924249f9ce141dc2cc0c4fb30aaa",
"md5": "87e63af691511355859ad3dc4e1faca7",
"sha256": "032555f12c0ccfb5e1d1d1b7f42a34d09523c73ed1cb8f65b7546ed845e52998"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "87e63af691511355859ad3dc4e1faca7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1130945,
"upload_time": "2025-03-19T16:11:37",
"upload_time_iso_8601": "2025-03-19T16:11:37.626263Z",
"url": "https://files.pythonhosted.org/packages/e9/50/ab44ed1065b4778ab89ca2bbc790c9cc924249f9ce141dc2cc0c4fb30aaa/mapfile_parser-2.7.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d69e7c7b0add27bb1623db54cb95609e634316eb5c6364e705855f6c44ccb75f",
"md5": "e5de34c559b671d2b39b7559212359c7",
"sha256": "a814d4173a00cb5c240966f1b18e96acda7e17d1521b6c4a2fc312da8743eebc"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "e5de34c559b671d2b39b7559212359c7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1093223,
"upload_time": "2025-03-19T16:11:54",
"upload_time_iso_8601": "2025-03-19T16:11:54.884611Z",
"url": "https://files.pythonhosted.org/packages/d6/9e/7c7b0add27bb1623db54cb95609e634316eb5c6364e705855f6c44ccb75f/mapfile_parser-2.7.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "af4d349a798d93f79c28d182e3aed448435a9023436ab601a773e43a9dbee773",
"md5": "c77ace0ccb3182be35529ce70ba84ac5",
"sha256": "a177d6f3a5d83f4f2029d81de8ee3bdaa54f449886ecf1da8ee3df29c3f6a50e"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "c77ace0ccb3182be35529ce70ba84ac5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1223404,
"upload_time": "2025-03-19T16:12:09",
"upload_time_iso_8601": "2025-03-19T16:12:09.808709Z",
"url": "https://files.pythonhosted.org/packages/af/4d/349a798d93f79c28d182e3aed448435a9023436ab601a773e43a9dbee773/mapfile_parser-2.7.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fe26ced600920c05f6b63eecf590f8370969413556b16f812f2161a0d2504347",
"md5": "a870360fd12f0dbab5bce1a803412297",
"sha256": "47ac77d6171e70b1bc7759d71c053e9d22a17105a6045a6f93b726becfe77dd8"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "a870360fd12f0dbab5bce1a803412297",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1278787,
"upload_time": "2025-03-19T16:12:27",
"upload_time_iso_8601": "2025-03-19T16:12:27.919029Z",
"url": "https://files.pythonhosted.org/packages/fe/26/ced600920c05f6b63eecf590f8370969413556b16f812f2161a0d2504347/mapfile_parser-2.7.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "559ac62c211a0f6d79abf27a89c0704ebda81f1a1971340ba358946840bc74f2",
"md5": "61a791d4f69798fbd81734d2e388eab7",
"sha256": "4690be0548951076871190e3687b87af478c43a3eff05442e37f8fadcad3f844"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp313-cp313t-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "61a791d4f69798fbd81734d2e388eab7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1305700,
"upload_time": "2025-03-19T16:13:19",
"upload_time_iso_8601": "2025-03-19T16:13:19.569431Z",
"url": "https://files.pythonhosted.org/packages/55/9a/c62c211a0f6d79abf27a89c0704ebda81f1a1971340ba358946840bc74f2/mapfile_parser-2.7.4-cp313-cp313t-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "718ab4a0ee3ab9a671acf4b99d7eeee325ea4e707956895fec7601c30a2b76a9",
"md5": "6af001fbfb684df01a67818c9047a71e",
"sha256": "c3d186fbaa65bd80402e8fc61596373fd4ba90cb8937bc5348352031870001dc"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp313-cp313t-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "6af001fbfb684df01a67818c9047a71e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1356018,
"upload_time": "2025-03-19T16:13:34",
"upload_time_iso_8601": "2025-03-19T16:13:34.709129Z",
"url": "https://files.pythonhosted.org/packages/71/8a/b4a0ee3ab9a671acf4b99d7eeee325ea4e707956895fec7601c30a2b76a9/mapfile_parser-2.7.4-cp313-cp313t-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f040b3628cb6e607224f06d278b1ef93817a65d77b80f3b781851bbaa3625d52",
"md5": "b2d24c05b374069ee46a77bc28fd641e",
"sha256": "a717f6a4d64b8b175a532a3a56bcb3804457e617fdbba5d9e8608a62ace3f267"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp313-cp313t-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "b2d24c05b374069ee46a77bc28fd641e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1324322,
"upload_time": "2025-03-19T16:13:52",
"upload_time_iso_8601": "2025-03-19T16:13:52.805183Z",
"url": "https://files.pythonhosted.org/packages/f0/40/b3628cb6e607224f06d278b1ef93817a65d77b80f3b781851bbaa3625d52/mapfile_parser-2.7.4-cp313-cp313t-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f2b93952438d4d887db75d10365eaee71b1d552f8fb411ea7cbce288a5974fdb",
"md5": "c4e3c6b3d833e36ae20e8f180b7db993",
"sha256": "4d867866ac0265029c4f76dde5251dd419b4dba646e0ee6ecf84ec2af62c768a"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp313-cp313t-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "c4e3c6b3d833e36ae20e8f180b7db993",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1358897,
"upload_time": "2025-03-19T16:14:09",
"upload_time_iso_8601": "2025-03-19T16:14:09.199758Z",
"url": "https://files.pythonhosted.org/packages/f2/b9/3952438d4d887db75d10365eaee71b1d552f8fb411ea7cbce288a5974fdb/mapfile_parser-2.7.4-cp313-cp313t-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "794bbac7c4d1f55921f17314ac8737308ce267b26959391f28f5269ca5014209",
"md5": "fa25de4e83615d77ad0d74dc120ff3af",
"sha256": "cbaf6024a54f30ce3946c39a358751d80ab3676882699350a20270fa07c4711b"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "fa25de4e83615d77ad0d74dc120ff3af",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 832198,
"upload_time": "2025-03-19T16:14:33",
"upload_time_iso_8601": "2025-03-19T16:14:33.973571Z",
"url": "https://files.pythonhosted.org/packages/79/4b/bac7c4d1f55921f17314ac8737308ce267b26959391f28f5269ca5014209/mapfile_parser-2.7.4-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "855377c097de82b06fffbb55bbb08d5300f739fab30231e2914d0abde9430130",
"md5": "5d91a59f0baf7a323f28861a04416462",
"sha256": "6747c6ebd62959b2590048f1e5dd2098fe79404f34385300c8b0a62bb45be2d3"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "5d91a59f0baf7a323f28861a04416462",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 912836,
"upload_time": "2025-03-19T16:14:24",
"upload_time_iso_8601": "2025-03-19T16:14:24.552306Z",
"url": "https://files.pythonhosted.org/packages/85/53/77c097de82b06fffbb55bbb08d5300f739fab30231e2914d0abde9430130/mapfile_parser-2.7.4-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8e49c5725255fabc011af322020897aecc51b1a485c1a6864b355733572afe40",
"md5": "51a7633ad23ee35438d102d87d14c5d9",
"sha256": "bd2cca764d978526927d0a74bd47f5fbaea82ba7d54c94bfec43866d4a8dbed3"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "51a7633ad23ee35438d102d87d14c5d9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1133773,
"upload_time": "2025-03-19T16:11:39",
"upload_time_iso_8601": "2025-03-19T16:11:39.559441Z",
"url": "https://files.pythonhosted.org/packages/8e/49/c5725255fabc011af322020897aecc51b1a485c1a6864b355733572afe40/mapfile_parser-2.7.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9d239f37d2530b1b0413e8ab214eaf6fc5b1cdf7c9093a3c1e3ecfd6ef984921",
"md5": "ff3827b8895456cc45cb02c2fbe23f53",
"sha256": "31e74bd45f13e9bf5ad315ed9da2c329067db126030b4f3f4c4ada381cc82ae1"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "ff3827b8895456cc45cb02c2fbe23f53",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1096470,
"upload_time": "2025-03-19T16:11:56",
"upload_time_iso_8601": "2025-03-19T16:11:56.403261Z",
"url": "https://files.pythonhosted.org/packages/9d/23/9f37d2530b1b0413e8ab214eaf6fc5b1cdf7c9093a3c1e3ecfd6ef984921/mapfile_parser-2.7.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7bce098df0d296f5c4c05004bdbdb3479a6e941a1a228da8fd5c93dbd9ecd4fa",
"md5": "343b746614846c36e96d1bc4794f9c89",
"sha256": "c160a4e251c624d6916239a0fee27cc9b7ba5744fc1b34c9fd499a8f93c6167a"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "343b746614846c36e96d1bc4794f9c89",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1225692,
"upload_time": "2025-03-19T16:12:11",
"upload_time_iso_8601": "2025-03-19T16:12:11.833521Z",
"url": "https://files.pythonhosted.org/packages/7b/ce/098df0d296f5c4c05004bdbdb3479a6e941a1a228da8fd5c93dbd9ecd4fa/mapfile_parser-2.7.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "abe6488df720d16b2576b6765e01e5f04869b9eddfad730b2b31592a75febb95",
"md5": "e3209dc433909ef6b51c66e51e28ecfc",
"sha256": "041b7cbaa26975e8b9ebcafd902acf38dc4a7635e5f70f2ad13878afe6ff597c"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "e3209dc433909ef6b51c66e51e28ecfc",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1286957,
"upload_time": "2025-03-19T16:12:29",
"upload_time_iso_8601": "2025-03-19T16:12:29.575955Z",
"url": "https://files.pythonhosted.org/packages/ab/e6/488df720d16b2576b6765e01e5f04869b9eddfad730b2b31592a75febb95/mapfile_parser-2.7.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8fd86bc5fbb007849fcde56d8e2311325acb686ef90b722fa87ecbc0a1471e52",
"md5": "6940794735676dc093c45a3bd5d2a008",
"sha256": "bdbd2a5377ff592bf5609f88c6b36ebef4200038bafac0b8c8334cc7bbf35cea"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6940794735676dc093c45a3bd5d2a008",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1188716,
"upload_time": "2025-03-19T16:12:57",
"upload_time_iso_8601": "2025-03-19T16:12:57.339475Z",
"url": "https://files.pythonhosted.org/packages/8f/d8/6bc5fbb007849fcde56d8e2311325acb686ef90b722fa87ecbc0a1471e52/mapfile_parser-2.7.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "98bee076aa9669323ca438f81aee8aac2185aabe1fc659c34a1b4c5185bf486d",
"md5": "639fff0bc471bb49f51b71ce3375bbe4",
"sha256": "72f544d61a774618ff6cc2788a667e1b03f5f53d0f3fda345615122f1488c925"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "639fff0bc471bb49f51b71ce3375bbe4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1196957,
"upload_time": "2025-03-19T16:12:45",
"upload_time_iso_8601": "2025-03-19T16:12:45.746952Z",
"url": "https://files.pythonhosted.org/packages/98/be/e076aa9669323ca438f81aee8aac2185aabe1fc659c34a1b4c5185bf486d/mapfile_parser-2.7.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "17aaa333040f87fb05ec785b9bc0c71280d756b2d60a969d83cdf83e32eb53d7",
"md5": "2f7de540835bfdc0d2cee76237f0dac8",
"sha256": "9ab863202713f20a4ba7a924ab68faae0df167997cc265f28eac9eb6a128ccd5"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "2f7de540835bfdc0d2cee76237f0dac8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1309851,
"upload_time": "2025-03-19T16:13:21",
"upload_time_iso_8601": "2025-03-19T16:13:21.070709Z",
"url": "https://files.pythonhosted.org/packages/17/aa/a333040f87fb05ec785b9bc0c71280d756b2d60a969d83cdf83e32eb53d7/mapfile_parser-2.7.4-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d565da6332ad0e9fd7ccd035bef5541ab273da9d9faee21788fb40687c5204cc",
"md5": "496796e8fd68340155d2027af26d5730",
"sha256": "ea53b5c47b0dbeea2960df763f86188616178de33ec4608b0c32be2bedc04f6e"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp39-cp39-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "496796e8fd68340155d2027af26d5730",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1359425,
"upload_time": "2025-03-19T16:13:36",
"upload_time_iso_8601": "2025-03-19T16:13:36.714448Z",
"url": "https://files.pythonhosted.org/packages/d5/65/da6332ad0e9fd7ccd035bef5541ab273da9d9faee21788fb40687c5204cc/mapfile_parser-2.7.4-cp39-cp39-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "39cd4ca09e8bcd4e65558e236fbe47bb190de68c13e6f18f631983eadf16efa6",
"md5": "bec1a176633aea71bb5f9bcd1cda4e4b",
"sha256": "6885f9b422b12e89d673d07f8d07a3a0b63b142e9df3112c57e8c0108a523f8e"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "bec1a176633aea71bb5f9bcd1cda4e4b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1329571,
"upload_time": "2025-03-19T16:13:54",
"upload_time_iso_8601": "2025-03-19T16:13:54.825276Z",
"url": "https://files.pythonhosted.org/packages/39/cd/4ca09e8bcd4e65558e236fbe47bb190de68c13e6f18f631983eadf16efa6/mapfile_parser-2.7.4-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8f23f72a391aa562c29cf6d055260e270cf496eef3a505ba0baaa8284288a724",
"md5": "bd13381b5543be17bfe1359b7404cb68",
"sha256": "fe477529b482b8effbd5b24f252accf0d9203977b5fc1125f749fcc944e478eb"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "bd13381b5543be17bfe1359b7404cb68",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1359860,
"upload_time": "2025-03-19T16:14:11",
"upload_time_iso_8601": "2025-03-19T16:14:11.365531Z",
"url": "https://files.pythonhosted.org/packages/8f/23/f72a391aa562c29cf6d055260e270cf496eef3a505ba0baaa8284288a724/mapfile_parser-2.7.4-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "42fba8cb8134bb2e34f54a90b34c9d4fd1944413e9d8346456a73df682947833",
"md5": "b71ed569bd94dc8c4af4bda01efb9e23",
"sha256": "fd3f2f96fc8cebaac7bd3051cb1e12e40d1919fe171611d75fa371897fe617a8"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "b71ed569bd94dc8c4af4bda01efb9e23",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 836138,
"upload_time": "2025-03-19T16:14:35",
"upload_time_iso_8601": "2025-03-19T16:14:35.646501Z",
"url": "https://files.pythonhosted.org/packages/42/fb/a8cb8134bb2e34f54a90b34c9d4fd1944413e9d8346456a73df682947833/mapfile_parser-2.7.4-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ca608a13a8c66c52eb9fd880f4d63bf18bba433bbf7fdb597e2109de39f57511",
"md5": "77c2120134c302fcc4fe34f62bf5fa74",
"sha256": "f9f73556c13de424c29c1117be1c1028b8e59052d1f5c65b7012f574c0babb16"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "77c2120134c302fcc4fe34f62bf5fa74",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 911383,
"upload_time": "2025-03-19T16:14:26",
"upload_time_iso_8601": "2025-03-19T16:14:26.575159Z",
"url": "https://files.pythonhosted.org/packages/ca/60/8a13a8c66c52eb9fd880f4d63bf18bba433bbf7fdb597e2109de39f57511/mapfile_parser-2.7.4-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "12d0f456b26b58c913a1f2d469f2dae7b537a7cc409ba77185a02bfa7458685f",
"md5": "cc1fcd4cb55b7c5e7191413b1f5ab9d8",
"sha256": "01d4e55d9f8902aa5f4607b019e217f7e6a91fbf27586c53025e8dbdad0b90f1"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "cc1fcd4cb55b7c5e7191413b1f5ab9d8",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 1134313,
"upload_time": "2025-03-19T16:11:41",
"upload_time_iso_8601": "2025-03-19T16:11:41.519229Z",
"url": "https://files.pythonhosted.org/packages/12/d0/f456b26b58c913a1f2d469f2dae7b537a7cc409ba77185a02bfa7458685f/mapfile_parser-2.7.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cfc1bc3a751c3f8253040ae86dea2b0ed4483b3ec6f8d1d4cf4dbf3cf3be4f26",
"md5": "aea57273cd95da1598772d3ad2df7c8e",
"sha256": "db7c13fdada0dcf89fc7bcfc87a5c1978abfb2236621011e1a54893d36d9f184"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "aea57273cd95da1598772d3ad2df7c8e",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 1096670,
"upload_time": "2025-03-19T16:11:57",
"upload_time_iso_8601": "2025-03-19T16:11:57.914483Z",
"url": "https://files.pythonhosted.org/packages/cf/c1/bc3a751c3f8253040ae86dea2b0ed4483b3ec6f8d1d4cf4dbf3cf3be4f26/mapfile_parser-2.7.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d0990451e9e60214e1dbe988f5f97aae6a2f51828f7a4bc07e38483e79b35cf7",
"md5": "04692ca9ab1d038138856ba4a1a4217f",
"sha256": "b1c4ffbf9c0ba92175c356cd5c627e395f03b4aa99b8e06d05b70406ac260bae"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "04692ca9ab1d038138856ba4a1a4217f",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 1226524,
"upload_time": "2025-03-19T16:12:13",
"upload_time_iso_8601": "2025-03-19T16:12:13.957426Z",
"url": "https://files.pythonhosted.org/packages/d0/99/0451e9e60214e1dbe988f5f97aae6a2f51828f7a4bc07e38483e79b35cf7/mapfile_parser-2.7.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4288f6359747e497dfc8ab449454911214ee9d5926f1b611a160ec5975bcb88b",
"md5": "6a29ff1924f2ea9af4717ede69bf1906",
"sha256": "2c3a6ee83f07b21bae834d1a5f435a71591bc7e1814bbb77657064ed9f44eb42"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "6a29ff1924f2ea9af4717ede69bf1906",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 1284894,
"upload_time": "2025-03-19T16:12:32",
"upload_time_iso_8601": "2025-03-19T16:12:32.021419Z",
"url": "https://files.pythonhosted.org/packages/42/88/f6359747e497dfc8ab449454911214ee9d5926f1b611a160ec5975bcb88b/mapfile_parser-2.7.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e3a535b15dd137d36ef7c91509c39d3e35a2601c829da9aa9d32d20a79070621",
"md5": "ed3d53ea8f64c2e4c88506815b838617",
"sha256": "80b90f9f68b33c485eaf638d87a917ef885c4fff4f2edf16303096a6967ca822"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ed3d53ea8f64c2e4c88506815b838617",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 1189708,
"upload_time": "2025-03-19T16:12:59",
"upload_time_iso_8601": "2025-03-19T16:12:59.369711Z",
"url": "https://files.pythonhosted.org/packages/e3/a5/35b15dd137d36ef7c91509c39d3e35a2601c829da9aa9d32d20a79070621/mapfile_parser-2.7.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fc5787c7c7ab20814ce28b2f6179ec0f57f9edd5f876c913f7bfd0293dd0f129",
"md5": "10b097bdf21451e61c5fff2b63f1a33d",
"sha256": "1b0f40e1fcb335600acc6dc664a7c391cda1fa956967100e9f07d7e762732b6b"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "10b097bdf21451e61c5fff2b63f1a33d",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 1197216,
"upload_time": "2025-03-19T16:12:47",
"upload_time_iso_8601": "2025-03-19T16:12:47.380359Z",
"url": "https://files.pythonhosted.org/packages/fc/57/87c7c7ab20814ce28b2f6179ec0f57f9edd5f876c913f7bfd0293dd0f129/mapfile_parser-2.7.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4a9d5919b4bd9b022ef0a33ab6765a0855409612c3f7d8597a26f03e69c12e6c",
"md5": "1e3690967c4faf01f2525ea3f3836225",
"sha256": "27fea31441bf3aa871712dd9a689b950288bc9e16e1036d36632c487eedc3dec"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "1e3690967c4faf01f2525ea3f3836225",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 1310729,
"upload_time": "2025-03-19T16:13:22",
"upload_time_iso_8601": "2025-03-19T16:13:22.776133Z",
"url": "https://files.pythonhosted.org/packages/4a/9d/5919b4bd9b022ef0a33ab6765a0855409612c3f7d8597a26f03e69c12e6c/mapfile_parser-2.7.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6b6def42f29dc2ea9a61433c46e3d63c05139f0e44a43ac62a885612635d2e0c",
"md5": "7949a5bc66c12ae2f6d4da7c788fe374",
"sha256": "7f187d90ff7a8519269b7e7678e19bf80231fa0011103be3b1fa7433f262b48c"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "7949a5bc66c12ae2f6d4da7c788fe374",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 1360277,
"upload_time": "2025-03-19T16:13:38",
"upload_time_iso_8601": "2025-03-19T16:13:38.602374Z",
"url": "https://files.pythonhosted.org/packages/6b/6d/ef42f29dc2ea9a61433c46e3d63c05139f0e44a43ac62a885612635d2e0c/mapfile_parser-2.7.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6c9fafb11efac46a6b7565ad03f9b8e82f79d801169dad2d16307372560db438",
"md5": "3802bbfcfb316bc7f8ab42f4302ccb06",
"sha256": "e1c452559c57e7de590c1d93a3b39bd1b77584a0f006d1969f2350921c078957"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "3802bbfcfb316bc7f8ab42f4302ccb06",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 1330345,
"upload_time": "2025-03-19T16:13:56",
"upload_time_iso_8601": "2025-03-19T16:13:56.871919Z",
"url": "https://files.pythonhosted.org/packages/6c/9f/afb11efac46a6b7565ad03f9b8e82f79d801169dad2d16307372560db438/mapfile_parser-2.7.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0773409de05527ef38773677eb8e1594ff65d109212b946c2a5e3156dc9b8064",
"md5": "d6c7b8cf3e1cbe30287a47fe14a4322b",
"sha256": "ca51e666370a613b0dd03cb16bba169fa2f73ad7c0092cd1b1c16ec331db228c"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "d6c7b8cf3e1cbe30287a47fe14a4322b",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 1360521,
"upload_time": "2025-03-19T16:14:13",
"upload_time_iso_8601": "2025-03-19T16:14:13.079153Z",
"url": "https://files.pythonhosted.org/packages/07/73/409de05527ef38773677eb8e1594ff65d109212b946c2a5e3156dc9b8064/mapfile_parser-2.7.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "13295a87443194e025713089b64958f5a0653a0473cea068d1017aa690c706e4",
"md5": "a582286e8e7bc7d2782c7d046f8a8528",
"sha256": "5e94e3ba050af5e8a9ec88d43805e50d0762755372f2731084da295c17b82d0c"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "a582286e8e7bc7d2782c7d046f8a8528",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 1134184,
"upload_time": "2025-03-19T16:11:43",
"upload_time_iso_8601": "2025-03-19T16:11:43.384708Z",
"url": "https://files.pythonhosted.org/packages/13/29/5a87443194e025713089b64958f5a0653a0473cea068d1017aa690c706e4/mapfile_parser-2.7.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "71e44558ec2f679201d8a67c7084402ab91d472d298f35aeb763b427a03e2a07",
"md5": "949309e498a59918f28aa7200d441e22",
"sha256": "ce6064cb4c8822b7b9267d0ce6bbf023f0758e0a4e5e95885d806f0001fdfc05"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "949309e498a59918f28aa7200d441e22",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 1096726,
"upload_time": "2025-03-19T16:11:59",
"upload_time_iso_8601": "2025-03-19T16:11:59.465034Z",
"url": "https://files.pythonhosted.org/packages/71/e4/4558ec2f679201d8a67c7084402ab91d472d298f35aeb763b427a03e2a07/mapfile_parser-2.7.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1887cd49c0d07c466cc32bba2f06d22290e8465b6028b2f91ce45a72268b1ffc",
"md5": "0d3646b0f09be51057985f391641e632",
"sha256": "222fb5dc086c292f79b21df38d836d9a6e2ea6a1cb1f92de88fb4ff609bfe7d2"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "0d3646b0f09be51057985f391641e632",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 1226546,
"upload_time": "2025-03-19T16:12:15",
"upload_time_iso_8601": "2025-03-19T16:12:15.566082Z",
"url": "https://files.pythonhosted.org/packages/18/87/cd49c0d07c466cc32bba2f06d22290e8465b6028b2f91ce45a72268b1ffc/mapfile_parser-2.7.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2cb19d2cb2b82d007d0d62605f8ad54904d565d9a6d5fb4bb5f7ee1fd922a1e1",
"md5": "6602144f9682d25817d91cbd97c0755b",
"sha256": "a27cd000b7f3e8ec92c78cfaefeb74867934fe80e156cd9453c8c67b015a6764"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "6602144f9682d25817d91cbd97c0755b",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 1284178,
"upload_time": "2025-03-19T16:12:34",
"upload_time_iso_8601": "2025-03-19T16:12:34.114685Z",
"url": "https://files.pythonhosted.org/packages/2c/b1/9d2cb2b82d007d0d62605f8ad54904d565d9a6d5fb4bb5f7ee1fd922a1e1/mapfile_parser-2.7.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3cdc394e986d7f871386e2735c7d0c09bdbc20ce0acf4c39a776ef018f55fd8d",
"md5": "edac76b763a8a020ef9f88549cd6935f",
"sha256": "be82627423fd75f509cf5ff296888c93037708067bc4ad9aeb369a019a51490d"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "edac76b763a8a020ef9f88549cd6935f",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 1189726,
"upload_time": "2025-03-19T16:13:01",
"upload_time_iso_8601": "2025-03-19T16:13:01.303179Z",
"url": "https://files.pythonhosted.org/packages/3c/dc/394e986d7f871386e2735c7d0c09bdbc20ce0acf4c39a776ef018f55fd8d/mapfile_parser-2.7.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "663fa97138a3738deaebf107c07f5b8a55c6c016bf1091d3b87471252b8becaa",
"md5": "94d1668884d06181b01e6a4b7adfba9a",
"sha256": "f629f1c655d8fe794d3372bb0d4b3b8757f28a30c130ea93fb9ee4b0cd657f30"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "94d1668884d06181b01e6a4b7adfba9a",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 1197363,
"upload_time": "2025-03-19T16:12:48",
"upload_time_iso_8601": "2025-03-19T16:12:48.950676Z",
"url": "https://files.pythonhosted.org/packages/66/3f/a97138a3738deaebf107c07f5b8a55c6c016bf1091d3b87471252b8becaa/mapfile_parser-2.7.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "44786cb5123aa05d51b4039f9a092f34d4348b3468f1888bcc195b6627691f92",
"md5": "d9d8b6728249b4cb7c98e59b232c76fd",
"sha256": "0ee14c17bea6a63a0c1979fd5883b6da7be28a53195207839aa24da99a2c5634"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "d9d8b6728249b4cb7c98e59b232c76fd",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 1310380,
"upload_time": "2025-03-19T16:13:24",
"upload_time_iso_8601": "2025-03-19T16:13:24.495668Z",
"url": "https://files.pythonhosted.org/packages/44/78/6cb5123aa05d51b4039f9a092f34d4348b3468f1888bcc195b6627691f92/mapfile_parser-2.7.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "52cb0eac003636217ded81a74b8111efac999253d9ec1c6efdedafd1e273b26f",
"md5": "bcbcb2b942868b3c2cf7442601d2b9d9",
"sha256": "52437268b60d98a452e470ee8916be52c8bc0cb6adb62b87fa5f6c6d2b749570"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "bcbcb2b942868b3c2cf7442601d2b9d9",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 1360392,
"upload_time": "2025-03-19T16:13:40",
"upload_time_iso_8601": "2025-03-19T16:13:40.894776Z",
"url": "https://files.pythonhosted.org/packages/52/cb/0eac003636217ded81a74b8111efac999253d9ec1c6efdedafd1e273b26f/mapfile_parser-2.7.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "63c395750d29b288aa551948a5f70213ec070a83cd56da87492891f268629412",
"md5": "eb47c64a6501c9756a559956e87a593e",
"sha256": "e725d3d0ad19033e6e450fe35f36d3f0083174d19c2515b9f0a85d949f8dd19a"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "eb47c64a6501c9756a559956e87a593e",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 1330530,
"upload_time": "2025-03-19T16:13:58",
"upload_time_iso_8601": "2025-03-19T16:13:58.656432Z",
"url": "https://files.pythonhosted.org/packages/63/c3/95750d29b288aa551948a5f70213ec070a83cd56da87492891f268629412/mapfile_parser-2.7.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "51060195366d75b12efa5f14f291775cc3eb741a31ad6de3acf7c40824ea9f64",
"md5": "8f7992ca7d576ea6b86bba3fe4c18058",
"sha256": "6936659d7444a862b2a1f9c78d13d8a6ae15dc351e3c040816ed6d98b707b60c"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "8f7992ca7d576ea6b86bba3fe4c18058",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 1360367,
"upload_time": "2025-03-19T16:14:14",
"upload_time_iso_8601": "2025-03-19T16:14:14.736614Z",
"url": "https://files.pythonhosted.org/packages/51/06/0195366d75b12efa5f14f291775cc3eb741a31ad6de3acf7c40824ea9f64/mapfile_parser-2.7.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0dda8b24f033393d7fdab0c8fea352794e762718e96a1bf37bc70e749d7cce4b",
"md5": "3bdf9f9546102f3dd84680891d07a850",
"sha256": "75803693e6170eeb018c5ec150e452d4806c72cca7acc33185aa4ec6c42437dc"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3bdf9f9546102f3dd84680891d07a850",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 1134004,
"upload_time": "2025-03-19T16:11:45",
"upload_time_iso_8601": "2025-03-19T16:11:45.492179Z",
"url": "https://files.pythonhosted.org/packages/0d/da/8b24f033393d7fdab0c8fea352794e762718e96a1bf37bc70e749d7cce4b/mapfile_parser-2.7.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b4a1df3a69c5a58c4600de8aa9daaeee76562c5c9fdabe581b5395bc37734dfe",
"md5": "29518b9d6a8afcbfb44e7f4d481477d5",
"sha256": "1e8493a359936f8a97aa6c790dca0805da2ba739d6c89c7166fc223709753979"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "29518b9d6a8afcbfb44e7f4d481477d5",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 1097144,
"upload_time": "2025-03-19T16:12:01",
"upload_time_iso_8601": "2025-03-19T16:12:01.367059Z",
"url": "https://files.pythonhosted.org/packages/b4/a1/df3a69c5a58c4600de8aa9daaeee76562c5c9fdabe581b5395bc37734dfe/mapfile_parser-2.7.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "406cd073fc3ffa7bb4b5044cf30d09fad21ba6fcb2a796653005c609e149f207",
"md5": "2c231f0ce3c81a8685fbf1d984f1ee47",
"sha256": "5319f78d4de8dd4c227afef55d85bc983a6fe3828c8fcd8b3d1fb50a0a30ab22"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "2c231f0ce3c81a8685fbf1d984f1ee47",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 1226007,
"upload_time": "2025-03-19T16:12:17",
"upload_time_iso_8601": "2025-03-19T16:12:17.094031Z",
"url": "https://files.pythonhosted.org/packages/40/6c/d073fc3ffa7bb4b5044cf30d09fad21ba6fcb2a796653005c609e149f207/mapfile_parser-2.7.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "104da910427d16470c62ebafeec13a5488959950f25d58f6e80ec8252a9344a1",
"md5": "8080f281fbe2cbbf74a77366f33973f1",
"sha256": "8f37d3df900c3ca39bd3f40a8a9b30ab84e8806dd825dddddab4b14b789ec609"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "8080f281fbe2cbbf74a77366f33973f1",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 1285560,
"upload_time": "2025-03-19T16:12:36",
"upload_time_iso_8601": "2025-03-19T16:12:36.352512Z",
"url": "https://files.pythonhosted.org/packages/10/4d/a910427d16470c62ebafeec13a5488959950f25d58f6e80ec8252a9344a1/mapfile_parser-2.7.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f78d54e4757e23bc45a8899e15b67006ba246fc888df3466d0e05440436ebeaf",
"md5": "bd0f698b8e8c75bafedac533dae8dd6e",
"sha256": "a1b6067337c01005b50023f86b5627d0f781277856d5be1afe496ebde73e7a1c"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "bd0f698b8e8c75bafedac533dae8dd6e",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 1310386,
"upload_time": "2025-03-19T16:13:26",
"upload_time_iso_8601": "2025-03-19T16:13:26.260176Z",
"url": "https://files.pythonhosted.org/packages/f7/8d/54e4757e23bc45a8899e15b67006ba246fc888df3466d0e05440436ebeaf/mapfile_parser-2.7.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8125c1e66673776db5735a5cd50d6183769ab36bba14fc6604a25138ea1b441b",
"md5": "3ac72fad6cce2980d0f07b3a5f44b69d",
"sha256": "44c0f22895c47511065a50a9eaaa07b8e40af892f265ce3b2535043ac0dbf005"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "3ac72fad6cce2980d0f07b3a5f44b69d",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 1360323,
"upload_time": "2025-03-19T16:13:43",
"upload_time_iso_8601": "2025-03-19T16:13:43.493265Z",
"url": "https://files.pythonhosted.org/packages/81/25/c1e66673776db5735a5cd50d6183769ab36bba14fc6604a25138ea1b441b/mapfile_parser-2.7.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1f39857b560225839cc16134fd6311a15f0178ea1fce81c2b3906d8f3e7a446a",
"md5": "df5e28676b8a86d31731132ba15528a9",
"sha256": "7ef9f39df6da5f261b383c725e86e53b82999178d4bbf71a09eb0c9c4c956796"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "df5e28676b8a86d31731132ba15528a9",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 1330166,
"upload_time": "2025-03-19T16:14:00",
"upload_time_iso_8601": "2025-03-19T16:14:00.813250Z",
"url": "https://files.pythonhosted.org/packages/1f/39/857b560225839cc16134fd6311a15f0178ea1fce81c2b3906d8f3e7a446a/mapfile_parser-2.7.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "94d9d74837a9ee7525049d7627709ef2b7bfb5178cfe704554ca0e3c58ec9825",
"md5": "adc79e2a9b930f2c20c6188a90c10574",
"sha256": "f7df54b6326994dd2b14d5d086f0678e177dd6e76eee8e6f37e759093e636178"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "adc79e2a9b930f2c20c6188a90c10574",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 1360136,
"upload_time": "2025-03-19T16:14:16",
"upload_time_iso_8601": "2025-03-19T16:14:16.314651Z",
"url": "https://files.pythonhosted.org/packages/94/d9/d74837a9ee7525049d7627709ef2b7bfb5178cfe704554ca0e3c58ec9825/mapfile_parser-2.7.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c573568318ea49a0eada42ad028d74068906d290763d37cc263a047cb7cafbfe",
"md5": "d9fffc31695e8dec43c4818d8821d5e4",
"sha256": "aafc469bdf6053ffe7ddb911765a0c198fc25547b8b7c00d898390ddcec2e0f8"
},
"downloads": -1,
"filename": "mapfile_parser-2.7.4.tar.gz",
"has_sig": false,
"md5_digest": "d9fffc31695e8dec43c4818d8821d5e4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 45986,
"upload_time": "2025-03-19T16:14:17",
"upload_time_iso_8601": "2025-03-19T16:14:17.711683Z",
"url": "https://files.pythonhosted.org/packages/c5/73/568318ea49a0eada42ad028d74068906d290763d37cc263a047cb7cafbfe/mapfile_parser-2.7.4.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-03-19 16:14:17",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "Decompollaborate",
"github_project": "mapfile_parser",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [
{
"name": "requests",
"specs": []
}
],
"lcname": "mapfile-parser"
}