# 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 in the [Contributing Guide][./CONTRIBUTING.md]
## Documentation
Full documentation is available on [Read the
Docs](https://mongo-arrow.readthedocs.io/en/latest).
Raw data
{
"_id": null,
"home_page": null,
"name": "pymongoarrow",
"maintainer": "MongoDB, Inc.",
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "mongo, mongodb, pymongo, arrow, bson, numpy, pandas, polars",
"author": "Prashant Mital",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/56/55/f365a4f43585583ed07d2390bdd29741a4bbb70a7436d79f917159c87a79/pymongoarrow-1.6.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 in the [Contributing Guide][./CONTRIBUTING.md]\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.6.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/INTPYTHON/issues"
},
"split_keywords": [
"mongo",
" mongodb",
" pymongo",
" arrow",
" bson",
" numpy",
" pandas",
" polars"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "7d55355c77b9ddde911a5231bbadbbf3082056b75772e08a69a61a3b297d1206",
"md5": "ad7c033bd97b9fddf353e5c2b302675e",
"sha256": "6642424ca6b67a491e3d4424bc0b8991720c2861c71ed45261e3ddf2121a43ec"
},
"downloads": -1,
"filename": "pymongoarrow-1.6.0-cp310-cp310-macosx_12_0_arm64.whl",
"has_sig": false,
"md5_digest": "ad7c033bd97b9fddf353e5c2b302675e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 233206,
"upload_time": "2024-11-04T14:29:14",
"upload_time_iso_8601": "2024-11-04T14:29:14.656706Z",
"url": "https://files.pythonhosted.org/packages/7d/55/355c77b9ddde911a5231bbadbbf3082056b75772e08a69a61a3b297d1206/pymongoarrow-1.6.0-cp310-cp310-macosx_12_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "143ebf5b2408e96442eeba8a000a22bb0b4dee843a022c63ee82cb193eb14d8e",
"md5": "3b7f46867d0314988b258eda3c4397c1",
"sha256": "b4f08ee8b399aff9c7adae4d1b9632cd424c7196f466eb9605cd00ef5e82edcc"
},
"downloads": -1,
"filename": "pymongoarrow-1.6.0-cp310-cp310-macosx_12_0_x86_64.whl",
"has_sig": false,
"md5_digest": "3b7f46867d0314988b258eda3c4397c1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 248271,
"upload_time": "2024-11-04T14:29:16",
"upload_time_iso_8601": "2024-11-04T14:29:16.583482Z",
"url": "https://files.pythonhosted.org/packages/14/3e/bf5b2408e96442eeba8a000a22bb0b4dee843a022c63ee82cb193eb14d8e/pymongoarrow-1.6.0-cp310-cp310-macosx_12_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "123152b260ae689d94244b0737ae37f4dc760db9bf0871dac9532782a3a950c1",
"md5": "a4c39a96b781b14d2eea12929e60d854",
"sha256": "857055a6401017e781895bb51cef01c2e300bce03333e37da5acad14ac3b8971"
},
"downloads": -1,
"filename": "pymongoarrow-1.6.0-cp310-cp310-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "a4c39a96b781b14d2eea12929e60d854",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1284559,
"upload_time": "2024-11-04T14:29:18",
"upload_time_iso_8601": "2024-11-04T14:29:18.465764Z",
"url": "https://files.pythonhosted.org/packages/12/31/52b260ae689d94244b0737ae37f4dc760db9bf0871dac9532782a3a950c1/pymongoarrow-1.6.0-cp310-cp310-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ee3e6dec0f842dff049224c894e43c33c431ce708d77f33e2772352b8cba9b66",
"md5": "6294b511d684af0463953c9b7dcde0b8",
"sha256": "289b59e6f3ac1781c93028fecb0978872d8ff9a0603d810fa5f275d5ede1c257"
},
"downloads": -1,
"filename": "pymongoarrow-1.6.0-cp310-cp310-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "6294b511d684af0463953c9b7dcde0b8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1288510,
"upload_time": "2024-11-04T14:29:19",
"upload_time_iso_8601": "2024-11-04T14:29:19.998067Z",
"url": "https://files.pythonhosted.org/packages/ee/3e/6dec0f842dff049224c894e43c33c431ce708d77f33e2772352b8cba9b66/pymongoarrow-1.6.0-cp310-cp310-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e0129aa2c3967a7e473d941d2f8971a7535a016e06d79995f62690877e162811",
"md5": "42c2a9409f701201e466de3de07c9fcb",
"sha256": "3ad29605e22a6849030c2f5810aafd4dc79e00067c99db5136abe74396327165"
},
"downloads": -1,
"filename": "pymongoarrow-1.6.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "42c2a9409f701201e466de3de07c9fcb",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 219776,
"upload_time": "2024-11-04T14:29:21",
"upload_time_iso_8601": "2024-11-04T14:29:21.364406Z",
"url": "https://files.pythonhosted.org/packages/e0/12/9aa2c3967a7e473d941d2f8971a7535a016e06d79995f62690877e162811/pymongoarrow-1.6.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fbe223fa3a737eaba8e635601d13348f26efba5e0b38f7b830b4ccd7bf2ad786",
"md5": "aa5afe9c46b2f603f2b5cd34018316c6",
"sha256": "02f4bb410d88ddff95b1046f8abf553771ce876c7ca632f7cc36c7adc1661e2f"
},
"downloads": -1,
"filename": "pymongoarrow-1.6.0-cp311-cp311-macosx_12_0_arm64.whl",
"has_sig": false,
"md5_digest": "aa5afe9c46b2f603f2b5cd34018316c6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 233936,
"upload_time": "2024-11-04T14:29:23",
"upload_time_iso_8601": "2024-11-04T14:29:23.001018Z",
"url": "https://files.pythonhosted.org/packages/fb/e2/23fa3a737eaba8e635601d13348f26efba5e0b38f7b830b4ccd7bf2ad786/pymongoarrow-1.6.0-cp311-cp311-macosx_12_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "364c48826f1e9e46afcb5417d4900ca71dcd5ee7bff430e881afa5d6e73d5ec0",
"md5": "29c4c805aaaf7c7d1d9bedb8cd8c53c6",
"sha256": "c6e5a561456de60740b0e1b1f5cf86e5fbb0b89f4048efac94920c1f9510621e"
},
"downloads": -1,
"filename": "pymongoarrow-1.6.0-cp311-cp311-macosx_12_0_x86_64.whl",
"has_sig": false,
"md5_digest": "29c4c805aaaf7c7d1d9bedb8cd8c53c6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 249449,
"upload_time": "2024-11-04T14:29:24",
"upload_time_iso_8601": "2024-11-04T14:29:24.678914Z",
"url": "https://files.pythonhosted.org/packages/36/4c/48826f1e9e46afcb5417d4900ca71dcd5ee7bff430e881afa5d6e73d5ec0/pymongoarrow-1.6.0-cp311-cp311-macosx_12_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4a289badc4c40c47351ec8c0a03e2e90188441d8fa41a31db06f5882b3fdb253",
"md5": "ca25985014990df7979fc302d914f27a",
"sha256": "b8ac74df4fd2d8826226022aab2f1fd3d067e31814b457ef13bab64e9c5628e1"
},
"downloads": -1,
"filename": "pymongoarrow-1.6.0-cp311-cp311-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "ca25985014990df7979fc302d914f27a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1311411,
"upload_time": "2024-11-04T14:29:25",
"upload_time_iso_8601": "2024-11-04T14:29:25.940731Z",
"url": "https://files.pythonhosted.org/packages/4a/28/9badc4c40c47351ec8c0a03e2e90188441d8fa41a31db06f5882b3fdb253/pymongoarrow-1.6.0-cp311-cp311-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "83e33bd1841b8f93a3f13be9a14e606c76e46eb0c9fcf1a46d545f0e9cafe0eb",
"md5": "30b0d60685ae33929c5a4533d72c9b05",
"sha256": "915b3df7d203a1cf7249ce8af59b77de0a5aaec16c09b62577a7f47856677880"
},
"downloads": -1,
"filename": "pymongoarrow-1.6.0-cp311-cp311-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "30b0d60685ae33929c5a4533d72c9b05",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1315115,
"upload_time": "2024-11-04T14:29:27",
"upload_time_iso_8601": "2024-11-04T14:29:27.441857Z",
"url": "https://files.pythonhosted.org/packages/83/e3/3bd1841b8f93a3f13be9a14e606c76e46eb0c9fcf1a46d545f0e9cafe0eb/pymongoarrow-1.6.0-cp311-cp311-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fb87ecd8be9e4d970f9dfbfc79947ce792794096ef8eb25a4c1a7825e3c78b80",
"md5": "6be1ff7cf92cefa6bb70ed17ae5e1eeb",
"sha256": "a69a7e5ac04673b30dea7b071d53ad9a23ab533425928f914ed6dac60f24d165"
},
"downloads": -1,
"filename": "pymongoarrow-1.6.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "6be1ff7cf92cefa6bb70ed17ae5e1eeb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 220077,
"upload_time": "2024-11-04T14:29:29",
"upload_time_iso_8601": "2024-11-04T14:29:29.046000Z",
"url": "https://files.pythonhosted.org/packages/fb/87/ecd8be9e4d970f9dfbfc79947ce792794096ef8eb25a4c1a7825e3c78b80/pymongoarrow-1.6.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "be02eee9b9b500093c839c0a0e72b3a0aefa4cfca73afbc2be34c1fbbbe9ffdd",
"md5": "550ffa4d352ff37a6ce9277839df433e",
"sha256": "46605bddf76f8edf25652c97af3e03ffecb71fc671e56f77016eb9aa20813055"
},
"downloads": -1,
"filename": "pymongoarrow-1.6.0-cp312-cp312-macosx_12_0_arm64.whl",
"has_sig": false,
"md5_digest": "550ffa4d352ff37a6ce9277839df433e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 234037,
"upload_time": "2024-11-04T14:29:30",
"upload_time_iso_8601": "2024-11-04T14:29:30.817874Z",
"url": "https://files.pythonhosted.org/packages/be/02/eee9b9b500093c839c0a0e72b3a0aefa4cfca73afbc2be34c1fbbbe9ffdd/pymongoarrow-1.6.0-cp312-cp312-macosx_12_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cea694ef2a72bcf51e626a1a3635bbed69c419c7d81a3b44a53e07ac622c2310",
"md5": "418b0a60add2a22e2258f36d9064a9fd",
"sha256": "ad61f59faea02fc426d067711890bd902d386f4b7e68efa634be1ac2ff6633dc"
},
"downloads": -1,
"filename": "pymongoarrow-1.6.0-cp312-cp312-macosx_12_0_x86_64.whl",
"has_sig": false,
"md5_digest": "418b0a60add2a22e2258f36d9064a9fd",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 249284,
"upload_time": "2024-11-04T14:29:32",
"upload_time_iso_8601": "2024-11-04T14:29:32.692136Z",
"url": "https://files.pythonhosted.org/packages/ce/a6/94ef2a72bcf51e626a1a3635bbed69c419c7d81a3b44a53e07ac622c2310/pymongoarrow-1.6.0-cp312-cp312-macosx_12_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8c550b44f02769d9cafbf7d8caaa927831d9366116cf7f30b1793d54890757eb",
"md5": "5f3cf172778f28d0cbefebc8b318df32",
"sha256": "e9a39096f78ac96e96a864cb95255fd8b63875a587ce7e3e32711c5657110a8c"
},
"downloads": -1,
"filename": "pymongoarrow-1.6.0-cp312-cp312-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "5f3cf172778f28d0cbefebc8b318df32",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1291234,
"upload_time": "2024-11-04T14:29:34",
"upload_time_iso_8601": "2024-11-04T14:29:34.598432Z",
"url": "https://files.pythonhosted.org/packages/8c/55/0b44f02769d9cafbf7d8caaa927831d9366116cf7f30b1793d54890757eb/pymongoarrow-1.6.0-cp312-cp312-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "01129adc744bf888826c04b3852af07b335c8e1b07c098b1539d4fc92d9384da",
"md5": "0403675d34abe72b7954b4fafb5b7be5",
"sha256": "f400782f4f031b279f4309741ec08113c07a48c3cae8bf5efedb8e9e1e261b40"
},
"downloads": -1,
"filename": "pymongoarrow-1.6.0-cp312-cp312-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "0403675d34abe72b7954b4fafb5b7be5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1303261,
"upload_time": "2024-11-04T14:29:37",
"upload_time_iso_8601": "2024-11-04T14:29:37.476420Z",
"url": "https://files.pythonhosted.org/packages/01/12/9adc744bf888826c04b3852af07b335c8e1b07c098b1539d4fc92d9384da/pymongoarrow-1.6.0-cp312-cp312-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "55a049b656fe5bdaabf7462777bfea0a877232e84f932388f33ba03836e734e7",
"md5": "4704be75b78020babda51807f8a09560",
"sha256": "d2f56601833896c79a53080f8ce76fb84ef11298eddb679fed52a5a270104b11"
},
"downloads": -1,
"filename": "pymongoarrow-1.6.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "4704be75b78020babda51807f8a09560",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 218748,
"upload_time": "2024-11-04T14:29:39",
"upload_time_iso_8601": "2024-11-04T14:29:39.172354Z",
"url": "https://files.pythonhosted.org/packages/55/a0/49b656fe5bdaabf7462777bfea0a877232e84f932388f33ba03836e734e7/pymongoarrow-1.6.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b3ced5acd28236d209a179331ccb2e182f2cb9405f03edf3232a4108d1467e88",
"md5": "119f807c53b056d37289d3dc9f7c3515",
"sha256": "b47645d1e0d1480910b4040417c09bc68a5730af3c74307bd9781c233fadec90"
},
"downloads": -1,
"filename": "pymongoarrow-1.6.0-cp313-cp313-macosx_12_0_arm64.whl",
"has_sig": false,
"md5_digest": "119f807c53b056d37289d3dc9f7c3515",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 232526,
"upload_time": "2024-11-04T14:29:40",
"upload_time_iso_8601": "2024-11-04T14:29:40.708839Z",
"url": "https://files.pythonhosted.org/packages/b3/ce/d5acd28236d209a179331ccb2e182f2cb9405f03edf3232a4108d1467e88/pymongoarrow-1.6.0-cp313-cp313-macosx_12_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c6298e1c17cc9f36cb60eb73afcf43bec0ed0aa801df0ef30104ec4f4e0415c3",
"md5": "eb92868db22a430925db914f787e6ee3",
"sha256": "2ff4e2bc1a6f4df197cf9f13ef8f263cfb28139a0930d183e2490990098fe8de"
},
"downloads": -1,
"filename": "pymongoarrow-1.6.0-cp313-cp313-macosx_12_0_x86_64.whl",
"has_sig": false,
"md5_digest": "eb92868db22a430925db914f787e6ee3",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 247814,
"upload_time": "2024-11-04T14:29:42",
"upload_time_iso_8601": "2024-11-04T14:29:42.035885Z",
"url": "https://files.pythonhosted.org/packages/c6/29/8e1c17cc9f36cb60eb73afcf43bec0ed0aa801df0ef30104ec4f4e0415c3/pymongoarrow-1.6.0-cp313-cp313-macosx_12_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "868b921a0f30d728c7f51abc9b59da9da27805ee2c5eeb1fd08ba25d19ace09a",
"md5": "e6384a047da60eef4cfa9bebb585c413",
"sha256": "d0de130532f870f71cda2ccb75011ba6439b3968bd72b1fcc47ffe5c5f800aee"
},
"downloads": -1,
"filename": "pymongoarrow-1.6.0-cp313-cp313-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "e6384a047da60eef4cfa9bebb585c413",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1286915,
"upload_time": "2024-11-04T14:29:43",
"upload_time_iso_8601": "2024-11-04T14:29:43.864563Z",
"url": "https://files.pythonhosted.org/packages/86/8b/921a0f30d728c7f51abc9b59da9da27805ee2c5eeb1fd08ba25d19ace09a/pymongoarrow-1.6.0-cp313-cp313-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "40815782942ac7a79f29884e43a978254edb70feb4dd29db3886719a7dc16380",
"md5": "0c40eb421781aa8ff57fe1dca17b99eb",
"sha256": "085c68d7e3ad8fd4508c8d016ba4faab80862fe80b9a5794b2716b6bc8a28ac4"
},
"downloads": -1,
"filename": "pymongoarrow-1.6.0-cp313-cp313-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "0c40eb421781aa8ff57fe1dca17b99eb",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1299711,
"upload_time": "2024-11-04T14:29:48",
"upload_time_iso_8601": "2024-11-04T14:29:48.177927Z",
"url": "https://files.pythonhosted.org/packages/40/81/5782942ac7a79f29884e43a978254edb70feb4dd29db3886719a7dc16380/pymongoarrow-1.6.0-cp313-cp313-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5cf4b2ec73c96a581bc115f9e3ad09c2c79e9773488f1e94fb52ffff057f1edc",
"md5": "1bc679fb415f809a3cb01a7d7d889679",
"sha256": "7bef446e0c6e12830baabf8a119ff5e503fd7219c68b0986ae345a693b0a331a"
},
"downloads": -1,
"filename": "pymongoarrow-1.6.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "1bc679fb415f809a3cb01a7d7d889679",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 218071,
"upload_time": "2024-11-04T14:29:50",
"upload_time_iso_8601": "2024-11-04T14:29:50.158036Z",
"url": "https://files.pythonhosted.org/packages/5c/f4/b2ec73c96a581bc115f9e3ad09c2c79e9773488f1e94fb52ffff057f1edc/pymongoarrow-1.6.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7400baf1827a6f4850fab13328fc223dc0f28131d186a20f04e267ec03491bac",
"md5": "e2b41e17dde1e1fb2800871a6462118d",
"sha256": "2aa297d6245768d16a8c7869f7c699f8a5408231932c585bc3a007db98934140"
},
"downloads": -1,
"filename": "pymongoarrow-1.6.0-cp39-cp39-macosx_12_0_arm64.whl",
"has_sig": false,
"md5_digest": "e2b41e17dde1e1fb2800871a6462118d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 247727,
"upload_time": "2024-11-04T14:29:52",
"upload_time_iso_8601": "2024-11-04T14:29:52.081723Z",
"url": "https://files.pythonhosted.org/packages/74/00/baf1827a6f4850fab13328fc223dc0f28131d186a20f04e267ec03491bac/pymongoarrow-1.6.0-cp39-cp39-macosx_12_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "77d9040a2ab279aef4228002542ab78dcd63c5b448555438e040a427436c8556",
"md5": "e2b8d8043ee69dc0e1df9a9c7c0078aa",
"sha256": "3dbae8cbfde1393d4f94fc2f05b03839bddc13a10b9e50b980613209eb41b1ea"
},
"downloads": -1,
"filename": "pymongoarrow-1.6.0-cp39-cp39-macosx_12_0_x86_64.whl",
"has_sig": false,
"md5_digest": "e2b8d8043ee69dc0e1df9a9c7c0078aa",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 258271,
"upload_time": "2024-11-04T14:29:53",
"upload_time_iso_8601": "2024-11-04T14:29:53.286887Z",
"url": "https://files.pythonhosted.org/packages/77/d9/040a2ab279aef4228002542ab78dcd63c5b448555438e040a427436c8556/pymongoarrow-1.6.0-cp39-cp39-macosx_12_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fc9997a04f810f6afdd840b249e8b78ba5be8c075dfd923b288791775b9bcb12",
"md5": "a5a74c911dc152d53c1f5fa3c7fabd55",
"sha256": "3174ba0ab137bc7fecd63da33bdfa0c098b382ec3a45a43a2b5f3f6dab7f125d"
},
"downloads": -1,
"filename": "pymongoarrow-1.6.0-cp39-cp39-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "a5a74c911dc152d53c1f5fa3c7fabd55",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1287753,
"upload_time": "2024-11-04T14:29:54",
"upload_time_iso_8601": "2024-11-04T14:29:54.666173Z",
"url": "https://files.pythonhosted.org/packages/fc/99/97a04f810f6afdd840b249e8b78ba5be8c075dfd923b288791775b9bcb12/pymongoarrow-1.6.0-cp39-cp39-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f3afad908327bddb836d463a6bf78593041484b8b94722f5a866c8e6ba34e455",
"md5": "b6b04ba35f1085630986f9bea5b8d44d",
"sha256": "d31afd83eac59bb4e9bd9536e2442825f88565f62e930d9c54e07ec6e2ff15e6"
},
"downloads": -1,
"filename": "pymongoarrow-1.6.0-cp39-cp39-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "b6b04ba35f1085630986f9bea5b8d44d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1290288,
"upload_time": "2024-11-04T14:29:56",
"upload_time_iso_8601": "2024-11-04T14:29:56.103629Z",
"url": "https://files.pythonhosted.org/packages/f3/af/ad908327bddb836d463a6bf78593041484b8b94722f5a866c8e6ba34e455/pymongoarrow-1.6.0-cp39-cp39-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5f37394f7858ec4b6d8dda7e192f1e626fe6bb0da3d33746ddc3310a8e29c902",
"md5": "16bdf6eb12e9ec2d91bba9b9697a24b6",
"sha256": "592027b4d18ef580c7b17fff09ec5458fe18ba489e2033ea3abc8ce8085689d3"
},
"downloads": -1,
"filename": "pymongoarrow-1.6.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "16bdf6eb12e9ec2d91bba9b9697a24b6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 220052,
"upload_time": "2024-11-04T14:29:58",
"upload_time_iso_8601": "2024-11-04T14:29:58.197644Z",
"url": "https://files.pythonhosted.org/packages/5f/37/394f7858ec4b6d8dda7e192f1e626fe6bb0da3d33746ddc3310a8e29c902/pymongoarrow-1.6.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5655f365a4f43585583ed07d2390bdd29741a4bbb70a7436d79f917159c87a79",
"md5": "32620a09e39de7b022f3bcb606dcd98e",
"sha256": "c1982adfb295b0b13c4f3fdd76018306eb39b0eaad17221286909dbacf3cfaa6"
},
"downloads": -1,
"filename": "pymongoarrow-1.6.0.tar.gz",
"has_sig": false,
"md5_digest": "32620a09e39de7b022f3bcb606dcd98e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 58773,
"upload_time": "2024-11-04T14:29:59",
"upload_time_iso_8601": "2024-11-04T14:29:59.315271Z",
"url": "https://files.pythonhosted.org/packages/56/55/f365a4f43585583ed07d2390bdd29741a4bbb70a7436d79f917159c87a79/pymongoarrow-1.6.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-04 14:29:59",
"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"
}