Skip to content

Commit be955e0

Browse files
committed
adding note about MongoEngine
1 parent 09389b4 commit be955e0

File tree

4 files changed

+16
-7
lines changed

4 files changed

+16
-7
lines changed

all.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3086,8 +3086,11 @@ <h3>Document-oriented data stores</h3>
30863086
<p><a href="http://www.mongodb.org/">MongoDB</a> is an open source document-oriented
30873087
data store with a Binary Object Notation (BSON) storage format that is
30883088
JSON-style and familiar to web developers.
3089-
<a href="http://docs.mongodb.org/ecosystem/drivers/python/">PyMongo</a> is the most
3090-
commonly used client to interface with MongoDB through Python code.</p>
3089+
<a href="http://docs.mongodb.org/ecosystem/drivers/python/">PyMongo</a> is a
3090+
are commonly used client for interfacing with one or more MongoDB
3091+
instances through Python code. <a href="http://mongoengine.org/">MongoEngine</a>
3092+
is a Python ORM specifically written for MongoDB that is built on top
3093+
of PyMongo.</p>
30913094
</li>
30923095
<li>
30933096
<p><a href="http://basho.com/riak/">Riak</a> is an open source distributed data store

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2015-05-19T06:44:33Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2015-05-20T06:45:17Z</updated></feed>

no-sql-datastore.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,11 @@ <h3>Document-oriented data stores</h3>
9292
<p><a href="http://www.mongodb.org/">MongoDB</a> is an open source document-oriented
9393
data store with a Binary Object Notation (BSON) storage format that is
9494
JSON-style and familiar to web developers.
95-
<a href="http://docs.mongodb.org/ecosystem/drivers/python/">PyMongo</a> is the most
96-
commonly used client to interface with MongoDB through Python code.</p>
95+
<a href="http://docs.mongodb.org/ecosystem/drivers/python/">PyMongo</a> is a
96+
are commonly used client for interfacing with one or more MongoDB
97+
instances through Python code. <a href="http://mongoengine.org/">MongoEngine</a>
98+
is a Python ORM specifically written for MongoDB that is built on top
99+
of PyMongo.</p>
97100
</li>
98101
<li>
99102
<p><a href="http://basho.com/riak/">Riak</a> is an open source distributed data store

source/content/pages/05-data/03-nosql.markdown

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,11 @@ nested data.
6363
* [MongoDB](http://www.mongodb.org/) is an open source document-oriented
6464
data store with a Binary Object Notation (BSON) storage format that is
6565
JSON-style and familiar to web developers.
66-
[PyMongo](http://docs.mongodb.org/ecosystem/drivers/python/) is the most
67-
commonly used client to interface with MongoDB through Python code.
66+
[PyMongo](http://docs.mongodb.org/ecosystem/drivers/python/) is a
67+
are commonly used client for interfacing with one or more MongoDB
68+
instances through Python code. [MongoEngine](http://mongoengine.org/)
69+
is a Python ORM specifically written for MongoDB that is built on top
70+
of PyMongo.
6871

6972
* [Riak](http://basho.com/riak/) is an open source distributed data store
7073
focused on availability, fault tolerance and large scale deployments.

0 commit comments

Comments
 (0)