Skip to content

Commit d917ca9

Browse files
committed
work on mongodb page
1 parent 7166ca0 commit d917ca9

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

all.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9072,6 +9072,9 @@ <h1>MongoDB</h1>
90729072
<div class="well see-also">MongoDB is an implementation of the <a href="/no-sql-datastore.html">NoSQL database</a> concept. Learn more in the <a href="/data.html">data</a> chapter or view the <a href="/table-of-contents.html">table of contents</a> for all topics.</div>
90739073

90749074
<h3>Introduction to MongoDB tutorials</h3>
9075+
<p>MongoDB is straightforward to use in a Python application when a driver
9076+
such as PyMongo is installed. The following tutorials show how to install,
9077+
configure and start using MongoDB with Python.</p>
90759078
<ul>
90769079
<li>
90779080
<p><a href="https://realpython.com/blog/python/introduction-to-mongodb-and-python/">Introduction to MongoDB and Python</a>
@@ -9082,6 +9085,11 @@ <h3>Introduction to MongoDB tutorials</h3>
90829085
goes over the basics for creating, querying, updating and deleting data
90839086
in MongoDB.</p>
90849087
</li>
9088+
<li>
9089+
<p>A <a href="http://altons.github.io/python/2013/01/21/gentle-introduction-to-mongodb-using-pymongo/">Gentle Introduction to MongoDB using Pymongo</a>
9090+
reviews a connection configuration file, the basics for data insertion,
9091+
aggregation and updating records.</p>
9092+
</li>
90859093
</ul>
90869094
<h3>MongoDB security</h3>
90879095
<ul>

mongodb.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ <h1>MongoDB</h1>
4444
<div class="well see-also">MongoDB is an implementation of the <a href="/no-sql-datastore.html">NoSQL database</a> concept. Learn more in the <a href="/data.html">data</a> chapter or view the <a href="/table-of-contents.html">table of contents</a> for all topics.</div>
4545

4646
<h3>Introduction to MongoDB tutorials</h3>
47+
<p>MongoDB is straightforward to use in a Python application when a driver
48+
such as PyMongo is installed. The following tutorials show how to install,
49+
configure and start using MongoDB with Python.</p>
4750
<ul>
4851
<li>
4952
<p><a href="https://realpython.com/blog/python/introduction-to-mongodb-and-python/">Introduction to MongoDB and Python</a>
@@ -54,6 +57,11 @@ <h3>Introduction to MongoDB tutorials</h3>
5457
goes over the basics for creating, querying, updating and deleting data
5558
in MongoDB.</p>
5659
</li>
60+
<li>
61+
<p>A <a href="http://altons.github.io/python/2013/01/21/gentle-introduction-to-mongodb-using-pymongo/">Gentle Introduction to MongoDB using Pymongo</a>
62+
reviews a connection configuration file, the basics for data insertion,
63+
aggregation and updating records.</p>
64+
</li>
5765
</ul>
5866
<h3>MongoDB security</h3>
5967
<ul>

source/content/pages/09-data/14-mongodb.markdown

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,21 @@ storing, querying and analyzing persistence data in Python applications.
1818

1919

2020
### Introduction to MongoDB tutorials
21+
MongoDB is straightforward to use in a Python application when a driver
22+
such as PyMongo is installed. The following tutorials show how to install,
23+
configure and start using MongoDB with Python.
24+
2125
* [Introduction to MongoDB and Python](https://realpython.com/blog/python/introduction-to-mongodb-and-python/)
2226
shows how to use Python to interface with MongoDB via PyMongo and MongoEngine.
2327

2428
* [MongoDB In 30 Minutes](https://www.youtube.com/watch?list=PL1Z_7yg6Pa3AhqCOTQKm9X_Sl9xLdMKYo&v=pWbMrx5rVBE)
2529
goes over the basics for creating, querying, updating and deleting data
2630
in MongoDB.
2731

32+
* A [Gentle Introduction to MongoDB using Pymongo](http://altons.github.io/python/2013/01/21/gentle-introduction-to-mongodb-using-pymongo/)
33+
reviews a connection configuration file, the basics for data insertion,
34+
aggregation and updating records.
35+
2836

2937
### MongoDB security
3038
* [For God’s sake, secure your Mongo/Redis/etc!](https://medium.com/@shahinism/for-gods-sake-secure-your-mongo-redis-etc-4f310cf1bed2)

0 commit comments

Comments
 (0)