shareloc


Nameshareloc JSON
Version 0.2.7 PyPI version JSON
download
home_pagehttps://shareloc.readthedocs.io/
SummarySimple geometry library
upload_time2025-03-03 12:09:45
maintainerNone
docs_urlNone
authorCNES
requires_python>=3.9
licenseApache License 2.0
keywords shareloc cars 3d dem pandora photogrammetry
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
             
<div align="center">
  <a href="https://github.com/CNES/shareloc"><img src="docs/source/images/shareloc_picto.svg" alt="Shareloc" title="Shareloc"  width="20%"></a>

<h4>Shareloc, a simple remote sensing geometric library</h4>

[![Python](https://img.shields.io/badge/python-v3.9+-blue.svg)](https://www.python.org/downloads/release/python-390/)
[![Contributions welcome](https://img.shields.io/badge/contributions-welcome-orange.svg)](CONTRIBUTING.md)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0/)
[![Documentation](https://readthedocs.org/projects/shareloc/badge/?version=latest)](https://shareloc.readthedocs.io/?badge=latest)

<p>
  <a href="#overview">Overview</a> .
  <a href="#why-shareloc">Why Shareloc</a> .
  <a href="#quick-start">Quick Start</a> .
  <a href="#documentation">Documentation</a> .
  <a href="#contribution">Contribution</a> .
</p>
</div>

## Overview

Shareloc is an open source remote sensing geolocation library.

It performs image coordinates projections between sensor and ground and vice versa.
Shareloc handles RPC models and direct location grids.

<div align="center">

Direct localization at constant elevation |  Direct localization on DEM
:-------------------------:|:-------------------------:
<img src="docs/source/images/shareloc_loc_ellipsoid.png" alt="drawing" width="300"/> |  <img src="docs/source/images/shareloc_loc_dem.png" alt="drawing" width="300"/>

</div>

Shareloc main functions :

 * Direct/inverse localization at constant elevation (ellipsoidal earth model).
 * Direct localization on 2.5D DEM (w.r.t ellipsoid or geoid).
 * Line of sight triangulation.
 * Rectification grid creation.
 * Rectification grid interpolation.

## Why Shareloc

Shareloc development has been motivated by the need of a full python component for CNES studies and the need of an underlying geometrical component for <a href="https://github.com/CNES/cars">CARS</a>.


## Quick start

### Installation

Shareloc can be installed in a [virtualenv](https://docs.python.org/3/library/venv) from Pypi repository:

```
python -m venv shareloc-venv
source shareloc-venv/bin/activate
pip install --upgrade pip
pip install shareloc
```

For developers, Shareloc can be installed from source in a [virtualenv](https://docs.python.org/3/library/venv) using the following commands:

```
git clone https://github.com/CNES/shareloc
cd shareloc
make install
source venv/bin/activate # to go in installed dev environment
```

Dependencies : **git**, **make**

### Import

To test the import of the library:

```
python3
>>> import shareloc
```

And go to [Getting started](https://shareloc.readthedocs.io/en/latest/getting_started.html) in [Shareloc Documentation](https://shareloc.readthedocs.io/) for an example.


## Documentation

Go to [Shareloc Main Documentation](https://shareloc.readthedocs.io/)

## Contribution

To do a bug report or a contribution, see the [**Contribution Guide**](CONTRIBUTING.md).
For project evolution, see [**Changelog**](CHANGELOG.md)

            

Raw data

            {
    "_id": null,
    "home_page": "https://shareloc.readthedocs.io/",
    "name": "shareloc",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "shareloc, cars, 3D, DEM, pandora, photogrammetry",
    "author": "CNES",
    "author_email": "cars@cnes.fr",
    "download_url": "https://files.pythonhosted.org/packages/6c/b1/97a49d459155883c3429977126f83f2a396a8a999126e25f711733c81894/shareloc-0.2.7.tar.gz",
    "platform": "any",
    "description": " \n<div align=\"center\">\n  <a href=\"https://github.com/CNES/shareloc\"><img src=\"docs/source/images/shareloc_picto.svg\" alt=\"Shareloc\" title=\"Shareloc\"  width=\"20%\"></a>\n\n<h4>Shareloc, a simple remote sensing geometric library</h4>\n\n[![Python](https://img.shields.io/badge/python-v3.9+-blue.svg)](https://www.python.org/downloads/release/python-390/)\n[![Contributions welcome](https://img.shields.io/badge/contributions-welcome-orange.svg)](CONTRIBUTING.md)\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0/)\n[![Documentation](https://readthedocs.org/projects/shareloc/badge/?version=latest)](https://shareloc.readthedocs.io/?badge=latest)\n\n<p>\n  <a href=\"#overview\">Overview</a> .\n  <a href=\"#why-shareloc\">Why Shareloc</a> .\n  <a href=\"#quick-start\">Quick Start</a> .\n  <a href=\"#documentation\">Documentation</a> .\n  <a href=\"#contribution\">Contribution</a> .\n</p>\n</div>\n\n## Overview\n\nShareloc is an open source remote sensing geolocation library.\n\nIt performs image coordinates projections between sensor and ground and vice versa.\nShareloc handles RPC models and direct location grids.\n\n<div align=\"center\">\n\nDirect localization at constant elevation |  Direct localization on DEM\n:-------------------------:|:-------------------------:\n<img src=\"docs/source/images/shareloc_loc_ellipsoid.png\" alt=\"drawing\" width=\"300\"/> |  <img src=\"docs/source/images/shareloc_loc_dem.png\" alt=\"drawing\" width=\"300\"/>\n\n</div>\n\nShareloc main functions :\n\n * Direct/inverse localization at constant elevation (ellipsoidal earth model).\n * Direct localization on 2.5D DEM (w.r.t ellipsoid or geoid).\n * Line of sight triangulation.\n * Rectification grid creation.\n * Rectification grid interpolation.\n\n## Why Shareloc\n\nShareloc development has been motivated by the need of a full python component for CNES studies and the need of an underlying geometrical component for <a href=\"https://github.com/CNES/cars\">CARS</a>.\n\n\n## Quick start\n\n### Installation\n\nShareloc can be installed in a [virtualenv](https://docs.python.org/3/library/venv) from Pypi repository:\n\n```\npython -m venv shareloc-venv\nsource shareloc-venv/bin/activate\npip install --upgrade pip\npip install shareloc\n```\n\nFor developers, Shareloc can be installed from source in a [virtualenv](https://docs.python.org/3/library/venv) using the following commands:\n\n```\ngit clone https://github.com/CNES/shareloc\ncd shareloc\nmake install\nsource venv/bin/activate # to go in installed dev environment\n```\n\nDependencies : **git**, **make**\n\n### Import\n\nTo test the import of the library:\n\n```\npython3\n>>> import shareloc\n```\n\nAnd go to [Getting started](https://shareloc.readthedocs.io/en/latest/getting_started.html) in [Shareloc Documentation](https://shareloc.readthedocs.io/) for an example.\n\n\n## Documentation\n\nGo to [Shareloc Main Documentation](https://shareloc.readthedocs.io/)\n\n## Contribution\n\nTo do a bug report or a contribution, see the [**Contribution Guide**](CONTRIBUTING.md).\nFor project evolution, see [**Changelog**](CHANGELOG.md)\n",
    "bugtrack_url": null,
    "license": "Apache License 2.0",
    "summary": "Simple geometry library",
    "version": "0.2.7",
    "project_urls": {
        "Documentation": "https://shareloc.readthedocs.io/en/latest/",
        "Homepage": "https://shareloc.readthedocs.io/",
        "Source": "https://github.com/CNES/shareloc"
    },
    "split_keywords": [
        "shareloc",
        " cars",
        " 3d",
        " dem",
        " pandora",
        " photogrammetry"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ff4272b4c93d7fee630e7a521a5df3f89a5474494f6ac29383b70c7eaa85d61d",
                "md5": "132d58b8c72aa885e46f3e0a696cd0d9",
                "sha256": "e2368790fe6861b9fefdf63d7b3afd99d85a1ff3f8f8cf51337e9d1e5ca4f883"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "132d58b8c72aa885e46f3e0a696cd0d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 264536,
            "upload_time": "2025-03-03T12:08:40",
            "upload_time_iso_8601": "2025-03-03T12:08:40.401833Z",
            "url": "https://files.pythonhosted.org/packages/ff/42/72b4c93d7fee630e7a521a5df3f89a5474494f6ac29383b70c7eaa85d61d/shareloc-0.2.7-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6c869edc46f115355135d6cf6af9e3607af80f631dcea6a098dd55ddd34450c0",
                "md5": "7d1cdfaced2a1efdec27a8ced8a5959a",
                "sha256": "4bf8bb378e16a5851710dda54e588c039e88fa6bda9937e0c9d78549e2e4e1df"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7d1cdfaced2a1efdec27a8ced8a5959a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 333750,
            "upload_time": "2025-03-03T12:08:42",
            "upload_time_iso_8601": "2025-03-03T12:08:42.753469Z",
            "url": "https://files.pythonhosted.org/packages/6c/86/9edc46f115355135d6cf6af9e3607af80f631dcea6a098dd55ddd34450c0/shareloc-0.2.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0c94c1f0c2cb6557e7a5083bd22e760979c87c288409c97da1acf15400049f05",
                "md5": "04aff527f85135f0b0e14c3d493bd278",
                "sha256": "c7aa1079feade3149b1709242a9058c0244ec07aca0bdc6421d21a28aa6022c9"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "04aff527f85135f0b0e14c3d493bd278",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 325428,
            "upload_time": "2025-03-03T12:08:44",
            "upload_time_iso_8601": "2025-03-03T12:08:44.216023Z",
            "url": "https://files.pythonhosted.org/packages/0c/94/c1f0c2cb6557e7a5083bd22e760979c87c288409c97da1acf15400049f05/shareloc-0.2.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2b6b5d2e48437ba25f4798f509af0ec76dd15c82fe13a8077615bc84150d99f0",
                "md5": "433e9e8ca8d2abbada88f03584264228",
                "sha256": "fd1d35dfcbb3c22f58124b0fb1ce02da11049ae1a3ddf9090919bbc9ec8b05f4"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "433e9e8ca8d2abbada88f03584264228",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1404648,
            "upload_time": "2025-03-03T12:08:46",
            "upload_time_iso_8601": "2025-03-03T12:08:46.233157Z",
            "url": "https://files.pythonhosted.org/packages/2b/6b/5d2e48437ba25f4798f509af0ec76dd15c82fe13a8077615bc84150d99f0/shareloc-0.2.7-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a80b1ea39f241ef8946e5697160fba468dd0bf973b9ad793d264e8d5857280e4",
                "md5": "8861edcca3196727a28da9ca68ddfdcc",
                "sha256": "11ef8f224e3dc01023c13aacfca18fcf7aa360d042ea9ad0c25315f412a434e9"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8861edcca3196727a28da9ca68ddfdcc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1298159,
            "upload_time": "2025-03-03T12:08:49",
            "upload_time_iso_8601": "2025-03-03T12:08:49.678838Z",
            "url": "https://files.pythonhosted.org/packages/a8/0b/1ea39f241ef8946e5697160fba468dd0bf973b9ad793d264e8d5857280e4/shareloc-0.2.7-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "23efbd0af01c345e3dd8649c09aef93a57daba5c58e4a0528dd9ccb64b68a176",
                "md5": "a794de3636de5d5fca2ec0a6d42a4fe7",
                "sha256": "f94c252894a2bc80afc782e16ce406e057168e2185c4cc92a095054b99a9d795"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "a794de3636de5d5fca2ec0a6d42a4fe7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 232905,
            "upload_time": "2025-03-03T12:08:51",
            "upload_time_iso_8601": "2025-03-03T12:08:51.638914Z",
            "url": "https://files.pythonhosted.org/packages/23/ef/bd0af01c345e3dd8649c09aef93a57daba5c58e4a0528dd9ccb64b68a176/shareloc-0.2.7-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "15bf3016c626ed051c71fb0516a4beabbe2067392b1e5bae6f77f3f038e6b762",
                "md5": "dec2d7d71c70f35a6f7d18feb89c6199",
                "sha256": "3ed020a78cccba534a03a6bc3a3754a64c0bd1fefe408a5abd3363a95f367e9c"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dec2d7d71c70f35a6f7d18feb89c6199",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 250437,
            "upload_time": "2025-03-03T12:08:53",
            "upload_time_iso_8601": "2025-03-03T12:08:53.297775Z",
            "url": "https://files.pythonhosted.org/packages/15/bf/3016c626ed051c71fb0516a4beabbe2067392b1e5bae6f77f3f038e6b762/shareloc-0.2.7-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "64ad5ac362ce17816be71a94f456e971264049a819b40229ea7b6c5292ddcb35",
                "md5": "d8f8b61e0c4dc03f45b04707fb4127cc",
                "sha256": "1864e5fbd2658af0ebfb493006d73d247ac0a1df0c4dc2d07bf0df784623c314"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d8f8b61e0c4dc03f45b04707fb4127cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 265882,
            "upload_time": "2025-03-03T12:08:55",
            "upload_time_iso_8601": "2025-03-03T12:08:55.354301Z",
            "url": "https://files.pythonhosted.org/packages/64/ad/5ac362ce17816be71a94f456e971264049a819b40229ea7b6c5292ddcb35/shareloc-0.2.7-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d5052db28f753f00c22ccd31252923295a020bceae1aa958c4530019dee19fd5",
                "md5": "5d5f02bc0ab815097c91af230607fe25",
                "sha256": "e55912e0e4ba3419c453ff893c5cea42d11552ee71519b1f5bd73469e410e3e6"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5d5f02bc0ab815097c91af230607fe25",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 335295,
            "upload_time": "2025-03-03T12:08:56",
            "upload_time_iso_8601": "2025-03-03T12:08:56.655292Z",
            "url": "https://files.pythonhosted.org/packages/d5/05/2db28f753f00c22ccd31252923295a020bceae1aa958c4530019dee19fd5/shareloc-0.2.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0342e362db43e186cc36271f0a07544d845cc42bbfe8164091ede91005148b42",
                "md5": "17ba693a11ee9b4371c76d72a2945f70",
                "sha256": "4c701d08bf6fdfc242b5d160070eb0ae00dc6afce0804890cc7c46b91329a8db"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "17ba693a11ee9b4371c76d72a2945f70",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 327466,
            "upload_time": "2025-03-03T12:08:58",
            "upload_time_iso_8601": "2025-03-03T12:08:58.588532Z",
            "url": "https://files.pythonhosted.org/packages/03/42/e362db43e186cc36271f0a07544d845cc42bbfe8164091ede91005148b42/shareloc-0.2.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "36d359fc3edec54f887c4a01bfcb919cb8522ecc1dfa1934c512feae7d5b4726",
                "md5": "2c81976f47ffb0de2ab80ce4db82aff1",
                "sha256": "cd0253d7af72a76268049c06d3ff7c217e8355f89536bc2006b3dbb212da9989"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "2c81976f47ffb0de2ab80ce4db82aff1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1404203,
            "upload_time": "2025-03-03T12:09:00",
            "upload_time_iso_8601": "2025-03-03T12:09:00.203714Z",
            "url": "https://files.pythonhosted.org/packages/36/d3/59fc3edec54f887c4a01bfcb919cb8522ecc1dfa1934c512feae7d5b4726/shareloc-0.2.7-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c742a54fe3f9823c5dbb9e348da7a77ba4df455857bec1df7334bd48edca80e5",
                "md5": "9a5c36c1d3dc423996953022a12a7853",
                "sha256": "4487242797475f6c1f9ca3b5c59abf1305d23365df8eb072a371be27a036cb39"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9a5c36c1d3dc423996953022a12a7853",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1300149,
            "upload_time": "2025-03-03T12:09:01",
            "upload_time_iso_8601": "2025-03-03T12:09:01.746726Z",
            "url": "https://files.pythonhosted.org/packages/c7/42/a54fe3f9823c5dbb9e348da7a77ba4df455857bec1df7334bd48edca80e5/shareloc-0.2.7-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dc6618e3c784ed77692cb92405916225ef3d6f15a2080dd5789103fd56ba2e0f",
                "md5": "a50f16e8894eae3dd5cd041450c03e51",
                "sha256": "cd71cb0a6a2c54996ac5580e13960a33270f7c758d65a3691820f41d15e19598"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "a50f16e8894eae3dd5cd041450c03e51",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 233757,
            "upload_time": "2025-03-03T12:09:03",
            "upload_time_iso_8601": "2025-03-03T12:09:03.840049Z",
            "url": "https://files.pythonhosted.org/packages/dc/66/18e3c784ed77692cb92405916225ef3d6f15a2080dd5789103fd56ba2e0f/shareloc-0.2.7-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e0e86a6eaa7f0f53736e9a2abca4fb505415896d55c78b90153f227392ae26bd",
                "md5": "e194c7dcdcc969fe4393a553aae0eb05",
                "sha256": "1afc4f699cfbcc1cbf46de20719b84e6544371fc9cedeba8cc5fdbd377e9634a"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e194c7dcdcc969fe4393a553aae0eb05",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 251241,
            "upload_time": "2025-03-03T12:09:05",
            "upload_time_iso_8601": "2025-03-03T12:09:05.074918Z",
            "url": "https://files.pythonhosted.org/packages/e0/e8/6a6eaa7f0f53736e9a2abca4fb505415896d55c78b90153f227392ae26bd/shareloc-0.2.7-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "98b9c4610831d0dff6fd843fa92d91b8c0ac4d0b008e01934220de488c88d569",
                "md5": "6434375d67c400781649ffc715b2c4ac",
                "sha256": "e993c2558d7657fc695166e354e53cb6999903381fdc604b441c3a101a85ccdb"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6434375d67c400781649ffc715b2c4ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 265662,
            "upload_time": "2025-03-03T12:09:07",
            "upload_time_iso_8601": "2025-03-03T12:09:07.527524Z",
            "url": "https://files.pythonhosted.org/packages/98/b9/c4610831d0dff6fd843fa92d91b8c0ac4d0b008e01934220de488c88d569/shareloc-0.2.7-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0d3705b94755e789f78ff3a0283cd837c9bb7b2b93d58d265cb38f7e807b6cf6",
                "md5": "de62ca21ccdf7c8150116b5428cbe9ef",
                "sha256": "77111812e148289eea2abeda0bc6e51a1d51ecbc5a51ce42ee1aabbb8092ca2f"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "de62ca21ccdf7c8150116b5428cbe9ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 336661,
            "upload_time": "2025-03-03T12:09:09",
            "upload_time_iso_8601": "2025-03-03T12:09:09.561912Z",
            "url": "https://files.pythonhosted.org/packages/0d/37/05b94755e789f78ff3a0283cd837c9bb7b2b93d58d265cb38f7e807b6cf6/shareloc-0.2.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "545e6eb027248a9235ddb5faf511a2bb9248a5a6f652fce6ea7c876af157c8ec",
                "md5": "122e837e0bd3e02dfb085ef26038fb58",
                "sha256": "823795b53d66755002f1edb4daef6ed1ff24a62fb0fe0772c907723bf5087493"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "122e837e0bd3e02dfb085ef26038fb58",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 327715,
            "upload_time": "2025-03-03T12:09:11",
            "upload_time_iso_8601": "2025-03-03T12:09:11.045232Z",
            "url": "https://files.pythonhosted.org/packages/54/5e/6eb027248a9235ddb5faf511a2bb9248a5a6f652fce6ea7c876af157c8ec/shareloc-0.2.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e0527530a06645b3cef7240b0480107c87e1524e5a75808add92d3eb234b1db4",
                "md5": "991e469700cc6e7b0387afdd151b2fe6",
                "sha256": "e03b1e9a0ca7c9330e1dd4cfa92a40b65b337caaebdd9eae7520ca7e026f42a4"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "991e469700cc6e7b0387afdd151b2fe6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1407695,
            "upload_time": "2025-03-03T12:09:12",
            "upload_time_iso_8601": "2025-03-03T12:09:12.442060Z",
            "url": "https://files.pythonhosted.org/packages/e0/52/7530a06645b3cef7240b0480107c87e1524e5a75808add92d3eb234b1db4/shareloc-0.2.7-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "efe22f0b1b255e6d4c0e29db5f56b16c29e60cbaf1c65ef2bbe5781c22e59f1a",
                "md5": "bf16059af3d1d25601cd96492bbdc87b",
                "sha256": "c03bb3f5238707eb2ca52d703753da2465b8c8fa464895654a1c1a6e06345f04"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bf16059af3d1d25601cd96492bbdc87b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1304306,
            "upload_time": "2025-03-03T12:09:14",
            "upload_time_iso_8601": "2025-03-03T12:09:14.166404Z",
            "url": "https://files.pythonhosted.org/packages/ef/e2/2f0b1b255e6d4c0e29db5f56b16c29e60cbaf1c65ef2bbe5781c22e59f1a/shareloc-0.2.7-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5f00f5266f44c6d9b864937d8902ffb56f64fac8342e9d3f9acb7d73483f210d",
                "md5": "d674ef7d64a397d1c95702a3a4a56f3c",
                "sha256": "bf2193d7ad4e29ddae526466e0608a62c13743e3ae38c0412e1f6d679e92da15"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "d674ef7d64a397d1c95702a3a4a56f3c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 233733,
            "upload_time": "2025-03-03T12:09:15",
            "upload_time_iso_8601": "2025-03-03T12:09:15.800557Z",
            "url": "https://files.pythonhosted.org/packages/5f/00/f5266f44c6d9b864937d8902ffb56f64fac8342e9d3f9acb7d73483f210d/shareloc-0.2.7-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0b017aee3d21a1656cc76953d36fbf6d3bf7bc3882cb5d18187d66208d103cad",
                "md5": "69f5a80cd66b5e9fa37415256a79ba5a",
                "sha256": "6f308fbab96b885e6c8fe467217eb8faa0ac3188459a1387f16e505d9fc16a65"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "69f5a80cd66b5e9fa37415256a79ba5a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 252935,
            "upload_time": "2025-03-03T12:09:17",
            "upload_time_iso_8601": "2025-03-03T12:09:17.059717Z",
            "url": "https://files.pythonhosted.org/packages/0b/01/7aee3d21a1656cc76953d36fbf6d3bf7bc3882cb5d18187d66208d103cad/shareloc-0.2.7-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a12a88d7d4a351aaaa3350c041a242925b7f82f2f25c742c2473d803cffc0caf",
                "md5": "07c68abc7091f1c03a341a7958eb8e04",
                "sha256": "daf6320304fc5c2b448e516a232a816ed2632f7513708e9acf753b013616e870"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "07c68abc7091f1c03a341a7958eb8e04",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 265731,
            "upload_time": "2025-03-03T12:09:18",
            "upload_time_iso_8601": "2025-03-03T12:09:18.960917Z",
            "url": "https://files.pythonhosted.org/packages/a1/2a/88d7d4a351aaaa3350c041a242925b7f82f2f25c742c2473d803cffc0caf/shareloc-0.2.7-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b76dfb4a720312a994e111a5bd774accef51114f78a7b4101297eeef933188d4",
                "md5": "42610243421dbb9258e182b70de7172d",
                "sha256": "4945c8d76fa587d2c56d2742ebb174bf570dcd432a8a93fe5a81bb9ef58fcacc"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "42610243421dbb9258e182b70de7172d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 336748,
            "upload_time": "2025-03-03T12:09:21",
            "upload_time_iso_8601": "2025-03-03T12:09:21.025997Z",
            "url": "https://files.pythonhosted.org/packages/b7/6d/fb4a720312a994e111a5bd774accef51114f78a7b4101297eeef933188d4/shareloc-0.2.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f80b10dd66fe3fd57da2daa88a479ae3af4d9897e4082afe84b01189e17472d3",
                "md5": "dfb6e65281e6de794086bff538f769bf",
                "sha256": "3100e2dde236a47e71f218f58f53078a4a73691bffd89177b279060b750dc10e"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dfb6e65281e6de794086bff538f769bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 328618,
            "upload_time": "2025-03-03T12:09:22",
            "upload_time_iso_8601": "2025-03-03T12:09:22.418342Z",
            "url": "https://files.pythonhosted.org/packages/f8/0b/10dd66fe3fd57da2daa88a479ae3af4d9897e4082afe84b01189e17472d3/shareloc-0.2.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c2904caae25f273b99d940f33251d577cc8c3d34e4d9fb4881f651f820c6c300",
                "md5": "4a9eff7947d659e5d3751dc63f574c53",
                "sha256": "55b6abbd2c850691085d557f712cd8d9840cca6cfda7a3f970f193952adb61fb"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "4a9eff7947d659e5d3751dc63f574c53",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1407795,
            "upload_time": "2025-03-03T12:09:23",
            "upload_time_iso_8601": "2025-03-03T12:09:23.801330Z",
            "url": "https://files.pythonhosted.org/packages/c2/90/4caae25f273b99d940f33251d577cc8c3d34e4d9fb4881f651f820c6c300/shareloc-0.2.7-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "854d7c8a7f147828007318000b8686735c4aa4daf15e0163254c2bfe29a19c1e",
                "md5": "58d0e99f4a93dfec5325d8e551dbe15e",
                "sha256": "6c0f8c0aff665199e4f1fd5100f9b826858f1ba16ed06bb4500adc8f15af3fc8"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "58d0e99f4a93dfec5325d8e551dbe15e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1304866,
            "upload_time": "2025-03-03T12:09:25",
            "upload_time_iso_8601": "2025-03-03T12:09:25.278084Z",
            "url": "https://files.pythonhosted.org/packages/85/4d/7c8a7f147828007318000b8686735c4aa4daf15e0163254c2bfe29a19c1e/shareloc-0.2.7-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2022247b0b7cd35091652dcf8fa12483d5feca5537d41f24ffb0d918ca7ee093",
                "md5": "6e40e69abbbdd392c006f5a5f54949d5",
                "sha256": "6806816799fef1cbb7cbdb4ef497bd3a07dc62235f49932aa4331297f599cd97"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "6e40e69abbbdd392c006f5a5f54949d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 233750,
            "upload_time": "2025-03-03T12:09:26",
            "upload_time_iso_8601": "2025-03-03T12:09:26.775237Z",
            "url": "https://files.pythonhosted.org/packages/20/22/247b0b7cd35091652dcf8fa12483d5feca5537d41f24ffb0d918ca7ee093/shareloc-0.2.7-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e9698af037d598d7e43ae922ea5c8d80151c80753abe7036d0fe336fb4f9c035",
                "md5": "dfd2d233f78e36fc619f972f62614345",
                "sha256": "a4825885c93aad225cec4f731224d9b7a4a14bb73f354274f1f6c9404199c101"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dfd2d233f78e36fc619f972f62614345",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 252916,
            "upload_time": "2025-03-03T12:09:28",
            "upload_time_iso_8601": "2025-03-03T12:09:28.755930Z",
            "url": "https://files.pythonhosted.org/packages/e9/69/8af037d598d7e43ae922ea5c8d80151c80753abe7036d0fe336fb4f9c035/shareloc-0.2.7-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c5039662446aee18f5d74913e7a2603fc21b3ac74247ed7906e3ffe027e25084",
                "md5": "b6a08689d78e925374471bb41174db8e",
                "sha256": "0455448a059b3afefc55ed93201240d482272eddadf156d895b49b530859c8a0"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b6a08689d78e925374471bb41174db8e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 264695,
            "upload_time": "2025-03-03T12:09:30",
            "upload_time_iso_8601": "2025-03-03T12:09:30.101075Z",
            "url": "https://files.pythonhosted.org/packages/c5/03/9662446aee18f5d74913e7a2603fc21b3ac74247ed7906e3ffe027e25084/shareloc-0.2.7-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1a1bc0a13b4100006f1827972adff91220f433731c7a991b1c514733b9fd161b",
                "md5": "4532840ff05d552677b0e37a15d3e59a",
                "sha256": "6b35d1d77f56d79159b76fe61f93a8cc76658777d0f9c44b14d8154b88d520be"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4532840ff05d552677b0e37a15d3e59a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 334596,
            "upload_time": "2025-03-03T12:09:31",
            "upload_time_iso_8601": "2025-03-03T12:09:31.507984Z",
            "url": "https://files.pythonhosted.org/packages/1a/1b/c0a13b4100006f1827972adff91220f433731c7a991b1c514733b9fd161b/shareloc-0.2.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e7be463dd2508e7ef25bd5d8d2d021f37877b5cefe30b580aca31a6c6b507668",
                "md5": "d80c1c1dedda01aa9623dab7632d73bd",
                "sha256": "0c63be17210dbb8895bcac6ef377d01ba50f80e4527051df5dea722136c508ae"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d80c1c1dedda01aa9623dab7632d73bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 325396,
            "upload_time": "2025-03-03T12:09:33",
            "upload_time_iso_8601": "2025-03-03T12:09:33.482052Z",
            "url": "https://files.pythonhosted.org/packages/e7/be/463dd2508e7ef25bd5d8d2d021f37877b5cefe30b580aca31a6c6b507668/shareloc-0.2.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "56f3da62ef1d7fa84b76b7900a19871d4cbc92fe9d7cfda9a775298db31e3274",
                "md5": "33f27eecac22c9164dbcd0e3117dfb7d",
                "sha256": "b05af2e47f8986ff7e900f1cef7abba15f5edd73653444f6dd61e06947f89674"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "33f27eecac22c9164dbcd0e3117dfb7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1403351,
            "upload_time": "2025-03-03T12:09:35",
            "upload_time_iso_8601": "2025-03-03T12:09:35.995353Z",
            "url": "https://files.pythonhosted.org/packages/56/f3/da62ef1d7fa84b76b7900a19871d4cbc92fe9d7cfda9a775298db31e3274/shareloc-0.2.7-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "318665cfbed36fa714ef15d5d91f05c34222ab92b7384833b725b5a4b765c7f4",
                "md5": "848e46b19a2e3534e7265ed0b861be86",
                "sha256": "b0cb943c433822a5120842b492a993d8b2e0f836c65657deefd67b9ba2d264b1"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "848e46b19a2e3534e7265ed0b861be86",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1297925,
            "upload_time": "2025-03-03T12:09:38",
            "upload_time_iso_8601": "2025-03-03T12:09:38.141276Z",
            "url": "https://files.pythonhosted.org/packages/31/86/65cfbed36fa714ef15d5d91f05c34222ab92b7384833b725b5a4b765c7f4/shareloc-0.2.7-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "89c3cfa897ece4bdb9466b8f391f1e9525d7c41cf4cd1074e38734d76e0e0ccc",
                "md5": "2df32cd9f9c9f4977a5f70315a7749a5",
                "sha256": "9807f6abc22b80f0f73c1644bd5341c0e934d147e47fb28c4d8006ced4f0d77f"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "2df32cd9f9c9f4977a5f70315a7749a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 233026,
            "upload_time": "2025-03-03T12:09:39",
            "upload_time_iso_8601": "2025-03-03T12:09:39.709514Z",
            "url": "https://files.pythonhosted.org/packages/89/c3/cfa897ece4bdb9466b8f391f1e9525d7c41cf4cd1074e38734d76e0e0ccc/shareloc-0.2.7-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8412ae1209644cd8892b164d0b53091f0e32c1889017f6783bc0af0ff1ddc9dd",
                "md5": "d8718cd5cd5421b4c87a310b2c93b6b2",
                "sha256": "62a64b844be67622d1f152bf7af1f0366951af1f6222ad75396abd9f7fd93fd7"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d8718cd5cd5421b4c87a310b2c93b6b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 247260,
            "upload_time": "2025-03-03T12:09:41",
            "upload_time_iso_8601": "2025-03-03T12:09:41.763891Z",
            "url": "https://files.pythonhosted.org/packages/84/12/ae1209644cd8892b164d0b53091f0e32c1889017f6783bc0af0ff1ddc9dd/shareloc-0.2.7-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6cb197a49d459155883c3429977126f83f2a396a8a999126e25f711733c81894",
                "md5": "6995fb1ad41940fe35883938163d6498",
                "sha256": "b1529f53cbdb03f763bf97004e657fb74488418fcd4307227efcdbb94990c4e5"
            },
            "downloads": -1,
            "filename": "shareloc-0.2.7.tar.gz",
            "has_sig": false,
            "md5_digest": "6995fb1ad41940fe35883938163d6498",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 34451009,
            "upload_time": "2025-03-03T12:09:45",
            "upload_time_iso_8601": "2025-03-03T12:09:45.011892Z",
            "url": "https://files.pythonhosted.org/packages/6c/b1/97a49d459155883c3429977126f83f2a396a8a999126e25f711733c81894/shareloc-0.2.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-03-03 12:09:45",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "CNES",
    "github_project": "shareloc",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "tox": true,
    "lcname": "shareloc"
}
        
Elapsed time: 0.43100s