MongoEngine Tutorial
Selected Reading
- MongoEngine - Discussion
- MongoEngine - Useful Resources
- MongoEngine - Quick Guide
- MongoEngine - Extensions
- MongoEngine - Text Search
- MongoEngine - Signals
- MongoEngine - GridFS
- MongoEngine - Javascript
- MongoEngine - Atomic Updates
- MongoEngine - Document Inheritance
- MongoEngine - Advanced Queries
- MongoEngine - Aggregation
- MongoEngine - Indexes
- MongoEngine - Custom Query Sets
- MongoEngine - Sorting
- MongoEngine - QuerySet Methods
- MongoEngine - Query Operators
- MongoEngine - Filters
- MongoEngine - Querying Database
- MongoEngine - Add/Delete Document
- MongoEngine - Fields
- MongoEngine - Dynamic Schema
- MongoEngine - Document Class
- MongoEngine - Connecting to MongoDB Database
- MongoEngine - Installation
- MongoEngine - Object Document Mapper
- MongoEngine - MongoDB Compass
- MongoEngine - MongoDB
- MongoEngine - Home
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
MongoEngine - Installation
MongoEngine - Installation
To use MongoEngine, you need to have already installed MongoDB and MongoDB server should be running as described earper.
Easiest way to install MongoEngine is by using PIP installer.
pip install mongoengine
If your Python installation does not have Setuptools installed, you will have to download MongoEngine from
and run the following command −python setup.py install
MongoEngine has the following dependencies −
pymongo>=3.4
six>=1.10.0
dateutil>=2.1.0
pillow>=2.0.0
To verify the correct installation, run import command and check version as follows −
>>> import mongoengine >>> mongoengine.__version__ 0.19.1Advertisements