Dask + Mongo intergration
Project description
Dask-Mongo
Read and write data to MongoDB with Dask
Installation
dask-mongo
can be installed with pip
:
pip install dask-mongo
or with conda
:
conda install -c conda-forge dask-mongo
Example
import dask.bag as db
import dask_mongo
# Create Dask Bag
records = [
{"name": "Alice", "fruit": "apricots"},
{"name": "Bob", "fruit": ["apricots", "cherries"]},
{"name": "John", "age": 17, "sports": "cycling"},
]
b = db.from_sequence(records)
# Write to a Mongo database
dask_mongo.to_mongo(
b,
database="your_database",
collection="your_collection",
connection_kwargs={"host": "localhost", "port": 27017},
)
# Read Dask Bag from Mongo database
b = dask_mongo.read_mongo(
database="your_database",
collection="your_collection",
connection_kwargs={"host": "localhost", "port": 27017},
chunksize=2,
)
# Perform normal operations with Dask
names = b.pluck("name").compute()
assert names == ["Alice", "Bob", "John"]
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
dask-mongo-2022.5.0.tar.gz
(5.7 kB
view hashes)
Built Distribution
Close
Hashes for dask_mongo-2022.5.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7ea5a9525e15592e9fa87980661fbe1bcffc9c49c899bdffc9f7cbf1ea8fbee0 |
|
MD5 | 926803b0aac2d2369853c0f5c58651ab |
|
BLAKE2b-256 | 569978481ee23c89bf9c18beb4dbfc675b238f16cf7eb3f064fc258b97006556 |