Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/felipenoris/mongoc.jl
MongoDB driver for the Julia Language
https://github.com/felipenoris/mongoc.jl
julia julia-language mongodb mongodb-driver
Last synced: 13 days ago
JSON representation
MongoDB driver for the Julia Language
- Host: GitHub
- URL: https://github.com/felipenoris/mongoc.jl
- Owner: felipenoris
- License: other
- Created: 2018-09-11T23:14:33.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-09-27T00:33:01.000Z (about 2 months ago)
- Last Synced: 2024-10-13T13:29:30.650Z (about 1 month ago)
- Topics: julia, julia-language, mongodb, mongodb-driver
- Language: Julia
- Homepage: https://felipenoris.github.io/Mongoc.jl/stable
- Size: 1.31 MB
- Stars: 80
- Watchers: 7
- Forks: 20
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Mongoc.jl
[![License][license-img]](LICENSE)
[![CI][ci-img]][ci-url]
[![appveyor][appveyor-img]][appveyor-url]
[![codecov][codecov-img]][codecov-url]
[![dev][docs-dev-img]][docs-dev-url]
[![stable][docs-stable-img]][docs-stable-url][license-img]: http://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square
[ci-img]: https://github.com/felipenoris/Mongoc.jl/workflows/CI/badge.svg
[ci-url]: https://github.com/felipenoris/Mongoc.jl/actions?query=workflow%3ACI
[appveyor-img]: https://img.shields.io/appveyor/ci/felipenoris/mongoc-jl/master.svg?logo=appveyor&label=Windows&style=flat-square
[appveyor-url]: https://ci.appveyor.com/project/felipenoris/mongoc-jl/branch/master
[codecov-img]: https://img.shields.io/codecov/c/github/felipenoris/Mongoc.jl/master.svg?label=codecov&style=flat-square
[codecov-url]: http://codecov.io/github/felipenoris/Mongoc.jl?branch=master
[docs-dev-img]: https://img.shields.io/badge/docs-dev-blue.svg?style=flat-square
[docs-dev-url]: https://felipenoris.github.io/Mongoc.jl/dev
[docs-stable-img]: https://img.shields.io/badge/docs-stable-blue.svg?style=flat-square
[docs-stable-url]: https://felipenoris.github.io/Mongoc.jl/stable**Mongoc.jl** is a [MongoDB](https://www.mongodb.com/) driver for the Julia Language.
It is implemented as a thin wrapper around [libmongoc](http://mongoc.org/), the official client library for C applications.
Given that [BSON](http://bsonspec.org/) is the document format for MongoDB,
this package also implements a wrapper around [libbson](http://mongoc.org/libbson/current/index.html),
which provides a way to create and manipulate BSON documents.## Requirements
* MongoDB 3.0 or newer.
* Julia v1.6 or newer.
* Linux, macOS, or Windows.
## Installation
From a Julia session, run:
```julia
julia> using Pkgjulia> Pkg.add("Mongoc")
```## Documentation
The documentation for this package is hosted at https://felipenoris.github.io/Mongoc.jl/stable.
## License
The source code for the package `Mongoc.jl` is licensed under the [MIT License](https://github.com/felipenoris/Mongoc.jl/blob/master/LICENSE).
This repository distributes binary assets built from [mongo-c-driver](https://github.com/mongodb/mongo-c-driver) source code,
which is licensed under [Apache-2.0](https://github.com/mongodb/mongo-c-driver/blob/master/COPYING).