Skip to content

Commit 40e5f24

Browse files
committed
adding pymongo driver
1 parent cfbfc8a commit 40e5f24

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

all.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2062,7 +2062,9 @@ <h3>Document-oriented data stores</h3>
20622062
<li>
20632063
<p><a href="http://www.mongodb.org/">MongoDB</a> is an open source document-oriented
20642064
data store with a Binary Object Notation (BSON) storage format that is
2065-
JSON-style and familiar to web developers.</p>
2065+
JSON-style and familiar to web developers.
2066+
<a href="http://docs.mongodb.org/ecosystem/drivers/python/">PyMongo</a> is the most
2067+
commonly used client to interface with MongoDB through Python code.</p>
20662068
</li>
20672069
<li>
20682070
<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>2014-12-02T06:35:32Z</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>2014-12-05T12:13:08Z</updated></feed>

no-sql-datastore.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,9 @@ <h3>Document-oriented data stores</h3>
8181
<li>
8282
<p><a href="http://www.mongodb.org/">MongoDB</a> is an open source document-oriented
8383
data store with a Binary Object Notation (BSON) storage format that is
84-
JSON-style and familiar to web developers.</p>
84+
JSON-style and familiar to web developers.
85+
<a href="http://docs.mongodb.org/ecosystem/drivers/python/">PyMongo</a> is the most
86+
commonly used client to interface with MongoDB through Python code.</p>
8587
</li>
8688
<li>
8789
<p><a href="http://basho.com/riak/">Riak</a> is an open source distributed data store

source/content/pages/04-data/0402-no-sql-datastores.markdown

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ nested data.
6060
### Document-oriented data stores
6161
* [MongoDB](http://www.mongodb.org/) is an open source document-oriented
6262
data store with a Binary Object Notation (BSON) storage format that is
63-
JSON-style and familiar to web developers.
63+
JSON-style and familiar to web developers.
64+
[PyMongo](http://docs.mongodb.org/ecosystem/drivers/python/) is the most
65+
commonly used client to interface with MongoDB through Python code.
6466

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

0 commit comments

Comments
 (0)