pymongoarrow


Namepymongoarrow JSON
Version 1.3.0 PyPI version JSON
download
home_page
Summary"Tools for using NumPy, Pandas, Polars, and PyArrow with MongoDB"
upload_time2024-02-06 17:37:01
maintainerMongoDB, Inc.
docs_urlNone
authorPrashant Mital
requires_python>=3.8
licenseApache License, Version 2.0
keywords mongo mongodb pymongo arrow bson numpy pandas polars
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # PyMongoArrow

[![PyPI Version](https://img.shields.io/pypi/v/pymongoarrow)](https://pypi.org/project/pymongoarrow)
[![Python Versions](https://img.shields.io/pypi/pyversions/pymongoarrow)](https://pypi.org/project/pymongoarrow)
[![Monthly Downloads](https://static.pepy.tech/badge/pymongoarrow/month)](https://pepy.tech/project/pymongoarrow)
[![Documentation Status](https://readthedocs.org/projects/mongo-arrow/badge/?version=stable)](http://mongo-arrow.readthedocs.io/en/stable/?badge=stable)

**PyMongoArrow** is a companion library to PyMongo that contains tools
for loading MongoDB query result sets as Apache Arrow tables, Pandas
DataFrames or NumPy arrays.

```pycon
>>> from pymongoarrow.monkey import patch_all
... patch_all()
... from pymongoarrow.api import Schema
... schema = Schema({"_id": int, "qty": float})
... from pymongo import MongoClient
... client = MongoClient()
... client.db.data.insert_many(
...     [{"_id": 1, "qty": 25.4}, {"_id": 2, "qty": 16.9}, {"_id": 3, "qty": 2.3}]
... )
... data_frame = client.db.test.find_pandas_all({}, schema=schema)
... data_frame
   _id   qty
0    1  25.4
1    2  16.9
2    3   2.3
... arrow_table = client.db.test.find_arrow_all({}, schema=schema)
# The schema may also be omitted
... arrow_table = client.db.test.find_arrow_all({})
... arrow_table
pyarrow.Table
_id: int64
qty: double
... ndarrays = client.db.test.find_numpy_all({}, schema=schema)
... ndarrays
{'_id': array([1, 2, 3]), 'qty': array([25.4, 16.9,  2.3])}
```

**PyMongoArrow** is the recommended way to materialize MongoDB query
result sets as contiguous-in-memory, typed arrays suited for in-memory
analytical processing applications.

## Installing PyMongoArrow

PyMongoArrow is available on PyPI:

```bash
python -m pip install pymongoarrow
```

To use PyMongoArrow with MongoDB Atlas' `mongodb+srv://` URIs, you will
need to also install PyMongo with the `srv` extra:

```bash
python -m pip install 'pymongo[srv]' pymongoarrow
```

To use PyMongoArrow APIs that return query result sets as pandas
DataFrame instances, you will also need to have the `pandas` package
installed:

```bash
python -m pip install pandas
```

Note: `pymongoarrow` is not supported or tested on big-endian systems
(e.g. Linux s390x).

## Development Install

See the instructions on [Read the
Docs](https://mongo-arrow.readthedocs.io/en/latest).

## Documentation

Full documentation is available on [Read the
Docs](https://mongo-arrow.readthedocs.io/en/latest).

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "pymongoarrow",
    "maintainer": "MongoDB, Inc.",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "mongo,mongodb,pymongo,arrow,bson,numpy,pandas,polars",
    "author": "Prashant Mital",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/8a/a6/f829d852da04ac5744521fdcdca93dc30afbaf177cbc0e5917a62c12b1e0/pymongoarrow-1.3.0.tar.gz",
    "platform": "Linux",
    "description": "# PyMongoArrow\n\n[![PyPI Version](https://img.shields.io/pypi/v/pymongoarrow)](https://pypi.org/project/pymongoarrow)\n[![Python Versions](https://img.shields.io/pypi/pyversions/pymongoarrow)](https://pypi.org/project/pymongoarrow)\n[![Monthly Downloads](https://static.pepy.tech/badge/pymongoarrow/month)](https://pepy.tech/project/pymongoarrow)\n[![Documentation Status](https://readthedocs.org/projects/mongo-arrow/badge/?version=stable)](http://mongo-arrow.readthedocs.io/en/stable/?badge=stable)\n\n**PyMongoArrow** is a companion library to PyMongo that contains tools\nfor loading MongoDB query result sets as Apache Arrow tables, Pandas\nDataFrames or NumPy arrays.\n\n```pycon\n>>> from pymongoarrow.monkey import patch_all\n... patch_all()\n... from pymongoarrow.api import Schema\n... schema = Schema({\"_id\": int, \"qty\": float})\n... from pymongo import MongoClient\n... client = MongoClient()\n... client.db.data.insert_many(\n...     [{\"_id\": 1, \"qty\": 25.4}, {\"_id\": 2, \"qty\": 16.9}, {\"_id\": 3, \"qty\": 2.3}]\n... )\n... data_frame = client.db.test.find_pandas_all({}, schema=schema)\n... data_frame\n   _id   qty\n0    1  25.4\n1    2  16.9\n2    3   2.3\n... arrow_table = client.db.test.find_arrow_all({}, schema=schema)\n# The schema may also be omitted\n... arrow_table = client.db.test.find_arrow_all({})\n... arrow_table\npyarrow.Table\n_id: int64\nqty: double\n... ndarrays = client.db.test.find_numpy_all({}, schema=schema)\n... ndarrays\n{'_id': array([1, 2, 3]), 'qty': array([25.4, 16.9,  2.3])}\n```\n\n**PyMongoArrow** is the recommended way to materialize MongoDB query\nresult sets as contiguous-in-memory, typed arrays suited for in-memory\nanalytical processing applications.\n\n## Installing PyMongoArrow\n\nPyMongoArrow is available on PyPI:\n\n```bash\npython -m pip install pymongoarrow\n```\n\nTo use PyMongoArrow with MongoDB Atlas' `mongodb+srv://` URIs, you will\nneed to also install PyMongo with the `srv` extra:\n\n```bash\npython -m pip install 'pymongo[srv]' pymongoarrow\n```\n\nTo use PyMongoArrow APIs that return query result sets as pandas\nDataFrame instances, you will also need to have the `pandas` package\ninstalled:\n\n```bash\npython -m pip install pandas\n```\n\nNote: `pymongoarrow` is not supported or tested on big-endian systems\n(e.g. Linux s390x).\n\n## Development Install\n\nSee the instructions on [Read the\nDocs](https://mongo-arrow.readthedocs.io/en/latest).\n\n## Documentation\n\nFull documentation is available on [Read the\nDocs](https://mongo-arrow.readthedocs.io/en/latest).\n",
    "bugtrack_url": null,
    "license": "Apache License, Version 2.0",
    "summary": "\"Tools for using NumPy, Pandas, Polars, and PyArrow with MongoDB\"",
    "version": "1.3.0",
    "project_urls": {
        "Documentation": "https://mongo-arrow.readthedocs.io",
        "Homepage": "https://www.mongodb.org",
        "Source": "https://github.com/mongodb-labs/mongo-arrow/tree/main/bindings/python",
        "Tracker": "https://jira.mongodb.org/projects/ARROW/issues"
    },
    "split_keywords": [
        "mongo",
        "mongodb",
        "pymongo",
        "arrow",
        "bson",
        "numpy",
        "pandas",
        "polars"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e88c6806c69341f5f9f631df709270bdebc312da1f86e0183ca478c21aed641c",
                "md5": "9cbc4db5d969e500916b70a092c7cb5b",
                "sha256": "7a85de60b790500a2ba0499151f63b008ef00258e18fb240edc257afa22db98f"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.3.0-cp310-cp310-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9cbc4db5d969e500916b70a092c7cb5b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 277265,
            "upload_time": "2024-02-06T17:36:08",
            "upload_time_iso_8601": "2024-02-06T17:36:08.087463Z",
            "url": "https://files.pythonhosted.org/packages/e8/8c/6806c69341f5f9f631df709270bdebc312da1f86e0183ca478c21aed641c/pymongoarrow-1.3.0-cp310-cp310-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b8d8e3fc9bd34cda5f73b24cdaa24e58708ecc39dc46e24a85bace10f5f86bc",
                "md5": "27a52db2e8c190bb3cadb9d97656b86e",
                "sha256": "16425cdd8cb37bade3be03a5ea7c96f3290508a23b57e05c9a1b92934ad85d35"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.3.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "27a52db2e8c190bb3cadb9d97656b86e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 257801,
            "upload_time": "2024-02-06T17:36:10",
            "upload_time_iso_8601": "2024-02-06T17:36:10.830299Z",
            "url": "https://files.pythonhosted.org/packages/7b/8d/8e3fc9bd34cda5f73b24cdaa24e58708ecc39dc46e24a85bace10f5f86bc/pymongoarrow-1.3.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a469262aadf842451268a745aa3e1e323c725334a789f4e388f1453785487e8",
                "md5": "1c8be29fc388873735c8c923bed5f6c9",
                "sha256": "b02dd1b238ca7acb74ec7178795b619522c3b8134a1cb4cdbd2dc09ba78aca65"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.3.0-cp310-cp310-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1c8be29fc388873735c8c923bed5f6c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1549836,
            "upload_time": "2024-02-06T17:36:15",
            "upload_time_iso_8601": "2024-02-06T17:36:15.647026Z",
            "url": "https://files.pythonhosted.org/packages/9a/46/9262aadf842451268a745aa3e1e323c725334a789f4e388f1453785487e8/pymongoarrow-1.3.0-cp310-cp310-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "884872f82104823e2ee4c1f935595ed2f8d1a8b9b3ab3aead20f35bf2dec363f",
                "md5": "1267cf9262b6b6961dc556daf926aff9",
                "sha256": "ed5fc670222bcaf0aef634ee3e67ae86e97b7c882ec26787be5a22180efdb0a8"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.3.0-cp310-cp310-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1267cf9262b6b6961dc556daf926aff9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1561461,
            "upload_time": "2024-02-06T17:36:18",
            "upload_time_iso_8601": "2024-02-06T17:36:18.947086Z",
            "url": "https://files.pythonhosted.org/packages/88/48/72f82104823e2ee4c1f935595ed2f8d1a8b9b3ab3aead20f35bf2dec363f/pymongoarrow-1.3.0-cp310-cp310-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4629c7f981415ea023f74578c351e2671ec603bf99d362d58a0280bc9023a8bc",
                "md5": "712efb9bd83f191f23cec06f928d3346",
                "sha256": "1e2ea5f9cdd1f7a4347a409299c740ab43430208d840f3c75181ea03454a5553"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.3.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "712efb9bd83f191f23cec06f928d3346",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 236147,
            "upload_time": "2024-02-06T17:36:21",
            "upload_time_iso_8601": "2024-02-06T17:36:21.441167Z",
            "url": "https://files.pythonhosted.org/packages/46/29/c7f981415ea023f74578c351e2671ec603bf99d362d58a0280bc9023a8bc/pymongoarrow-1.3.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "14817287f37f6cdec1b96a2f5cbf6897dfd8d441f22548dd4b5c3a02de17b9af",
                "md5": "7edaecc22ba47fe0697d6428244bf5b8",
                "sha256": "4c53d77120ab425660d57d0bf958859a0822acd9a65c64a81d7ff14fc18aae13"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.3.0-cp311-cp311-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7edaecc22ba47fe0697d6428244bf5b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 279459,
            "upload_time": "2024-02-06T17:36:23",
            "upload_time_iso_8601": "2024-02-06T17:36:23.114568Z",
            "url": "https://files.pythonhosted.org/packages/14/81/7287f37f6cdec1b96a2f5cbf6897dfd8d441f22548dd4b5c3a02de17b9af/pymongoarrow-1.3.0-cp311-cp311-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "85d5cdc126aae7a565060c121f036e6ff63f011e826e74b442eb59ecbf3e1a21",
                "md5": "9f5fb837fcec687904caf9ed94258cbd",
                "sha256": "4c20584792f46ccc2adcb70231bcc3497436042b0b38c8c5a278f15d294a892b"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.3.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9f5fb837fcec687904caf9ed94258cbd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 259197,
            "upload_time": "2024-02-06T17:36:25",
            "upload_time_iso_8601": "2024-02-06T17:36:25.070262Z",
            "url": "https://files.pythonhosted.org/packages/85/d5/cdc126aae7a565060c121f036e6ff63f011e826e74b442eb59ecbf3e1a21/pymongoarrow-1.3.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "99f7107eb9bd53454ded13d2b40e03fde6e7ca00b3b20bed0f4f0c457685be71",
                "md5": "9b7825ccd6583eba56066c2088bae907",
                "sha256": "e0aae95ffa37e4e86b54417b3a92fcb8b07f65c99acae791227dd6e72385e0b6"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.3.0-cp311-cp311-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9b7825ccd6583eba56066c2088bae907",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1584586,
            "upload_time": "2024-02-06T17:36:28",
            "upload_time_iso_8601": "2024-02-06T17:36:28.007692Z",
            "url": "https://files.pythonhosted.org/packages/99/f7/107eb9bd53454ded13d2b40e03fde6e7ca00b3b20bed0f4f0c457685be71/pymongoarrow-1.3.0-cp311-cp311-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d496d54c1c6808342373db44879ba45ec52f13f8a8f0ee1dc591c4d6a844f46c",
                "md5": "bc02c2361b655af743ac6095f3cef9cb",
                "sha256": "284416a33a6d88f0705c10c5baf567261335c56846a2a7ec5ff640c6029c965f"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.3.0-cp311-cp311-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bc02c2361b655af743ac6095f3cef9cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1596511,
            "upload_time": "2024-02-06T17:36:29",
            "upload_time_iso_8601": "2024-02-06T17:36:29.519075Z",
            "url": "https://files.pythonhosted.org/packages/d4/96/d54c1c6808342373db44879ba45ec52f13f8a8f0ee1dc591c4d6a844f46c/pymongoarrow-1.3.0-cp311-cp311-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "915b66d9f57a60e99e33c9ccd6e94111cb28d8a44bd83d4a11322615e5a0e209",
                "md5": "7d4fa5a6f40b7ec5850f9c6c8a2a5f34",
                "sha256": "8fd1128fe5681f3533e380f36dfbd904ae321f12b43dfaac8f5e6fa3b6048c5f"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.3.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7d4fa5a6f40b7ec5850f9c6c8a2a5f34",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 236360,
            "upload_time": "2024-02-06T17:36:31",
            "upload_time_iso_8601": "2024-02-06T17:36:31.636278Z",
            "url": "https://files.pythonhosted.org/packages/91/5b/66d9f57a60e99e33c9ccd6e94111cb28d8a44bd83d4a11322615e5a0e209/pymongoarrow-1.3.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b91012f34f895c9a474ebe0eded7255c2a0c7abb00d4745d7208b903f8bcb3e9",
                "md5": "78a46d31ead34703320f85df35b8654c",
                "sha256": "dffd0e8d5a3865f4c05d82ebaab4c4582dc895904cf8659e4e6b9277a79994a7"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.3.0-cp312-cp312-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "78a46d31ead34703320f85df35b8654c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 276269,
            "upload_time": "2024-02-06T17:36:33",
            "upload_time_iso_8601": "2024-02-06T17:36:33.604896Z",
            "url": "https://files.pythonhosted.org/packages/b9/10/12f34f895c9a474ebe0eded7255c2a0c7abb00d4745d7208b903f8bcb3e9/pymongoarrow-1.3.0-cp312-cp312-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f995ef07b1066e3d2a9c2ff74603dd112e936c3fd6b77c67a74296fb8b859b3b",
                "md5": "743149cc85639da098a76bf088ebd085",
                "sha256": "74826cdfed80dcdd597bb92301e0d06fcda8519e86372c9ff82ca713435e45e3"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.3.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "743149cc85639da098a76bf088ebd085",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 258543,
            "upload_time": "2024-02-06T17:36:35",
            "upload_time_iso_8601": "2024-02-06T17:36:35.538279Z",
            "url": "https://files.pythonhosted.org/packages/f9/95/ef07b1066e3d2a9c2ff74603dd112e936c3fd6b77c67a74296fb8b859b3b/pymongoarrow-1.3.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dcb33b757eaebd74c78b79cd6b7152f1c66553321698e8d3c976668fed6fadff",
                "md5": "e7657a7a2df949a9044f50b32fd157c3",
                "sha256": "64b3d6f0821bd2283e7c1744a4831d09f066bb94526ed854a96a24fd5c6b05c3"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.3.0-cp312-cp312-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e7657a7a2df949a9044f50b32fd157c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1529752,
            "upload_time": "2024-02-06T17:36:37",
            "upload_time_iso_8601": "2024-02-06T17:36:37.090163Z",
            "url": "https://files.pythonhosted.org/packages/dc/b3/3b757eaebd74c78b79cd6b7152f1c66553321698e8d3c976668fed6fadff/pymongoarrow-1.3.0-cp312-cp312-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1bef94ca22aebc373c832b4c32709d77dfc0649e825f4a24909b53ef161bc274",
                "md5": "f014368d65951de7aa5c06ce30409d80",
                "sha256": "1587c20375e817304234cf8c88dada1debf3e5483fd3cbdb8dfc3a74fe92a384"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.3.0-cp312-cp312-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f014368d65951de7aa5c06ce30409d80",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1548565,
            "upload_time": "2024-02-06T17:36:39",
            "upload_time_iso_8601": "2024-02-06T17:36:39.671140Z",
            "url": "https://files.pythonhosted.org/packages/1b/ef/94ca22aebc373c832b4c32709d77dfc0649e825f4a24909b53ef161bc274/pymongoarrow-1.3.0-cp312-cp312-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "69929c564acef34cc424c3abceae8640d4ff968a2142ffe89ad9e626228d543a",
                "md5": "12521c100c3062b15ab6a192f4276cb9",
                "sha256": "8937e9baec8a350ee702781972e5a543573dc103e946f18a9d74c035787ca1fd"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.3.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "12521c100c3062b15ab6a192f4276cb9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 231780,
            "upload_time": "2024-02-06T17:36:42",
            "upload_time_iso_8601": "2024-02-06T17:36:42.096840Z",
            "url": "https://files.pythonhosted.org/packages/69/92/9c564acef34cc424c3abceae8640d4ff968a2142ffe89ad9e626228d543a/pymongoarrow-1.3.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "116d4df4007d858d1de6183bd2166405c159345987a991ff8cf7e9d8fab6a9ed",
                "md5": "3d17f8cd3aed4abb1267a8633832c8c2",
                "sha256": "c8ab2d085bbbe6d83e4b6979dada3490b6eb8a1026e8a0e082ab3c0a084a4186"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.3.0-cp38-cp38-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3d17f8cd3aed4abb1267a8633832c8c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 299788,
            "upload_time": "2024-02-06T17:36:44",
            "upload_time_iso_8601": "2024-02-06T17:36:44.017154Z",
            "url": "https://files.pythonhosted.org/packages/11/6d/4df4007d858d1de6183bd2166405c159345987a991ff8cf7e9d8fab6a9ed/pymongoarrow-1.3.0-cp38-cp38-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b0e54d36897b6fedd69726bf304e1f4b306575504d8ac53ea4ea84dcebbcdbcd",
                "md5": "30f0eac26259bc16ca327eb69a2ce1d8",
                "sha256": "4d2afc913e6e9f99f784889a575d1379ff03c4672de264dde11c56152e4b103a"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.3.0-cp38-cp38-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "30f0eac26259bc16ca327eb69a2ce1d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1569709,
            "upload_time": "2024-02-06T17:36:45",
            "upload_time_iso_8601": "2024-02-06T17:36:45.716890Z",
            "url": "https://files.pythonhosted.org/packages/b0/e5/4d36897b6fedd69726bf304e1f4b306575504d8ac53ea4ea84dcebbcdbcd/pymongoarrow-1.3.0-cp38-cp38-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4803a4542f11ee6ea1fb79b61e19fa4eb91d0a5a835888c1f07ab448342c5aa6",
                "md5": "1613755137d413ff0e61e3d1ffe2fed6",
                "sha256": "e5b5b5346bc62f58008a98e23e9f5f531e3327ef7f87d101bac778213751358e"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.3.0-cp38-cp38-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1613755137d413ff0e61e3d1ffe2fed6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1581944,
            "upload_time": "2024-02-06T17:36:47",
            "upload_time_iso_8601": "2024-02-06T17:36:47.953936Z",
            "url": "https://files.pythonhosted.org/packages/48/03/a4542f11ee6ea1fb79b61e19fa4eb91d0a5a835888c1f07ab448342c5aa6/pymongoarrow-1.3.0-cp38-cp38-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "313e991869a6bb4af4613ef87d5c3d454fd67c02b83952fff58b5fbb6ec929ae",
                "md5": "838f5e7258dca13a17e5fd2ebfb807c7",
                "sha256": "ac14e83dd77cf606a8a9203465c0c48eaa49a5c7fee99bea516fe6de899ee8dc"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.3.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "838f5e7258dca13a17e5fd2ebfb807c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 237370,
            "upload_time": "2024-02-06T17:36:49",
            "upload_time_iso_8601": "2024-02-06T17:36:49.668213Z",
            "url": "https://files.pythonhosted.org/packages/31/3e/991869a6bb4af4613ef87d5c3d454fd67c02b83952fff58b5fbb6ec929ae/pymongoarrow-1.3.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "570523f2d7bd49ffe64ab387b01d1e0504908d64159189120038910e543f5f88",
                "md5": "bdcc8761e401d8bceb8a50a5b60488b4",
                "sha256": "2acd8bb37a6caeb7d883426d4fd4d58ee84c31dffdc7f16aeb52bad3d6827197"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.3.0-cp39-cp39-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bdcc8761e401d8bceb8a50a5b60488b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 298795,
            "upload_time": "2024-02-06T17:36:51",
            "upload_time_iso_8601": "2024-02-06T17:36:51.918665Z",
            "url": "https://files.pythonhosted.org/packages/57/05/23f2d7bd49ffe64ab387b01d1e0504908d64159189120038910e543f5f88/pymongoarrow-1.3.0-cp39-cp39-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e3f530eb223678bc3542b100b53dd76da3855f552f2f3beaea27f0371180dc4",
                "md5": "8030dffd1aad85aed401bdbedb274a89",
                "sha256": "cc042a18f992879b55f6da3b2c7c9d43b779d9255e22f309e4e6627a8ac9beed"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.3.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8030dffd1aad85aed401bdbedb274a89",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 280130,
            "upload_time": "2024-02-06T17:36:53",
            "upload_time_iso_8601": "2024-02-06T17:36:53.970561Z",
            "url": "https://files.pythonhosted.org/packages/4e/3f/530eb223678bc3542b100b53dd76da3855f552f2f3beaea27f0371180dc4/pymongoarrow-1.3.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2924f953463fa925a2c3f86938ce93394dc5a390957724bff4c7e0ec2e0ecb1b",
                "md5": "184b39e062576032a0ff83e9fea9a1d1",
                "sha256": "345100d1729bdd0454f84e6339943cb23a4504c6c288193f4b4e6610c4e505aa"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.3.0-cp39-cp39-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "184b39e062576032a0ff83e9fea9a1d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1548628,
            "upload_time": "2024-02-06T17:36:56",
            "upload_time_iso_8601": "2024-02-06T17:36:56.153282Z",
            "url": "https://files.pythonhosted.org/packages/29/24/f953463fa925a2c3f86938ce93394dc5a390957724bff4c7e0ec2e0ecb1b/pymongoarrow-1.3.0-cp39-cp39-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "53d2f6d5e2b3deef56510d0db1f4ef2da788ecf869beee8a0836190d7fe80a75",
                "md5": "6f52b196bab5c86be9b5e3b7982bd4aa",
                "sha256": "0876e62dc32a773edf623d5700fdf0eb89b9224c28dcf6081bca0acac137c9fb"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.3.0-cp39-cp39-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6f52b196bab5c86be9b5e3b7982bd4aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1561807,
            "upload_time": "2024-02-06T17:36:58",
            "upload_time_iso_8601": "2024-02-06T17:36:58.548968Z",
            "url": "https://files.pythonhosted.org/packages/53/d2/f6d5e2b3deef56510d0db1f4ef2da788ecf869beee8a0836190d7fe80a75/pymongoarrow-1.3.0-cp39-cp39-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c506595c378a7ed5e8add98f246504a2e304e80dfecb9f1d6c3c5202485177b",
                "md5": "d7f0f022f8c2db11cc1b0072307953f0",
                "sha256": "9c1e611ecf64db861d199ea439304e932abf4982cc873b82788f7f0344bd9ab7"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.3.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d7f0f022f8c2db11cc1b0072307953f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 236250,
            "upload_time": "2024-02-06T17:36:59",
            "upload_time_iso_8601": "2024-02-06T17:36:59.847978Z",
            "url": "https://files.pythonhosted.org/packages/0c/50/6595c378a7ed5e8add98f246504a2e304e80dfecb9f1d6c3c5202485177b/pymongoarrow-1.3.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8aa6f829d852da04ac5744521fdcdca93dc30afbaf177cbc0e5917a62c12b1e0",
                "md5": "fc6fe2749a0ca51facea7c7af49b0dcb",
                "sha256": "e409b7a2f388f6c3a8b82e164bcfa82d1a330ab0f891fa0945d1ba4c6f29f6f1"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.3.0.tar.gz",
            "has_sig": false,
            "md5_digest": "fc6fe2749a0ca51facea7c7af49b0dcb",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 54535,
            "upload_time": "2024-02-06T17:37:01",
            "upload_time_iso_8601": "2024-02-06T17:37:01.370826Z",
            "url": "https://files.pythonhosted.org/packages/8a/a6/f829d852da04ac5744521fdcdca93dc30afbaf177cbc0e5917a62c12b1e0/pymongoarrow-1.3.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-06 17:37:01",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "mongodb-labs",
    "github_project": "mongo-arrow",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pymongoarrow"
}
        
Elapsed time: 0.17687s