Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/WolframResearch/MongoLink
MongoLink is a package for interacting with MongoDB inside the Wolfram Language.
https://github.com/WolframResearch/MongoLink
driver mathematica mongodb mongolink wolfram-language
Last synced: about 1 month ago
JSON representation
MongoLink is a package for interacting with MongoDB inside the Wolfram Language.
- Host: GitHub
- URL: https://github.com/WolframResearch/MongoLink
- Owner: WolframResearch
- License: apache-2.0
- Created: 2018-07-17T21:26:05.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-07-15T23:03:51.000Z (over 3 years ago)
- Last Synced: 2024-08-05T09:11:36.087Z (5 months ago)
- Topics: driver, mathematica, mongodb, mongolink, wolfram-language
- Language: Mathematica
- Homepage:
- Size: 1.41 MB
- Stars: 17
- Watchers: 15
- Forks: 5
- Open Issues: 3
-
Metadata Files:
- Readme: Readme.md
- Contributing: CONTRIBUTING.md
- License: COPYING.md
Awesome Lists containing this project
- awesome-wolfram-language - MongoLink
README
# MongoDB Link for the Wolfram Language
MongoLink is a package for interacting with MongoDB inside the [Wolfram Language](https://www.wolfram.com/language/). It interfaces to the [MongoDB C driver.](https://docs.mongodb.org/ecosystem/drivers/c/) via LibraryLink.
The design aims to follow the official Mongo API reference (https://docs.mongodb.com/manual/reference/), along with trying to use standard Wolfram Language conventions and options.
Not all functionality in MongoDB is exposed in MongoLink. If you want something that is missing, please request it in the Github Issues. Or better yet, make a PR!
### Installing the MongoLink release
The MongoLink release comes in the form of a `.paclet` file, which contains the entire package and its documentation. Download the latest release from the [Github repo's releases page](https://github.com/WolframResearch/MongoLink/releases). To install, run the following command in the Wolfram Language:
```
PacletInstall["/full/path/to/MongoLink.paclet"]
```
This will permanently install the MongoLink paclet. The Wolfram Language will always use the latest installed version of MongoLink. Installed versions can be enumerated using the command:
```
PacletFind["MongoLink"]
```
And all versions can be uninstalled using the command:
```
PacletUninstall["MongoLink"]
```### Using MongoLink
To access the documentation, open the notebook interface help viewer, and search for `MongoLink`.
### Where did this come from?
MongoLink is a paclet started and maintained by Sebastian Bodenstein of Wolfram Research. It is used within Wolfram Research by the Machine Learning Group to manage large machine learning datasets.
### Acknowledgements
Much of the documentation was adapted and/or copied from the excellent [PyMongo](https://api.mongodb.com/python/current/) and [MongoDB C Driver](http://mongoc.org/libmongoc/current/index.html) documentation.
### More...
See the following files for more information:
* [COPYING.md](COPYING.md) - MongoLink license
* [CONTRIBUTING.md](CONTRIBUTING.md) - Guidelines for contributing to MongoLink
* [HowToBuild.md](HowToBuild.md) - Instructions for building MongoLink