https://github.com/mongodb/bson-numpy
This project has been superseded by PyMongoArrow - https://github.com/mongodb-labs/mongo-arrow/tree/main/bindings/python
https://github.com/mongodb/bson-numpy
Last synced: 4 months ago
JSON representation
This project has been superseded by PyMongoArrow - https://github.com/mongodb-labs/mongo-arrow/tree/main/bindings/python
- Host: GitHub
- URL: https://github.com/mongodb/bson-numpy
- Owner: mongodb
- License: apache-2.0
- Archived: true
- Created: 2016-06-23T11:56:44.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2021-05-03T19:49:51.000Z (about 4 years ago)
- Last Synced: 2025-01-09T10:29:24.188Z (4 months ago)
- Language: C
- Homepage: https://bson-numpy.readthedocs.io/en/latest/
- Size: 479 KB
- Stars: 43
- Watchers: 33
- Forks: 14
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
==========
BSON-NumPy
==========MongoDB, Inc. has stopped development of BSON-NumPy and this project has been superseded by
`PyMongoArrow `_. In addition
to NumPy arrays, **PyMongoArrow** also supports direct conversion of MongoDB query results to
Pandas DataFrames and Apache Arrow Tables, amongst other features. See the project
`documentation `_ to get started with **PyMongoArrow**.:Info: See `the mongo site `_ for more information. See `GitHub `_ for the latest source.
:Author: Anna Herlihy
:Maintainer: The MongoDB Python Team
:Documentation: https://bson-numpy.readthedocs.io/en/latest/About
=====A Python extension written in C that uses `libbson
`_ to convert between `NumPy `_
arrays and `BSON `_, the native data format of MongoDB.This project is a **prototype** and not ready for production use.
Bugs / Feature Requests
=======================Think you’ve found a bug? Want to see a new feature in BSON-NumPy? `Please open a
issue in github. `_How To Ask For Help
-------------------Please include all of the following information when opening an issue:
- Detailed steps to reproduce the problem, including full traceback, if possible.
- The exact python version used, with patch level::$ python -c "import sys; print(sys.version)"
- The exact version of bson-numpy used::
$ python -c "import bsonnumpy; print(bsonnumpy.__version__)"
- The operating system and version (e.g. Windows 7, OSX 10.8, ...)
Installation
============Please see the `instructions on readthedocs.
`_Dependencies
============BSON-NumPy supports CPython 3.5+. BSON-NumPy requires NumPy 1.17.0+, and works
with PyMongo 3.6+.Examples
========Please see the `examples on readthedocs.
`_Documentation
=============Please see the `documentation on readthedocs.
`_Testing
=======The easiest way to run the tests is to run **python setup.py test** in
the root of the distribution... _sphinx: http://sphinx.pocoo.org/